Skip to main content

GET /v1/rates/markets

Returns the current VWAP rate for every active pair. Response is keyed by pair under data, same structure as /v1/rates/live.

Access: Builder, Professional, Enterprise. Free tier returns 403.

Authentication

Requires an API key. See Authentication.

Parameters

No parameters required.

Example

curl "https://api.moxiemetrx.com/v1/rates/markets" \
-H "X-API-Key: your_key"
{
"meta": {
"request_id": "...",
"timestamp": "2026-04-03T01:44:41+00:00",
"latency_ms": 4,
"pair_count": 19
},
"data": {
"BTCGHS": {
"rate": 1285573.73,
"calculation": "vwap",
"data_freshness_seconds": 281,
"sources": [
{"exchange": "quidax", "rate": 1285573.73, "time": "2026-04-03T01:40:00+00:00"}
],
"status": "verified",
"data_quality": "high",
"confidence": 0.95,
"synthetic_divergence_pct": 0.42,
"notes": "All sources aligned within threshold"
},
"BTCNGN": {
"rate": 92745268.5,
"calculation": "vwap",
"data_freshness_seconds": 281,
"sources": [
{"exchange": "luno", "rate": 92948735.0, "time": "2026-04-03T01:40:00+00:00"},
{"exchange": "quidax", "rate": 92541802.0, "time": "2026-04-03T01:40:00+00:00"}
],
"status": "verified",
"data_quality": "high",
"confidence": 0.95,
"synthetic_divergence_pct": 1.0049,
"notes": "All sources aligned within 1.00% threshold"
}
}
}

Each pair object has the same fields as the Live Rates Builder+ response. The meta.pair_count field indicates how many pairs are included.

tip

Ideal for dashboards. Returns all pairs in a single request, keeping rate limit usage low.