Discover/Stories API
live

Stories APIstories.com

Search & Other Stories' catalog and retrieve product details including price, sizes, colors, stock levels, and images via 2 structured endpoints.

Endpoint health
verified 4d ago
search_products
get_product_details
2/2 passing latest checkself-healing
Endpoints
2
Updated
26d ago

What is the Stories API?

The & Other Stories API provides 2 endpoints to search the stories.com catalog and retrieve structured product data. Use search_products to find items by keyword and get paginated results including name, price, color, images, sizes, and stock status. Use get_product_details to pull full per-product information including fit description, category path, per-size stock quantities, color swatches, and SKU identifiers.

Try it
Page number for pagination, starting at 1.
Search keyword to match against product names and categories (e.g., 'dress', 'jacket', 'shoes').
api.parse.bot/scraper/77e7f290-98a8-4e38-bc2d-8c0002c7c4e0/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/77e7f290-98a8-4e38-bc2d-8c0002c7c4e0/search_products?page=1&query=dress' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace stories-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: & Other Stories SDK — search products, drill into details."""
from parse_apis.other_stories_product_api import Stories, ProductNotFound

client = Stories()

# Search for dresses — limit caps total items fetched across all pages.
for product in client.productsummaries.search(query="dress", limit=5):
    print(product.name, product.price, product.color)

# Drill into the first result for full details (materials, sizes, stock).
item = client.productsummaries.search(query="jacket", limit=1).first()
if item:
    detail = item.details()
    print(detail.name, detail.brand, detail.price)
    for size in detail.sizes:
        print(size.name, size.in_stock, size.stock_quantity)
    for mat in detail.materials:
        print(mat.material, mat.percentage)
    if detail.model_info:
        print(detail.model_info.model_height, detail.model_info.model_size)

# Typed error handling for a product that doesn't exist.
try:
    bad = client.productsummaries.search(query="nonexistent-xyz-999", limit=1).first()
    if bad:
        bad.details()
except ProductNotFound as exc:
    print(f"Product not found: {exc.product_slug}")

print("exercised: productsummaries.search / ProductSummary.details / sizes / materials / model_info")
All endpoints · 2 totalmissing one? ·

Full-text search over & Other Stories product catalog. Returns a paginated list of products matching the query keyword. Each page contains up to 10 products. Results include variant-level detail: name, SKU, price, color, available sizes, images, stock status, and color swatches. Pagination advances via page number.

Input
ParamTypeDescription
pageintegerPage number for pagination, starting at 1.
queryrequiredstringSearch keyword to match against product names and categories (e.g., 'dress', 'jacket', 'shoes').
Response
{
  "type": "object",
  "fields": {
    "page": "current page number",
    "query": "search keyword used",
    "products": "array of product objects with name, sku, product_sku, price, price_numeric, price_before_discount, price_before_discount_numeric, color, images, main_image, sizes, product_url, category, in_stock, and swatches",
    "total_results": "total number of matching products across all pages"
  },
  "sample": {
    "data": {
      "page": 1,
      "query": "dress",
      "products": [
        {
          "sku": "1289204001",
          "name": "Satin Slip Midi Dress",
          "color": "Pink Floral",
          "price": "$ 129",
          "sizes": [
            "0",
            "10",
            "12"
          ],
          "images": [
            "https://media.stories.com/assets/005/8b/b3/8bb3775a524c1783e72009b8703e6b33c869af3b_xxl-1.jpg"
          ],
          "category": "clothing/dresses/mididresses",
          "in_stock": true,
          "swatches": [
            {
              "hex": "#BD858C",
              "name": "Pink Floral",
              "available": true
            }
          ],
          "main_image": "https://media.stories.com/assets/005/8b/b3/8bb3775a524c1783e72009b8703e6b33c869af3b_xxl-1.jpg",
          "product_sku": "1289204",
          "product_url": "https://www.stories.com/en-us/product/satin-slip-midi-dress-pink-floral-1289204001/",
          "price_numeric": 129,
          "price_before_discount": "$ 129",
          "price_before_discount_numeric": 129
        }
      ],
      "total_results": 396
    },
    "status": "success"
  }
}

About the Stories API

Endpoints and Data Coverage

The search_products endpoint accepts a required query string (e.g. 'dress', 'leather jacket') and an optional page integer for pagination. Each result in the returned products array includes name, sku, price, color, images, sizes, product_url, in_stock, and swatches. The total_results field lets you calculate page depth and build iterative crawls across a full search result set.

