Appearance
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_keyPath parameters
| Parameter | Example | Description |
|---|---|---|
pricecharting_id | 2513024 | PriceCharting's numeric product ID |
Query parameters
| Name | Type | Required | Description |
|---|---|---|---|
date | string | Yes | Date to compute oracle for (YYYY-MM-DD). Window is 24h ending at midnight UTC on this date. |
outlier_stddevs | int | No | Outlier 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
| HTTP | When |
|---|---|
401 | Missing or invalid API key |
400 | No catalog mapping found for this ID |
422 | Invalid date format or date is in the future |
502 | Upstream error with no local fallback available |
503 | Database unreachable or data source not configured |
