GET /creator-activity/{id}
GET

/v1/creator-activity/{id}

Token creator trading activity

AuthNone — works without a key

Request

GEThttps://api.xrpl.to/v1/creator-activity/0dd550278b74cb6690fdae351e8e0df3
Path parameterValueDescription
idmd5 or creator r-address
Query parameterValueDescription
idmd5 or creator r-address
sinceunix ms — return events strictly newer (exclusive)
beforeunix ms — return events strictly older (exclusive cursor)
limitint (max 200)
sidebuy|sell
typeevent type
streambool
curl 'https://api.xrpl.to/v1/creator-activity/0dd550278b74cb6690fdae351e8e0df3'

Response

200Example response3 ms · just now · 1.1 KB · 69 lines
https://api.xrpl.to/v1/creator-activity/0dd550278b74cb6690fdae351e8e0df3
{
  "creator": "rJqiMb94hyz41SBTNr2AyPNW8AzELa8nE",
  "stats": {
    "buy": {
      "count": 0,
      "tokens": 0,
      "xrp": 0
    },
    "sell": {
      "count": 0,
      "tokens": 0,
      "xrp": 0
    },
    "deposit": {
      "count": 0,
      "tokens": 0,
      "xrp": 0
    },
    "withdraw": {
      "count": 0,
      "tokens": 0,
      "xrp": 0
    },
    "transfer_out": {
      "count": 0,
      "tokens": 0
    },
    "receive": {
      "count": 0,
      "tokens": 0
    },
    "other_send": {
      "count": 0,
      "xrp": 0
    },
    "other_receive": {
      "count": 0,
      "xrp": 0
    },
    "amm_create": {
      "count": 0,
      "xrp": 0
    },
    "escrow_locked": {
      "count": 0,
      "tokens": 0,
      "nextUnlock": null
    },
    "escrow_unlock": {
      "count": 0,
      "tokens": 0
    },
    "firstActivity": null,
    "lastActivity": null,
    "distinctTokenCount": 0,
    "launchFunding": 0,
    "totalXrpIn": 0,
    "totalXrpOut": 0,
    "netXrp": 0,
    "netTokens": 0,
    "extractionRatio": 0,
    "burn": {
      "count": 0,
      "tokens": 0
    }
  },
  "signals": [],
  "events": []
}

What it does

Token creator trading activity

A token id can be its md5, slug or issuer_currency. How to build an md5 →
OpenAPI