Endpoint Playground
Test Crawlora's Pristine Auction 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/pristine-auction/categories" \
-H "x-api-key: $CRAWLORA_API_KEY"No request parameters
{
"code": 200,
"msg": "OK",
"data": {
"categories": [
{
"slug": "baseball",
"label": "BASEBALL",
"count": 8608,
"url": "https://www.pristineauction.com/auction/category/baseball"
},
{
"slug": "trading-cards",
"label": "TRADING CARDS",
"count": 17836,
"url": "https://www.pristineauction.com/auction/category/trading-cards"
}
],
"auction_types": [
{
"slug": "daily"
},
{
"slug": "classic"
},
{
"slug": "elite"
}
],
"sort": [
{
"slug": "newly-listed"
},
{
"slug": "ending-soonest"
}
],
"statuses": [
{
"slug": "active"
},
{
"slug": "completed"
}
]
}
}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 whole value space for pristine-auction-search's category, auction_type, sort, and status params. categories[] is fetched live (with a current listing count per category, refreshed on every call); auction_types[], sort[], and statuses[] are pristineauction.com's own fixed, small search-form value sets.
{
"code": 200,
"msg": "OK",
"data": {
"categories": [
{
"slug": "baseball",
"label": "BASEBALL",
"count": 8608,
"url": "https://www.pristineauction.com/auction/category/baseball"
},
{
"slug": "trading-cards",
"label": "TRADING CARDS",
"count": 17836,
"url": "https://www.pristineauction.com/auction/category/trading-cards"
}
],
"auction_types": [
{
"slug": "daily"
},
{
"slug": "classic"
},
{
"slug": "elite"
}
],
"sort": [
{
"slug": "newly-listed"
},
{
"slug": "ending-soonest"
}
],
"statuses": [
{
"slug": "active"
},
{
"slug": "completed"
}
]
}
}curl "https://api.crawlora.net/api/v1/pristine-auction/categories" \
-H "x-api-key: $CRAWLORA_API_KEY"