Discover/TheRealReal API
live

TheRealReal APItherealreal.com

Search and retrieve luxury resale listings from TheRealReal. Get prices, availability, condition, brand, and images via 2 structured endpoints.

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

What is the TheRealReal API?

The TheRealReal API provides access to luxury resale product data across 2 endpoints, covering search and detailed product retrieval. The search_products endpoint returns up to 120 items per page including price, discount, brand, availability status, and primary image. The get_product_details endpoint expands a single listing to include full description, condition, all product images, and canonical URL.

Try it
Page number to retrieve (1-based)
Search keyword (e.g. 'bags', 'shoes', 'Louis Vuitton')
api.parse.bot/scraper/fe22aec0-d60e-4015-b6ee-d769f4f18b1d/<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/fe22aec0-d60e-4015-b6ee-d769f4f18b1d/search_products?page=1&query=bags' \
  -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 therealreal-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: TheRealReal SDK — search luxury products and drill into details."""
from parse_apis.TheRealReal_API import TheRealReal, Product, ProductDetail, ProductNotFound

client = TheRealReal()

# Search for luxury handbags, capped at 5 total items
for product in client.products.search(query="Chanel handbag", limit=5):
    print(product.name, product.brand, product.price, product.status)

# Drill into the first result for full details (images, condition, description)
item = client.products.search(query="Louis Vuitton", limit=1).first()
if item:
    detail = item.details()
    print(detail.name, detail.condition, detail.availability, len(detail.images))

# Typed error handling: catch ProductNotFound on a bad URL
try:
    bad_item = Product(_api=client, product_id="nonexistent", url="https://www.therealreal.com/products/women/handbags/does-not-exist-xyz")
    bad_item.details()
except ProductNotFound as exc:
    print(f"Product not found: {exc.url}")

print("exercised: products.search / product.details / ProductNotFound error")
All endpoints · 2 totalmissing one? ·

Search for products by keyword with pagination. Returns a list of products with basic info including price, availability status, and primary image. Each page contains up to 120 items. Results are ordered by relevance by default.

Input
ParamTypeDescription
pageintegerPage number to retrieve (1-based)
queryrequiredstringSearch keyword (e.g. 'bags', 'shoes', 'Louis Vuitton')
Response
{
  "type": "object",
  "fields": {
    "products": "array of product objects with keys: product_id, sku, name, brand, price, original_price, discount, status, url, primary_image",
    "pagination": "object with keys: current_page (integer), total_items (integer or null)"
  },
  "sample": {
    "data": {
      "products": [
        {
          "sku": "WJQ68724",
          "url": "https://www.therealreal.com/products/women/handbags/handle-bags/jacquemus-leather-le-petit-bambimou-small-u9upo",
          "name": "Leather Le Petit Bambimou Small",
          "brand": "Jacquemus",
          "price": 483.75,
          "status": "available",
          "discount": "Now 25% off - $483.75",
          "product_id": "50848188",
          "primary_image": "https://product-images.therealreal.com/WJQ68724_1_enlarged.jpg",
          "original_price": 645
        }
      ],
      "pagination": {
        "total_items": 56366,
        "current_page": 1
      }
    },
    "status": "success"
  }
}

About the TheRealReal API

Search Luxury Resale Products

The search_products endpoint accepts a required query string — such as 'Louis Vuitton', 'bags', or 'shoes' — and an optional page integer for pagination. Each response returns an array of product objects with fields: product_id, sku, name, brand, price, original_price, discount, status, url, and primary_image. The pagination object reports current_page and total_items (which may be null for some queries). Pages hold up to 120 items each.

Product Detail Retrieval

The get_product_details endpoint accepts a full product url as returned by search_products. The response includes the complete field set for a single listing: sku, name, brand, price (in USD), currency, images (an array of all image URLs), condition (as a schema.org condition URL), description, and status. The status field resolves to one of three values: 'available', 'on_hold', or 'unknown', reflecting the current availability of the item.

Pricing and Condition Data

Both endpoints expose pricing information. search_products returns price, original_price, and a discount value, making it straightforward to identify marked-down items. get_product_details returns the current price alongside machine-readable condition data using schema.org URIs — useful for downstream classification without needing to parse freeform text. The description field provides the full listing text as shown on the product page.

Reliability & maintenanceVerified

The TheRealReal API is a managed, monitored endpoint for therealreal.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when therealreal.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 therealreal.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
6d 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
  • Track price drops on specific designer brands by comparing price against original_price from search_products
  • Build a luxury resale price aggregator using brand, name, and discount fields across paginated search results
  • Monitor availability shifts for specific items using the status field (available, on_hold, unknown)
  • Populate a resale watchlist app with product images pulled from the images array in get_product_details
  • Classify secondhand items by condition using the schema.org condition URL returned in product details
  • Index TheRealReal listings by brand and category for a luxury goods search or comparison tool
  • Analyze discount depth across a designer's catalog using original_price and price from search results
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 TheRealReal have an official public developer API?+
No. TheRealReal does not offer a public developer API or documented data access program for third-party developers.
What does the `status` field in `get_product_details` actually mean?+
It reflects the current availability of a listing and resolves to one of three values: 'available' (purchasable), 'on_hold' (temporarily unavailable), or 'unknown' (status could not be determined). This is the same field returned by search_products, so you can pre-filter before fetching full details.
Does `search_products` always return a `total_items` count?+
Not always. The pagination object includes current_page and total_items, but total_items can be null depending on the query. You should handle a null value in any pagination logic rather than assuming the count is always present.
Does the API return seller information or authentication certificates for listings?+
Not currently. The API covers product-level fields: pricing, brand, condition, description, images, and availability status. Seller profiles, authentication documentation, and provenance records are not part of the current response schema. You can fork this API on Parse and revise it to add an endpoint targeting that data.
Can I filter `search_products` results by category, size, or price range directly in the request?+
The endpoint accepts a query string and a page number. Category, size, and price-range filters are not currently supported as dedicated parameters — filtering on those dimensions would need to happen on the response data client-side. You can fork this API on Parse and revise it to add parameter-based filtering if your use case requires it.
Page content last updated . Spec covers 2 endpoints from therealreal.com.
Related APIs in MarketplaceSee all →
revolve.com API
Browse Revolve.com's fashion inventory by searching products, filtering by category or sale status, and discovering new arrivals in real-time. Access detailed product information including pricing, descriptions, and availability to power your shopping app or fashion platform.
thredup.com API
Search and browse ThredUp's secondhand fashion inventory to find specific items and view detailed product information like pricing, condition, and sizing. Get smart search suggestions to discover similar styles and refine your thrifting experience.
grailed.com API
Access Grailed's fashion resale marketplace: search listings by designer, category, size, and condition; retrieve listing details, seller profiles and reviews; and browse categories, popular designers, and curated collections.
ripley.com API
Search for products across Ripley.cl's catalog and retrieve detailed information like prices, descriptions, and availability for any item. Perfect for comparing products, tracking pricing, or integrating Ripley's inventory into your own applications.
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.
stories.com API
Search & Other Stories' catalog to find products by name or category, and retrieve detailed information including pricing, images, available sizes, colors, and materials for each item. Get comprehensive product details to compare styles, check inventory across variations, and make informed shopping decisions.
depop.com API
Browse and discover products on Depop by searching inventory, viewing detailed product information, seller profiles, and reviews, while exploring trending items and the complete category structure. Filter listings by various criteria, access seller information including their likes and past sales, and find similar products to items you're interested in.
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.