Skip to content

GET /api/v1/developer/pricecharting/{pricecharting_id}/snapshot

Returns the full oracle pricing bundle (identical to PriceCharting Lookup) computed as of a specific historical date.

The TWAP window is 24 hours ending at midnight UTC on the requested date.


Request

http
GET /api/v1/developer/pricecharting/{pricecharting_id}/snapshot
X-API-Key: your_api_key

Path parameters

ParameterExampleDescription
pricecharting_id2513024PriceCharting's numeric product ID

Query parameters

NameTypeRequiredDescription
datestringYesDate to compute oracle for (YYYY-MM-DD). Window is 24h ending at midnight UTC on this date.
outlier_stddevsintNoOutlier rejection threshold (default 2, range 1-10)

Use the Catalog endpoint to find the earliest_observation date for each card.

Example

bash
curl "https://api.coda-tech.net/api/v1/developer/pricecharting/2513024/snapshot?date=2026-04-30" \
  -H "X-API-Key: your_api_key"

Response 200

Identical to PriceCharting Lookup, with prices and windows computed as of the requested date:

json
{
  "id": "2513024",
  "product_key": "pokemon-sws07-umbreon-vmax-alt-art-secret",
  "window_hours": 24,
  "outlier_stddevs": 2,
  "ungraded": {
    "price_minor": 170786,
    "currency": "USD",
    "window_start": "2026-04-30T00:00:00+00:00",
    "window_end": "2026-05-01T00:00:00+00:00",
    "included_points": 413,
    "meta": { "..." : "..." },
    "error": null
  },
  "graded": {
    "PSA": {
      "10": { "price_minor": 448591, "..." : "..." },
      "9":  { "price_minor": 221166, "..." : "..." },
      "8":  { "price_minor": 209556, "..." : "..." },
      "7":  { "price_minor": 150982, "..." : "..." }
    },
    "BGS": { "..." : "..." },
    "CGC": { "..." : "..." },
    "SGC": { "..." : "..." }
  },
  "metadata": { "..." : "..." }
}

See Developer Pricing for the full field reference.


Errors

HTTPWhen
401Missing or invalid API key
400No catalog mapping found for this ID
422Invalid date format or date is in the future
502Upstream error with no local fallback available
503Database unreachable or data source not configured

Coda - price settlement infrastructure.