Endpoint Playground
Test Crawlora's Get GOAT trending searches 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/searches/trending" \
-H "x-api-key: $CRAWLORA_API_KEY"No request parameters
{
"code": 200,
"msg": "OK",
"data": {
"searches": [
"Jordan 4",
"Jordan 1",
"Kobe 6",
"Jordan 8",
"Essentials",
"Travis Scott",
"Yeezy",
"New Balance"
],
"total": 25
}
}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 search terms GOAT is currently surfacing as popular, in GOAT's own ranking order -- the same list its own search box shows. Each term is free text ready to pass to GET /goat/search's query parameter. Credential-free public data.
{
"code": 200,
"msg": "OK",
"data": {
"searches": [
"Jordan 4",
"Jordan 1",
"Kobe 6",
"Jordan 8",
"Essentials",
"Travis Scott",
"Yeezy",
"New Balance"
],
"total": 25
}
}curl "https://api.crawlora.net/api/v1/goat/searches/trending" \
-H "x-api-key: $CRAWLORA_API_KEY"