GET
/api/snapshot/latestGet Latest Snapshots
Returns the 5 most recent snapshots. Useful for checking data freshness.
Query Parameters
formatstringdefault:jsonResponse encoding. csv and tsv return the row array as a flat file instead of a JSON envelope — the envelope moves to X-* response headers and nulls render as \N. REQUIRES SCALE OR ENTERPRISE (json is available on every tier). Works with includebook=true — the bids/asks ladders come through as compact JSON inside their cell, complete and parseable (pandas: df["bids"].apply(json.loads)).
cryptostringFilter by crypto
timeframestringFilter by timeframe. NOT just crypto cadences — it is a per-category discriminator: crypto 5m/15m/1h/4h/1d plus hit-price, sports game, economics rates, social weekly, weather daily-high/daily-low/event/seasonal, equities annual/monthly/daily/event/earnings/quarterly/valuation/comparison/leaderboard.
includebookbooleandefault:falseInclude full bid/ask arrays. Off by default.
Response
200401403404500
Successful Response
Code Snippet
curl -X GET "https://api.resolvedmarkets.com/api/snapshot/latest" \ -H "X-API-Key: YOUR_API_KEY"
200
[
{
"crypto": "BTC",
"timeframe": "5m",
"token_side": "UP",
"best_bid": 0.52,
"best_ask": 0.53,
"mid_price": 0.525
}
]
