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.

SurfaceEndpointAuth
Headline snapshotGET /api/v1/stats/platform/overviewPublic
Time seriesGET /api/v1/stats/platform/seriesPublic

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

ParameterAccepted valuesDefaultNotes
range1d, 7d, 1m, 3m, 1y (aliases: d, w, m, y)1mWindow ending at public as_of.
fromRFC3339Inclusive start. Must be before to. Span ≤ 2 years.
toRFC3339public as_ofInclusive 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

FieldDescription
as_ofDelayed public timestamp (RFC3339).
volume_24hTrailing 24h volume through as_of.
volume / open_interest / funding / usersHeadline for the selected window. Optional change_24h, change_30d, annualized.
all_time_volume / all_time_usersCumulative through as_of.
monthly_active_usersRegistered users whose last fill is in the rolling 30 UTC days ending at as_of.
quarterly_active_usersSame, 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

ParameterRequiredNotes
metricYesvolume, oi, funding, or users.
rangeNoSame as overview. Default 1m.
from / toNoSame as overview.
assetsNoComma-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" }
  ]
}
FieldDescription
granularityhour 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.