GET /platform-stats/detail/{sourceTag}
GET

/v1/platform-stats/detail/{sourceTag}

Top tokens traded via a single platform; summary covers ALL tokens for the platform/period, not just returned rows

AuthNone — works without a key

Request

GEThttps://api.xrpl.to/v1/platform-stats/detail/74920348?period=24h&limit=10
Path parameterValueDescription
sourceTagnumeric tag or platform slug
Query parameterValueDescription
sourceTagnumeric tag or platform slug
period24h|7d|30d (default: 7d)
limitint (default 50, clamped 1-200)
curl 'https://api.xrpl.to/v1/platform-stats/detail/74920348?period=24h&limit=10'

Response

200Example response11 ms · just now · 2.2 KB · 79 lines
https://api.xrpl.to/v1/platform-stats/detail/74920348?period=24h&limit=10
{
  "success": true,
  "took": 10,
  "sourceTag": 74920348,
  "name": "FirstLedger",
  "period": "24h",
  "summary": {
    "txCount": 3034,
    "volume": 32794.478641,
    "buyVolumeXrp": 20363.34034890894,
    "sellVolumeXrp": 12431.13829209106,
    "buyCount": 925,
    "sellCount": 423,
    "buyVolumeAMM": 17052.296956112394,
    "sellVolumeAMM": 10301.84381979438,
    "buyVolumeOrderbook": 3311.043392796548,
    "sellVolumeOrderbook": 2129.2944722966804,
    "uaw": 265,
    "uniqueTraders": 215,
    "types": {
      "Payment": 2526,
      "TrustSet": 470,
      "AMMWithdraw": 24,
      "AMMDeposit": 14
    }
  },
  "tokens": [
    {
      "md5": "b05f7c8e58b832c74267d988567dea33",
      "currency": "46555A5A59000000000000000000000000000000",
      "name": "FUZZY",
      "slug": "rhCAT4hRdi2Y9puNdkpMzxrdKa5wkppR62-46555A5A59000000000000000000000000000000",
      "icon": null,
      "volume": 7836.984292,
      "trades": 41,
      "traders": 16
    },
    {
      "md5": "cd9499746c1b2e041563a9724330b3e6",
      "currency": "41524D5900000000000000000000000000000000",
      "name": "ARMY",
      "slug": "rGG3wQ4kUzd7Jnmk1n5NWPZjjut62kCBfC-41524D5900000000000000000000000000000000",
      "icon": null,
      "volume": 4817.792418,
      "trades": 14,
      "traders": 9
    },
    {
      "md5": "ef02bf7d8b650fc962227d2a52261383",
      "currency": "50484E4958000000000000000000000000000000",
      "name": "PHNIX",
      "slug": "rDFXbW2ZZCG5WgPtqwNiA2xZokLMm9ivmN-50484E4958000000000000000000000000000000",
      "icon": null,
      "volume": 3897.104807,
      "trades": 26,
      "traders": 17
    },
    {
      "md5": "233d2c15a1c1288bb65b318ab1846e58",
      "currency": "44524F5000000000000000000000000000000000",
      "name": "DROP",
      "slug": "rszenFJoDdiGjyezQc8pME9KWDQH43Tswh-44524F5000000000000000000000000000000000",
      "icon": null,
      "volume": 2662.3983749999998,
      "trades": 23,
      "traders": 14
    },
    {
      "md5": "ca666e3b559636996817bc79865a7738",
      "currency": "OLX",
      "name": "OLX",
      "slug": "rswiX7wDL25Go4wGdLJK1ssSMpUsRGosJR-OLX",
      "icon": null,
      "volume": 1878.086372,
      "trades": 58,
      "traders": 19
    }
  ]
}

Long arrays and strings are shortened in the example; Send request for the full answer.

What it does

Top tokens traded via a single platform; summary covers ALL tokens for the platform/period, not just returned rows

Each token comes back with its md5, the id every Token endpoint takes. Go to Token →
OpenAPI