Endpoint Playground
Test Crawlora's Alt auctions 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/alt/auctions?category=BASEBALL_CARDS&grading_company=PSA&sort=recommended" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| q | string | No | Free-text search across item name, subject, brand, and variety. Omit or pass * to browse every current Alt auction. | |
| category | string | No | BASEBALL_CARDS | Comma-separated card category filter |
| grading_company | string | No | PSA | Comma-separated grading company filter |
| sort | string | No | recommended | Result order. Default recommended. |
| page | integer | No | 1-based page number, default 1 | |
| per_page | integer | No | Results per page, default 24, max 100 |
{
"code": 200,
"msg": "OK",
"data": {
"query": "*",
"page": 1,
"per_page": 24,
"total": 653,
"results": [
{
"id": "58e5a6a5-a7ad-417f-8cda-ceffb226928c",
"name": "2007 Exquisite Collection Dual Logoman Autographs Kobe Bryant/Lebron James #DL-BJ /1",
"subject": "Kobe Bryant/Lebron James",
"year": 2007,
"category": "BASKETBALL_CARDS",
"auction_house": "Alt",
"listing_type": "AUCTION",
"grading_company": "PSA",
"grade": "8.0",
"price": 1772280,
"alt_value": 8460808.16,
"bid_count": 18,
"watch_count": 849,
"expires_at": "2026-09-25T01:00:00+00:00",
"images": [
{
"position": "FRONT",
"url": "https://onlyalt-images.s3.us-east-2.amazonaws.com/image/public/front.png"
}
]
}
]
}
}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.
Searches Alt's own currently live auctions -- the same pool shown on alt.xyz/browse's "Auctions" tab filtered to the Alt source. Unlike alt-search, this never returns another source auction house's listings or Alt's own fixed-price items: it always uses a search key scoped server-side to Alt's own live auction pool. Credential-free public data from Alt's own search backend. See alt-categories for the accepted category/grading_company/sort values.
{
"code": 200,
"msg": "OK",
"data": {
"query": "*",
"page": 1,
"per_page": 24,
"total": 653,
"results": [
{
"id": "58e5a6a5-a7ad-417f-8cda-ceffb226928c",
"name": "2007 Exquisite Collection Dual Logoman Autographs Kobe Bryant/Lebron James #DL-BJ /1",
"subject": "Kobe Bryant/Lebron James",
"year": 2007,
"category": "BASKETBALL_CARDS",
"auction_house": "Alt",
"listing_type": "AUCTION",
"grading_company": "PSA",
"grade": "8.0",
"price": 1772280,
"alt_value": 8460808.16,
"bid_count": 18,
"watch_count": 849,
"expires_at": "2026-09-25T01:00:00+00:00",
"images": [
{
"position": "FRONT",
"url": "https://onlyalt-images.s3.us-east-2.amazonaws.com/image/public/front.png"
}
]
}
]
}
}curl "https://api.crawlora.net/api/v1/alt/auctions" \
-H "x-api-key: $CRAWLORA_API_KEY"