Get card details
Cards
Get card details
Returns full details for a single card: FMV, metadata, etc.
GET
Get card details
Returns the full record for a single card.
Lookup behavior
The endpoint resolves:item_id in two passes:
- As an
EbayListing.id(the primary case, covers all items returned from/api/v1/vm/buy/initand/api/v1/inventory/:user_idfor ebay-sourced packs). - As an on-chain
mint_addressfor a CORE-pack NFT (fallback).
404 { "error": "Card not found" }.
Path parameters
The card’s
id from /api/v1/vm/buy/status (nfts[].id) or /api/v1/inventory/:user_id (items[].id).Example request
Response
Card identifier. Also the
item_id for /api/v1/vm/buyback and /api/v1/ship/quote.Display name of the card.
Primary CDN URL for the card image. Convenience copy of
links.image.CDN URL for the card back image, or
null when not available.Current fair-market value in USD.Production: live FMV from the Alt pricing oracle.Sandbox: for
EbayListing hits, the stored fmv is returned. For CORE NFT fallback, FMV is computed as buyback_price / 0.85 (no Alt oracle call).Full metadata:
name, image, and attributes[].For CORE NFT fallback responses, metadata is the raw on-chain metadata JSON and may include fields beyond { name, image, attributes } (e.g. description, properties, seller_fee_basis_points). Partners should ignore unknown fields.Errors
| Status | Body | Cause |
|---|---|---|
400 | { "error": "item_id is required" } | Missing :item_id path param |
404 | { "error": "Card not found" } | Unknown item_id |
500 | { "error": "An unexpected error occurred" } | Internal server error |