Endpoint Playground
Test Crawlora's The RealReal search-box suggestions API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/therealreal/autocomplete?term=<term>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| term | string | Yes | Partial free-text query to get search-box suggestions for |
{
"code": 200,
"msg": "OK",
"data": {
"suggestions": [
{
"text": "gucci"
},
{
"text": "gucci handbags"
},
{
"text": "gucci shoes"
}
],
"source_url": "https://api.therealreal.com/graphql"
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Returns The RealReal's own search-box typeahead suggestions for a partial query. Credential-free public data sourced from The RealReal's own first-party catalog API.
{
"code": 200,
"msg": "OK",
"data": {
"suggestions": [
{
"text": "gucci"
},
{
"text": "gucci handbags"
},
{
"text": "gucci shoes"
}
],
"source_url": "https://api.therealreal.com/graphql"
}
}curl "https://api.crawlora.net/api/v1/therealreal/autocomplete?term=<term>" \
-H "x-api-key: $CRAWLORA_API_KEY"