Endpoint Playground
Test Crawlora's Autocomplete a GOAT search 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/goat/suggest?query=<query>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| query | string | Yes | Partial search text to autocomplete | |
| limit | integer | No | Maximum curated collections to return. Defaults to 8, maximum 20. Does not affect the product count, which upstream fixes at 25 |
{
"code": 200,
"msg": "OK",
"data": {
"query": "jord",
"collections": [
{
"id": "2fbf8b62-8899-4323-89ab-efdbc672d9d0",
"title": "Michael Jordan",
"slug": "michael-jordan",
"type": "StaticCollection"
},
{
"id": "13079529-6136-4ece-8d8d-9c7469356d71",
"title": "Jordan Grape Shoes",
"slug": "color-grape",
"type": "StaticCollection"
}
],
"products": [
{
"id": "1403298",
"title": "Air Jordan 5 Retro OG 'Black Metallic Reimagined'",
"slug": "air-jordan-5-og-metallic-2025-hf3975-001",
"image_url": "https://image.goat.com/attachments/product_template_pictures/images/106/958/856/original/1403298_00.png.png",
"category": "shoes",
"source_url": "https://www.goat.com/sneakers/air-jordan-5-og-metallic-2025-hf3975-001"
}
]
}
}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 GOAT's own search-box autocomplete for a partial query: matching curated collections and matching products. The collections carry the slug values accepted by GET /goat/collection and by GET /goat/search's collection_slug parameter, making this the way to discover collection slugs. Credential-free public data.
{
"code": 200,
"msg": "OK",
"data": {
"query": "jord",
"collections": [
{
"id": "2fbf8b62-8899-4323-89ab-efdbc672d9d0",
"title": "Michael Jordan",
"slug": "michael-jordan",
"type": "StaticCollection"
},
{
"id": "13079529-6136-4ece-8d8d-9c7469356d71",
"title": "Jordan Grape Shoes",
"slug": "color-grape",
"type": "StaticCollection"
}
],
"products": [
{
"id": "1403298",
"title": "Air Jordan 5 Retro OG 'Black Metallic Reimagined'",
"slug": "air-jordan-5-og-metallic-2025-hf3975-001",
"image_url": "https://image.goat.com/attachments/product_template_pictures/images/106/958/856/original/1403298_00.png.png",
"category": "shoes",
"source_url": "https://www.goat.com/sneakers/air-jordan-5-og-metallic-2025-hf3975-001"
}
]
}
}curl "https://api.crawlora.net/api/v1/goat/suggest?query=<query>" \
-H "x-api-key: $CRAWLORA_API_KEY"