Discover/Revolve API
live

Revolve APIrevolve.com

Access Revolve.com product listings, search results, sale items, and new arrivals via a structured API. Returns prices, sizes, images, and brand data.

Endpoint health
verified 16h ago
get_sale_items
get_product_detail
get_products_by_category
search_products
get_new_arrivals
5/5 passing latest checkself-healing
Endpoints
5
Updated
21d ago

What is the Revolve API?

The Revolve.com API covers 5 endpoints for retrieving fashion product data from revolve.com, including full product details, category browsing, keyword search, new arrivals, and sale items. The get_product_detail endpoint returns per-SKU data: name, brand, retail and sale prices, per-size stock status, image URLs, description bullet points, and curated 'complete the look' recommendations — all keyed by a product code like ASTR-WD190.

Try it
Revolve product code (alphanumeric with hyphens, e.g. '437R-WD2')
api.parse.bot/scraper/50985969-8f74-4fe0-97ea-6a2c3b8ab94c/<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/50985969-8f74-4fe0-97ea-6a2c3b8ab94c/get_product_detail?product_code=1STR-WD250' \
  -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 revolve-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.

"""Revolve fashion catalog: search, browse by category, new arrivals, sales, and product details."""
from parse_apis.revolve_product_api import Revolve, Category_, ProductNotFound

client = Revolve()

# Search for products by keyword — limit caps total items fetched.
for product in client.products.search(query="maxi dress", limit=3):
    print(product.name, product.brand, product.price)

# Browse a category using the constructible Category resource.
dresses = client.category(name=Category_.DRESSES)
for product in dresses.list_products(limit=3):
    print(product.name, product.brand, product.price)

# Browse new arrivals and sale items.
new_item = client.products.new_arrivals(limit=1).first()
if new_item:
    print("New:", new_item.name, new_item.brand, new_item.price)

sale_item = client.products.sale(limit=1).first()
if sale_item:
    print("Sale:", sale_item.name, sale_item.price, sale_item.sale_price)

# Drill into product details from a search result.
first = client.products.search(query="black dress", limit=1).first()
if first:
    try:
        detail = first.details()
        print(detail.name, detail.price)
        for size in detail.sizes[:3]:
            print(size.size, size.in_stock)
        for rec in detail.complete_the_look[:2]:
            print(rec.name, rec.brand, rec.price)
    except ProductNotFound as exc:
        print(f"Product gone: {exc.product_code}")

print("exercised: products.search / category.list_products / products.new_arrivals / products.sale / product.details")
All endpoints · 5 totalmissing one? ·

Fetch full product details by product code. Returns brand, name, price, available sizes with stock status, image URLs, description bullet points, and 'complete the look' recommendations. Each product code is a short alphanumeric identifier visible in Revolve URLs (e.g. /dp/437R-WD2/).

Input
ParamTypeDescription
product_coderequiredstringRevolve product code (alphanumeric with hyphens, e.g. '437R-WD2')
Response
{
  "type": "object",
  "fields": {
    "url": "string - product page URL",
    "name": "string - product name",
    "brand": "string - brand name",
    "price": "string - retail price with dollar sign",
    "sizes": "array of size objects each with 'size' (string) and 'in_stock' (boolean)",
    "images": "array of image URLs",
    "sale_price": "string - sale price if on sale, absent otherwise",
    "description": "array of description bullet points",
    "product_code": "string - the product code",
    "complete_the_look": "array of recommended product objects with name, brand, price, url, product_code, image"
  },
  "sample": {
    "data": {
      "url": "https://www.revolve.com/dp/437R-WD2/",
      "name": "x REVOLVE The Halter Play Dress 437",
      "brand": "437",
      "price": "$135",
      "sizes": [
        {
          "size": "Size: XS",
          "in_stock": true
        },
        {
          "size": "Size: S",
          "in_stock": true
        }
      ],
      "images": [
        "https://is4.revolveassets.com/images/p4/n/ct/437R-WD2_V1.jpg"
      ],
      "description": [
        "82% recycled polyester, 18% spandex",
        "Made in China"
      ],
      "product_code": "437R-WD2",
      "complete_the_look": [
        {
          "url": "https://www.revolve.com/by-far-prudence-ballet-flat-in-baby-pink/dp/BFAR-WZ129/",
          "name": "Prudence Ballet Flat",
          "brand": "BY FAR",
          "image": "https://is4.revolveassets.com/images/p4/n/ps/BFAR-WZ129_V1.jpg",
          "price": "$360",
          "product_code": "BFAR-WZ129"
        }
      ]
    },
    "status": "success"
  }
}

