Alt API endpoint
Use Crawlora's Alt listing API to extract supported public Alt data as structured JSON. This page includes request parameters, cURL examples, response schema, error behavior, credit cost, and a Playground link for testing before integration.
/alt/listingOne listing's full public detail -- title, description, price/bid state, grading info, and images -- normalized across Alt's own native listings and its aggregated external listings. id and listing_type come from a prior alt-search/alt-auctions result. Not every response field applies to every listing_type -- see the field-level notes in this endpoint's markdown doc. Developers commonly use this endpoint for data enrichment, monitoring, research dashboards, internal automation, and agent-native workflows that need repeatable structured public web data. Authentication uses the documented Crawlora headers, and usage is metered with the credit cost shown on this page.
Request parameters are generated from the active endpoint catalog. Required values must be sent before Crawlora can call the upstream public web data source.
| Parameter | Type | Required | Default | Description | Example |
|---|---|---|---|---|---|
| id | string | Yes | The listing's id, from a Search/Auctions result's id field | ||
| listing_type | string | Yes | The listing's listing_type from the same Search/Auctions result Allowed values: AUCTION, FIXED_PRICE, EXTERNAL_AUCTION, EXTERNAL_FIXED_PRICE | ||
| x-api-key (header) | string | Yes | API key required |
curl -X GET "https://api.crawlora.net/api/v1/alt/listing?listing_type=AUCTION" \ -H "x-api-key: $CRAWLORA_API_KEY"
Send your scraping API key in the x-api-key header. Use the console API Keys page to rotate or select the active key.
Endpoint usage is metered in credits. The plan prices, included credits, limits, and overage rates below match the active backend billing configuration.
| Plan | Price | Included credits | Daily cap | Rate limit | Overage |
|---|---|---|---|---|---|
| Free | $0/mo | 2,000 | 500 daily credits | 5/min | No overage |
| Starter | $9/mo | 20,000 | 5,000 daily credits | 15/min | $0.75/1,000 overage credits when enabled |
| Growth | $29/mo | 100,000 | 25,000 daily credits | 45/min | $0.45/1,000 overage credits when enabled |
| Pro | $79/mo | 400,000 | No daily cap | 120/min | $0.30/1,000 overage credits |
| Business | $199/mo | 1,200,000 | No daily cap | 300/min | $0.20/1,000 overage credits |
| Enterprise | $499/mo | 5,000,000 | No daily cap | 1,000/min | $0.12/1,000 overage credits |
This endpoint is executed through Crawlora's managed scraping infrastructure.
- Not every field applies to every `listing_type`: `state` and `alt_value` are only present for Alt's own native listings (`AUCTION`/ `FIXED_PRICE`); `current_bid`, `bid_count`, `auction_ends_at`, and `external_url` are only present for external listings (`EXTERNAL_AUCTION`/`EXTERNAL_FIXED_PRICE`). - `external_url` is the click-through link back to the original listing on its source site (e.g. eBay). - `badges` (e.g. `1/1 Rare`, `Pop 1`) are only present for Alt's own native listings. - An `id`/`listing_type` combination Alt cannot resolve returns `404`. Example response (native Alt listing): ```json { "code": 200, "msg": "OK", "data": { "id": "58e5a6a5-a7ad-417f-8cda-ceffb226928c", "listing_type": "AUCTION", "auction_house": "Alt", "name": "2007 Exquisite Collection Dual Logoman Autographs Kobe Bryant/Lebron James #DL-BJ 1/1 PSA 8", "subject": "Kobe Bryant/Lebron James", "year": 2007, "brand": "Exquisite Collection", "variety": "Dual Logoman Autographs", "card_number": "DL-BJ", "category": "BASKETBALL_CARDS", "description": "The 2007-08 Upper Deck Exquisite Collection Dual Logoman Autographs #DL-BJ pairs Kobe Bryant and LeBron James on a singular 1/1 issue.", "grading_company": "PSA", "grade": "8.0", "cert_number": "175673254", "state": "ACTIVE", "list_price": 1772280, "alt_value": 8460808.16, "expires_at": "2026-09-25T01:00:00+00:00", "badges": ["1/1 Rare", "Ghost Card", "Pop 1"], "images": [ {"position": "FRONT", "url": "https://onlyalt-images.s3.us-east-2.amazonaws.com/image/public/front.png"}, {"position": "BACK", "url": "https://onlyalt-images.s3.us-east-2.amazonaws.com/image/public/back.png"} ] } } ```
Crawlora does not silently return bad data when the upstream page cannot be used.
| Status | Common failure case |
|---|---|
| 400 | Invalid input or missing required parameter |
| 429 | Plan or endpoint rate limit exceeded |
| 500 | Internal execution error |
| 502 | Upstream platform failed, returned unusable HTML, or served a challenge page that could not be resolved |
When possible, Crawlora returns structured error context so your integration can retry, back off, or inspect the request.
| Status | Description | Schema |
|---|---|---|
| 400 | Bad Request | #/definitions/app.Response |
| 404 | Not Found | #/definitions/app.Response |
| 500 | Internal Server Error | #/definitions/app.Response |
| 503 | Service Unavailable | #/definitions/app.Response |
{
"code": 200,
"msg": "OK",
"data": {
"id": "58e5a6a5-a7ad-417f-8cda-ceffb226928c",
"listing_type": "AUCTION",
"auction_house": "Alt",
"name": "2007 Exquisite Collection Dual Logoman Autographs Kobe Bryant/Lebron James #DL-BJ 1/1 PSA 8",
"subject": "Kobe Bryant/Lebron James",
"year": 2007,
"brand": "Exquisite Collection",
"variety": "Dual Logoman Autographs",
"card_number": "DL-BJ",
"category": "BASKETBALL_CARDS",
"description": "The 2007-08 Upper Deck Exquisite Collection Dual Logoman Autographs #DL-BJ pairs Kobe Bryant and LeBron James on a singular 1/1 issue.",
"grading_company": "PSA",
"grade": "8.0",
"cert_number": "175673254",
"state": "ACTIVE",
"list_price": 1772280,
"alt_value": 8460808.16,
"expires_at": "2026-09-25T01:00:00+00:00",
"badges": [
"1/1 Rare",
"Ghost Card",
"Pop 1"
],
"images": [
{
"position": "FRONT",
"url": "https://onlyalt-images.s3.us-east-2.amazonaws.com/image/public/front.png"
},
{
"position": "BACK",
"url": "https://onlyalt-images.s3.us-east-2.amazonaws.com/image/public/back.png"
}
]
}
}Request schema
No body schema
Response schema
#/definitions/alt.listingResponseDoc
| Field | Type | Required | Enum | Bounds | Example | Description |
|---|---|---|---|---|---|---|
| code | integer | No | 200 | |||
| data | alt.ListingResult | No | ||||
| data.alt_value | number | No | AltValue is Alt's own estimated market value, only present for native listings. | |||
| data.auction_ends_at | string | No | ||||
| data.auction_house | string | No | ||||
| data.autograph | string | No | ||||
| data.badges | array | No | ||||
| data.bid_count | integer | No | ||||
| data.brand | string | No | ||||
| data.card_number | string | No | ||||
| data.category | string | No | ||||
| data.cert_number | string | No | ||||
| data.created_at | string | No | ||||
| data.current_bid | number | No | CurrentBid and BidCount are only present for external auction listings -- Alt's own native auctions do not expose live bid state through this endpoint. | |||
| data.description | string | No | ||||
| data.expires_at | string | No | ExpiresAt is only present for native listings; AuctionEndsAt is only present for external auction listings. | |||
| data.external_url | string | No | ExternalURL is the click-through link back to the original listing on its source site -- only present for external listings. | |||
| data.grade | string | No | ||||
| data.grading_company | string | No | ||||
| data.id | string | No | ||||
| data.images | array | No | ||||
| data.images[].position | string | No | ||||
| data.images[].url | string | No | ||||
| data.list_price | number | No | ListPrice is Alt's own asking/list price (native) or the source site's Buy It Now price (external, when the listing has one). | |||
| data.listing_type | string | No | ||||
| data.name | string | No | ||||
| data.print_run | integer | No | ||||
| data.qualifier | string | No | ||||
| data.serial | integer | No | ||||
| data.state | string | No | State is only present for Alt's own native listings (e.g. ACTIVE). | |||
| data.subject | string | No | ||||
| data.variety | string | No | ||||
| data.year | integer | No | ||||
| msg | string | No | OK |
Use environment variables for secrets and keep Crawlora API keys server-side.
curl -X GET "https://api.crawlora.net/api/v1/alt/listing?listing_type=AUCTION" \
-H "x-api-key: $CRAWLORA_API_KEY"Crawlora is designed for responsible structured public web data workflows. Customers are responsible for using Crawlora in compliance with applicable laws, third-party rights, target-platform rules, and Crawlora terms.
Read Crawlora terms