Discover/Cardova API
live

Cardova APIcardova.co.jp

Access Cardova Japan trading-card auction data: series listings, lot details, bid counts, JPY/USD prices, grading info, and filtered search across live and past auctions.

Endpoint health
verified 5d ago
list_auction_series
search_auction_lots
list_series_lots
get_latest_auction
4/4 passing latest checkself-healing
Endpoints
4
Updated
5d ago

What is the Cardova API?

The Cardova API exposes 4 endpoints covering auction series metadata and individual lot data from cardova.co.jp, Japan's trading-card auction platform. Starting with list_auction_series, you can enumerate live, closed, or suspended series by their codes (e.g. A207), then drill into per-lot data including current bid in JPY and USD, bid counts, grading company and grade, population counts, card language, and scheduled end dates.

This call costs1 credit / call— charged only on success
Try it
Which auction state to list.
api.parse.bot/scraper/409647a2-eb21-422b-ab7e-b6c70200b77e/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
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'
All endpoints · 4 totalmissing one? ·

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.

Input
ParamTypeDescription
statusstringWhich auction state to list.
Response
{
  "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

Auction Series and Lot Data

The list_auction_series endpoint accepts a status parameter (live, close, or suspended) and returns each series' code, its series_id, publish_start_date, and scheduled_end_date in ISO 8601 with a +09:00 offset. Live status typically returns one to three open series; close returns several hundred past series ordered newest-first. The list_series_lots endpoint takes a series code from that list and returns a paged set of lots — up to 96 per page via the limit parameter — along with fields such as lot, lot_number, title, year, brand, set_name, player, card_number, language, grading_company, grade, current_bid_jpy, current_bid_usd, bid_count, and population counts. The usd_rate field shows the JPY-per-USD exchange rate the site publishes, used to derive all USD values.

Latest Auction and Search

The get_latest_auction endpoint needs no input. It identifies the most recent series (the live series with the newest publish_start_date, falling back to the newest closed series) and fetches every lot in one call, returning the full lot array alongside complete (true when all pages were retrieved), failed_pages (listing any pages that could not be fetched), and the series' publish_start_date. This is useful for building snapshots or seeding a database without managing pagination manually.

The search_auction_lots endpoint maps to the site's filter panel and supports status (live or close), kind (tcg for the weekly TCG auction or sports for Sports & Others), keyword for free-text search, grades as comma-separated grade bucket codes (e.g. 10, 9.5, auth), series to restrict results to specific series codes, sort, page, and limit. Results share the same lot-level field shape as the other endpoints. has_more signals whether additional pages exist, and total gives the full match count for the applied filters.

Reliability & maintenanceVerified

The Cardova API is a managed, monitored endpoint for cardova.co.jp — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when cardova.co.jp changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official cardova.co.jp API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
5d ago
Latest check
4/4 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Monitor current bid prices in JPY and USD for graded cards across all live Cardova auction series.
  • Build a price history database by iterating close series via list_auction_series and fetching lots with list_series_lots.
  • Alert users when a keyword-matched card (e.g. a specific player or character) appears in a live auction using search_auction_lots.
  • Compare population counts across grading companies for the same card to evaluate relative scarcity.
  • Snapshot an entire active auction at once using get_latest_auction to track bid movement over time.
  • Filter lots by grade bucket (e.g. only PSA 10 or BGS 9.5) and language to narrow searches for specific collector targets.
  • Track bid counts on specific lots across polling intervals to identify auctions with sudden bidding activity.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo2005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min
Team$300/mo20,000300 req/min
Company$1,000/mo100,000500 req/min

Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Cardova offer an official developer API?+
Cardova does not publish a public developer API or documented data feed. cardova.co.jp is a consumer-facing auction site with no announced API program as of mid-2025.
What does `search_auction_lots` return, and how does filtering work?+
It returns a paged list of lots matching the combination of filters you supply: status (live or close), kind (tcg or sports), keyword, grades (comma-separated bucket codes like 10, 9.5, auth), and optionally one or more series codes. Each lot in the response includes title, current_bid_jpy, current_bid_usd, bid_count, grading_company, grade, language, and scheduled_end_date, among other fields. The total field tells you how many lots match across all pages.
What does `get_latest_auction` do when multiple series are live simultaneously?+
It selects the live series with the newest publish_start_date. If no series is currently live, it falls back to the most recently closed series. The response includes complete (true when every lot was retrieved) and failed_pages (an array of page numbers that could not be fetched), so you can tell whether the result set is partial.
Does the API expose seller information, buyer identities, or final hammer prices after auction close?+
No. The lot fields cover title, bid counts, current bid amounts, grading data, population, and dates — seller and buyer identity data and confirmed final settlement prices are not included in any endpoint response. You can fork this API on Parse and revise it to add an endpoint targeting closed-lot detail pages if that data becomes accessible.
Is pagination automatic, or do I need to manage it myself?+
list_series_lots and search_auction_lots are manually paged: you supply page and limit (capped at 96), and the has_more field tells you whether another page exists. get_latest_auction handles pagination internally and returns all lots in a single response, but only for the most recent series. For older series you manage pagination yourself via list_series_lots.
Page content last updated . Spec covers 4 endpoints from cardova.co.jp.
Related APIs in MarketplaceSee all →
cardmarket.com API
Search and browse trading cards across Europe's largest marketplace, accessing detailed card information, listings, seller profiles, and finding the best bargains all in one place. Explore games and expansions to discover available singles and compare prices from multiple sellers.
carsandbids.com API
Browse live car auction listings from Cars & Bids to discover current enthusiast vehicle sales in real-time. Find detailed information about available auctions to track specific vehicles and bidding opportunities.
auctions.yahoo.co.jp API
Search active and completed Yahoo Auctions Japan listings, view detailed item information, and identify bargain deals by comparing current prices against market trends. Analyze seller profiles to make informed bidding decisions on Japanese auction items.
hemmings.com API
Access data from hemmings.com.
cardladder.com API
Search your favorite trading cards and instantly access current pricing, Card Ladder values, confidence scores, and recent sales history to make informed collecting and trading decisions. Get detailed market data across all three endpoints to track card values and monitor how prices have changed over time.
ai.cardhedger.com API
Access data from ai.cardhedger.com.
alt.xyz API
Find authenticated graded trading cards on alt.xyz by their certification number to instantly access the card's details, current Alt Value with confidence ranges, daily price trends, population statistics, and comparable market sales data for that grade. Use this information to track card valuations, understand market demand, and make informed trading decisions.
japan-toreca.com API
Browse and discover available trading card pack listings from Japan Toreca Center's online lottery platform. Find current oripa offerings and stay updated on new card pack opportunities available for purchase.