About the Revolve API

Product Detail and Inventory

The get_product_detail endpoint accepts a product_code string (e.g., 437R-WD2) and returns a structured object covering the product's name, brand, price, sale_price (when applicable), an array of images, and a description array of bullet points. The sizes field is an array of objects, each with a size string and an in_stock boolean, letting you surface availability at the size level. The complete_the_look array includes recommended companion products with their own product_code, name, brand, price, image, and url fields.

Search and Category Browsing

search_products accepts a query string — single keywords like dress or multi-word phrases like black maxi dress — and returns paginated results via the page parameter. Each product in the products array includes product_code, name, brand, price, image, and url. get_products_by_category works similarly but routes by a category string (e.g., dresses, shoes, tops), resolving the correct category from site navigation before returning the same product list shape.

New Arrivals and Sale Items

get_new_arrivals and get_sale_items both accept an optional page integer and return the same paginated product list structure. get_sale_items always includes both price and sale_price fields in each product object, making it straightforward to compute discount amounts. Both endpoints return a total_count indicating how many products are present on the current page.

Reliability & maintenanceVerified

The Revolve API is a managed, monitored endpoint for revolve.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when revolve.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 revolve.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
16h ago
Latest check
5/5 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
  • Track price drops on specific SKUs by comparing price and sale_price from get_product_detail
  • Build a size-availability checker using the sizes[].in_stock field across multiple product codes
  • Aggregate new arrivals by brand using the brand field from get_new_arrivals
  • Power a fashion search interface with multi-word queries via search_products
  • Monitor sale inventory and discount depth by polling get_sale_items for price vs sale_price
  • Surface cross-sell recommendations using the complete_the_look array from product detail responses
  • Catalog Revolve's category assortment by paginating through get_products_by_category with different category values
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 Revolve have an official public developer API?+
Revolve does not publish a public developer API or data feed. There is no official documentation or API key program listed on revolve.com for third-party developers.
What does `get_product_detail` return beyond price and images?+
Beyond price, sale_price, and images, the endpoint returns a sizes array where each entry has a size string and an in_stock boolean, a description array of bullet points, and a complete_the_look array of recommended products — each with its own product_code, brand, price, and image.
Does the API expose customer reviews or ratings for products?+
Not currently. The API covers product metadata, pricing, size availability, images, and curated recommendations. Reviews and ratings are not included in any endpoint's response fields. You can fork this API on Parse and revise it to add an endpoint that retrieves review data for a given product code.
How does pagination work across the listing endpoints?+
The page parameter is optional on get_products_by_category, search_products, get_new_arrivals, and get_sale_items. Omitting it defaults to the first page. Each response includes a total_count field reflecting how many products were returned on that specific page, not the overall catalog count.
Does the API support filtering by size, color, or brand within a category?+
Not currently. get_products_by_category and search_products accept a category name or query string but do not expose filter parameters for size, color, or brand. You can fork this API on Parse and revise it to add filter parameters to the category or search endpoints.
Page content last updated . Spec covers 5 endpoints from revolve.com.
Related APIs in EcommerceSee all →
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.
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.
yoox.com API
Search and browse YOOX's fashion catalog to discover products by category, designer, new arrivals, and sale items. Get detailed product information to find exactly what you're looking for across the YOOX marketplace.
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.
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.
abercrombie.com API
Search and browse Abercrombie & Fitch products across categories, new arrivals, and clearance items while retrieving detailed product information like pricing and availability. Access curated collections and find exactly what you're looking for with powerful search capabilities.
therealreal.com API
Search luxury resale products and access detailed information including real-time pricing, availability status, and high-quality product images. Build applications that help users discover authenticated secondhand designer items with complete product details.
rei.com API
Search and browse REI's full catalog of outdoor gear and clothing, compare detailed product specifications, check real-time store availability, and read customer reviews to find the perfect equipment for your adventures. Explore products by category or use targeted searches to discover gear that matches your needs, all with instant access to pricing and local stock information.