Endpoint Playground
Test Crawlora's Goldin 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/goldin/auctions?order=asc" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| order | string | No | asc | asc (oldest first) or desc (newest first, default) |
{
"code": 200,
"msg": "OK",
"data": {
"total": 485,
"auctions": [
{
"id": "202608-1817-0547-c295cf74-876a-4fb8-af2e-23eb4824a943",
"slug": "2026-fall-coin-and-currency-auction-previewuv8f6",
"title": "2026 Fall Coin and Currency Auction Preview",
"type": "Thematic",
"status": "Preview",
"start_time": "2026-10-03T00:00:00Z",
"end_time": "2026-10-29T02:00:00Z",
"buyer_premium": 22
}
]
}
}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.
Goldin's complete auction event history, back to 2012 -- title, type, status, start/end window, and buyer's premium for every auction Goldin has run. Pass an auction's own id as auction_id to goldin-search to browse its lots.
{
"code": 200,
"msg": "OK",
"data": {
"total": 485,
"auctions": [
{
"id": "202608-1817-0547-c295cf74-876a-4fb8-af2e-23eb4824a943",
"slug": "2026-fall-coin-and-currency-auction-previewuv8f6",
"title": "2026 Fall Coin and Currency Auction Preview",
"type": "Thematic",
"status": "Preview",
"start_time": "2026-10-03T00:00:00Z",
"end_time": "2026-10-29T02:00:00Z",
"buyer_premium": 22
}
]
}
}curl "https://api.crawlora.net/api/v1/goldin/auctions" \
-H "x-api-key: $CRAWLORA_API_KEY"