Endpoint Playground
Test Crawlora's Get GOAT curated links 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/curated" \
-H "x-api-key: $CRAWLORA_API_KEY"No request parameters
{
"code": 200,
"msg": "OK",
"data": {
"links": [
{
"title": "Back To School",
"type": "collection",
"collection_slug": "back-to-school-2026"
},
{
"title": "Awake NY x Air Jordan 6",
"type": "search",
"query": "Awake NY x Air Jordan 6"
},
{
"title": "Shop All Items",
"type": "browse",
"filter_key": "group_id",
"filter_value": "all"
}
],
"total": 10
}
}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 shelf of editorially curated links GOAT is currently promoting in its own search box: seasonal collections, specific product searches, and browse-all entry points. Every link is actionable against this API -- a collection link carries a value for GET /goat/collection, a search link carries a query for GET /goat/search. Credential-free public data.
{
"code": 200,
"msg": "OK",
"data": {
"links": [
{
"title": "Back To School",
"type": "collection",
"collection_slug": "back-to-school-2026"
},
{
"title": "Awake NY x Air Jordan 6",
"type": "search",
"query": "Awake NY x Air Jordan 6"
},
{
"title": "Shop All Items",
"type": "browse",
"filter_key": "group_id",
"filter_value": "all"
}
],
"total": 10
}
}curl "https://api.crawlora.net/api/v1/goat/curated" \
-H "x-api-key: $CRAWLORA_API_KEY"