Endpoint Playground
Test Crawlora's Whatnot browse 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/browse?category=<category>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| category | string | Yes | Whatnot category slug. See GET /whatnot/categories for the full list. |
{
"code": 200,
"msg": "OK",
"data": {
"category": "trading_card_games",
"shows": [
{
"id": "6ddb7fd2-43bb-44e0-8ee8-6656e82fa26a",
"url": "https://www.whatnot.com/live/6ddb7fd2-43bb-44e0-8ee8-6656e82fa26a",
"title": "$100k Late Night Slab Show",
"seller_username": "legacy_auction_house",
"status": "PLAYING",
"start_time_ms": 1785996739803,
"thumbnail_url": "https://images.whatnot.com/...",
"tags": [
"Sudden Death",
"Graded Cards",
"Pokémon"
]
}
]
}
}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 live and upcoming shows currently listed under a Whatnot category: seller, title, status, start time, thumbnail, and tags. Public data sourced from Whatnot's own GraphQL API.
{
"code": 200,
"msg": "OK",
"data": {
"category": "trading_card_games",
"shows": [
{
"id": "6ddb7fd2-43bb-44e0-8ee8-6656e82fa26a",
"url": "https://www.whatnot.com/live/6ddb7fd2-43bb-44e0-8ee8-6656e82fa26a",
"title": "$100k Late Night Slab Show",
"seller_username": "legacy_auction_house",
"status": "PLAYING",
"start_time_ms": 1785996739803,
"thumbnail_url": "https://images.whatnot.com/...",
"tags": [
"Sudden Death",
"Graded Cards",
"Pokémon"
]
}
]
}
}curl "https://api.crawlora.net/api/v1/whatnot/browse?category=<category>" \
-H "x-api-key: $CRAWLORA_API_KEY"