Transparency
Public venue aggregates are published on the platform stats API. No token. Figures are delayed: as_of is floored to a 10-minute boundary (PUBLIC_STATS_DELAY_SECS = 600).
GET /transparency is not a live route. Do not call it.
| Surface | Endpoint | Auth |
|---|---|---|
| Headline snapshot | GET /api/v1/stats/platform/overview | Public |
| Time series | GET /api/v1/stats/platform/series | Public |
These are the endpoints the product Transparency page uses.
GET /stats/platform/overview
curl 'https://api.godarkdex.com/api/v1/stats/platform/overview?range=1m'
Query parameters
| Parameter | Accepted values | Default | Notes |
|---|---|---|---|
range | 1d, 7d, 1m, 3m, 1y (aliases: d, w, m, y) | 1m | Window ending at public as_of. |
from | RFC3339 | — | Inclusive start. Must be before to. Span ≤ 2 years. |
to | RFC3339 | public as_of | Inclusive end, clamped to as_of. |
If you pass from, range is ignored. Windows of two days or less use hourly buckets on the series endpoint; longer windows use daily buckets.
Response
{
"as_of": "2026-09-14T13:50:00Z",
"volume_24h": "84250000.00",
"volume": {
"value": "2100000000.00",
"change_24h": "0.04",
"change_30d": "0.12"
},
"open_interest": {
"value": "128450000.00",
"change_24h": "-0.01"
},
"funding": {
"value": "0.0001",
"annualized": "0.11"
},
"users": {
"value": "1847"
},
"all_time_volume": "9100000000.00",
"all_time_users": "22100",
"monthly_active_users": "4100",
"quarterly_active_users": "8900"
}
Fields
| Field | Description |
|---|---|
as_of | Delayed public timestamp (RFC3339). |
volume_24h | Trailing 24h volume through as_of. |
volume / open_interest / funding / users | Headline for the selected window. Optional change_24h, change_30d, annualized. |
all_time_volume / all_time_users | Cumulative through as_of. |
monthly_active_users | Registered users whose last fill is in the rolling 30 UTC days ending at as_of. |
quarterly_active_users | Same, 90 UTC days. |
No per-trade or per-user tape. Safe to scrape unauthenticated.
GET /stats/platform/series
curl 'https://api.godarkdex.com/api/v1/stats/platform/series?metric=volume&range=7d&assets=BTC,ETH'
Query parameters
| Parameter | Required | Notes |
|---|---|---|
metric | Yes | volume, oi, funding, or users. |
range | No | Same as overview. Default 1m. |
from / to | No | Same as overview. |
assets | No | Comma-separated symbols for by_asset breakdown. |
Response
{
"as_of": "2026-09-14T13:50:00Z",
"metric": "volume",
"granularity": "day",
"points": [
{ "t": "2026-09-08T00:00:00Z", "total": "110000000.00", "by_asset": { "BTC": "80000000.00", "ETH": "30000000.00" } },
{ "t": "2026-09-09T00:00:00Z", "total": "98000000.00", "by_asset": { "BTC": "71000000.00", "ETH": "27000000.00" } }
],
"cumulative": [
{ "t": "2026-09-08T00:00:00Z", "total": "110000000.00" },
{ "t": "2026-09-09T00:00:00Z", "total": "208000000.00" }
]
}
| Field | Description |
|---|---|
granularity | hour or day. |
points[] | Bucket timestamp t, aggregate total, optional by_asset. |
cumulative[] | Running sum when the metric supports it. Omitted when empty. |
This API is aggregates only. It is not proof-of-reserves, TEE attestation, or a committee roster.