Product Detail Fields

The get_product_details endpoint accepts either a full product_url or a product_slug extracted from the URL path. The response returns a rich set of fields: name, brand, price, color, sku, fit, category, images (array of URLs), and a sizes array where each size object includes name, sku, in_stock, and stock_quantity. The swatches array provides per-variant color names and hex values, which is useful for programmatic color filtering or display.

Coverage Scope

The API covers the en-us storefront of stories.com, reflecting the U.S. product catalog. Product identification works via either the slug or the full URL, making it straightforward to chain search_products output directly into get_product_details calls using the product_url field returned in search results. The category field returns the full breadcrumb path, allowing downstream grouping by department or style segment.

Reliability & maintenanceVerified

The Stories API is a managed, monitored endpoint for stories.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when stories.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official stories.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
4d ago
Latest check
2/2 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build a size and stock checker that polls get_product_details for specific SKUs and alerts when a size's stock_quantity changes.
  • Aggregate & Other Stories pricing data by category using the category field from product detail responses.
  • Create a color-filtered product browser using the swatches hex values returned by both endpoints.
  • Sync a fashion affiliate feed by paginating search_products results and storing product_url and price fields.
  • Compare in-stock size availability across multiple product variants by iterating sizes arrays from get_product_details.
  • Track price changes over time for specific products by periodically calling get_product_details with a stored product_slug.
  • Power a style recommendation engine by querying search_products with category keywords and indexing returned name, color, and images fields.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does & Other Stories have an official developer API?+
& Other Stories does not publish an official developer API or documented public endpoint for catalog access.
What does the `sizes` array in `get_product_details` actually contain?+
Each object in the sizes array includes four fields: name (the size label, e.g. 'S', '38'), sku (variant-level identifier), in_stock (boolean), and stock_quantity (integer). This lets you check availability at the individual size level rather than just the product level.
Does the API return customer reviews or ratings for products?+
Not currently. The API covers product attributes including name, price, sizes, colors, materials, fit, and images. You can fork it on Parse and revise to add a reviews endpoint if that data is available on product pages.
Does `search_products` return results from all regional storefronts?+
The endpoint reflects the en-us storefront of stories.com. Other regional storefronts (e.g. UK, EU) are not currently covered. You can fork the API on Parse and revise it to target a different regional URL if needed.
Can I retrieve a product by its SKU directly rather than by URL or slug?+
The get_product_details endpoint currently accepts either a product_url or a product_slug as the identifier. Direct lookup by sku is not supported. You can obtain the product_url from search_products results and pass it into get_product_details to retrieve full detail for a known SKU's parent product.
Page content last updated . Spec covers 2 endpoints from stories.com.
Related APIs in EcommerceSee all →
cos.com API
Search and browse COS fashion products by name or category to instantly access pricing, product images, and direct links to items. Retrieve detailed information about specific products including descriptions, availability, and pricing to compare styles and make informed shopping decisions.
stylishop.com API
Browse and search stylishop.com's complete fashion catalog, including products, categories, brands, reviews, and trending data to discover new arrivals and sale items. Get product details, size guides, autocomplete suggestions, and trending search insights to enhance your shopping experience.
hm.com API
Search H&M's US product catalog by keyword and instantly retrieve detailed information like prices, product images, available sizes, and real-time stock availability. Perfect for comparing items, tracking product details, or building shopping applications powered by H&M's current inventory data.
asos.com API
Search and browse ASOS's fashion catalog to discover products across women's and men's categories, view real-time pricing and stock information, and find trending or sale items. Get detailed product information, explore similar items, and discover new arrivals and brands all in one place.
urbanoutfitters.com API
Search Urban Outfitters' catalog to find products and browse categories, then view detailed information including prices, descriptions, color and size availability for each item. Check current sale counts and discover what's trending across the store's product lineup.
on.com API
Access data from on.com.
sephora.com API
Search and browse Sephora's product catalog to find detailed information about beauty items, including specifications, customer reviews, Q&A discussions, pricing, and real-time availability. Filter products by category or brand, and access comprehensive brand listings to discover exactly what you're looking for.
folksy.com API
Search and browse handmade products on Folksy by category, subcategory, or shop, and access detailed product information including pricing and availability. Discover sales and special offers while exploring artisan shops and their complete listings.