Endpoint Playground
Test Crawlora's Grailed Search 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/grailed/suggest?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| q | string | Yes | Partial search query |
{
"code": 200,
"msg": "OK",
"data": {
"query": "guc",
"suggestions": [
{
"query": "gucci",
"popularity": 89,
"total_results": 259659
},
{
"query": "gucci hat",
"popularity": 40,
"total_results": 4200
}
]
}
}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 Grailed's own search-box typeahead suggestions for a partial query -- a flat list of suggested search phrases with a popularity score and live active-listing match count, no listing data. Pass a suggestion straight through to grailed-search/grailed-sold-listings' own q parameter. A query with no genuine matches returns a well-formed empty result rather than an error.
{
"code": 200,
"msg": "OK",
"data": {
"query": "guc",
"suggestions": [
{
"query": "gucci",
"popularity": 89,
"total_results": 259659
},
{
"query": "gucci hat",
"popularity": 40,
"total_results": 4200
}
]
}
}curl "https://api.crawlora.net/api/v1/grailed/suggest?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"