Endpoint Playground
Test Crawlora's Whatnot categories 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/whatnot/categories" \
-H "x-api-key: $CRAWLORA_API_KEY"No request parameters
{
"code": 200,
"msg": "OK",
"data": {
"categories": [
{
"id": "Q2F0ZWdvcnlOb2RlOjE0OQ==",
"name": "Trading Card Games",
"slug": "trading_card_games"
},
{
"id": "Q2F0ZWdvcnlOb2RlOjM=",
"name": "Sports Cards",
"slug": "sports_cards"
},
{
"id": "Q2F0ZWdvcnlOb2RlOjY1Ng==",
"name": "Women's Fashion",
"slug": "womens_fashion"
}
]
}
}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 Whatnot's full top-level category list (e.g. "Trading Card Games", "Sneakers & Streetwear"). Each entry's slug is usable directly with /whatnot/browse's category filter. Public data sourced from Whatnot's own GraphQL API.
{
"code": 200,
"msg": "OK",
"data": {
"categories": [
{
"id": "Q2F0ZWdvcnlOb2RlOjE0OQ==",
"name": "Trading Card Games",
"slug": "trading_card_games"
},
{
"id": "Q2F0ZWdvcnlOb2RlOjM=",
"name": "Sports Cards",
"slug": "sports_cards"
},
{
"id": "Q2F0ZWdvcnlOb2RlOjY1Ng==",
"name": "Women's Fashion",
"slug": "womens_fashion"
}
]
}
}curl "https://api.crawlora.net/api/v1/whatnot/categories" \
-H "x-api-key: $CRAWLORA_API_KEY"