Appearance
Coda Docs
Coda is a price settlement layer for collectible card markets. We aggregate independent market data, run a TWAP oracle, and expose the output through a developer API. No black boxes.
What we build
TWAP Oracle Time-weighted average prices across configurable windows (1-72h) with outlier filtering, floor guards, and source diversity checks.
Slab Matrix PSA / BGS / CGC / SGC grade 7-10 pricing per card, combining card-specific observations with composite market band signals.
Sparse Oracle Extended fallback with recency weighting and statistical trend fitting - tracked products always return a price.
Developer API REST JSON: per-card pricing bundles, full slab matrices, product metadata, and diagnostic
meta fields. Base URL
https://api.coda-tech.netAll routes live under /api/v1.
Quick example
http
GET /api/v1/developer/pricing/pokemon-sws07-umbreon-vmax-alt-art-secret
X-API-Key: your_api_keyReturns ungraded NM price plus PSA/BGS/CGC/SGC × grades 7-10 for the Moonbreon.
json
{
"product_key": "pokemon-sws07-umbreon-vmax-alt-art-secret",
"window_hours": 24,
"ungraded": {
"price_minor": 178015,
"currency": "USD",
"methodology": "twap_24h_outlier_v3_floor_q20",
"included_points": 43
},
"graded": {
"PSA": {
"10": { "price_minor": 438365, "included_points": 16 },
"9": { "price_minor": 285000, "included_points": 8 },
"8": { "price_minor": 198000, "included_points": 5 },
"7": { "price_minor": 118200, "included_points": 4 }
}
},
"metadata": {
"product_name": "Umbreon VMAX Alt Art",
"era": "modern"
}
}Prices are in cents (USD minor units)
price_minor: 178015 = $1,780.15. Divide by 100 to get dollars.
Where to start
- Authentication - get your API key and send it correctly
- Quickstart - first live API call in under 5 minutes
- API Reference - full endpoint docs
- TWAP Oracle - how prices are computed
