Endpoint Playground
Test Crawlora's Fanatics Collect 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/fanaticscollect/trending-searches" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| limit | integer | No | Number of terms to return, 1-50, default 8 |
{
"code": 200,
"msg": "OK",
"data": {
"terms": [
"flawless patch auto",
"pokemon",
"allen iverson",
"lv x",
"kobe bryant",
"lorcana",
"shaquille o'neal",
"michael jordan"
]
}
}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 Fanatics Collect's own currently trending search terms -- the same list shown in the site's own header search box before the visitor types anything. Credential-free public data from Fanatics Collect's own GraphQL API.
{
"code": 200,
"msg": "OK",
"data": {
"terms": [
"flawless patch auto",
"pokemon",
"allen iverson",
"lv x",
"kobe bryant",
"lorcana",
"shaquille o'neal",
"michael jordan"
]
}
}curl "https://api.crawlora.net/api/v1/fanaticscollect/trending-searches" \
-H "x-api-key: $CRAWLORA_API_KEY"