Cardova APIcardova.co.jp ↗
Track Cardova Japan trading-card auctions by viewing available series and monitoring individual lot details including card titles, bid counts, current prices in both JPY and USD, and auction end dates. Stay updated on specific cards' bidding activity and valuations across different auction series.
curl -X GET 'https://api.parse.bot/scraper/409647a2-eb21-422b-ab7e-b6c70200b77e/list_auction_series?status=live' \ -H 'X-API-Key: $PARSE_API_KEY'
Returns the auction series (e.g. A207) currently in the requested state: live (open for bidding, typically 1-3 series), close (all past series, newest first; several hundred entries) or suspended (usually empty). Each entry carries the series code and its id plus publish-start and scheduled-end timestamps (JST, ISO 8601). One request; no pagination. The series code is the input to list_series_lots.
| Param | Type | Description |
|---|---|---|
| status | string | Which auction state to list. |
{
"type": "object",
"fields": {
"count": "integer number of series returned",
"series": "array of series entries: series (code such as A207), series_id, status, publish_start_date, scheduled_end_date (ISO 8601 with +09:00 offset)",
"status": "the requested state echoed back"
},
"sample": {
"data": {
"count": 1,
"series": [
{
"series": "A207",
"status": "live",
"series_id": "01M09D6A257N7ADHKVM6G4WSG2",
"publish_start_date": "2026-08-27T12:00:00+09:00",
"scheduled_end_date": "2026-09-06T21:00:00+09:00"
}
],
"status": "live"
},
"status": "success"
}
}About the Cardova API
The Cardova API on Parse exposes 2 endpoints for the publicly available data on cardova.co.jp. Calls return JSON over HTTPS and are billed per successful response.
Pin a release with the API-Snapshot-Version header so canonical updates don't silently change your contract.