GET /creator-activity/{id}/receiver/{address}
GET

/v1/creator-activity/{id}/receiver/{address}

Creator activity filtered by recipient address

AuthNone — works without a key

Request

GEThttps://api.xrpl.to/v1/creator-activity/0dd550278b74cb6690fdae351e8e0df3/receiver/rJqiMb94hyz41SBTNr2AyPNW8AzELa8nE
Path parameterValueDescription
idA token id: its md5, slug or issuer_currency
addressAn XRPL account, its r-address
curl 'https://api.xrpl.to/v1/creator-activity/0dd550278b74cb6690fdae351e8e0df3/receiver/rJqiMb94hyz41SBTNr2AyPNW8AzELa8nE'

Response

200Example response4 ms · just now · 0.6 KB · 37 lines
https://api.xrpl.to/v1/creator-activity/0dd550278b74cb6690fdae351e8e0df3/receiver/rJqiMb94hyz41SBTNr2AyPNW8AzELa8nE
{
  "address": "rJqiMb94hyz41SBTNr2AyPNW8AzELa8nE",
  "token": "0dd550278b74cb6690fdae351e8e0df3",
  "stats": {
    "sell": {
      "count": 0,
      "xrp": 0
    },
    "buy": {
      "count": 0,
      "xrp": 0
    },
    "transfer_out": {
      "count": 0,
      "tokens": 0
    },
    "deposit": {
      "count": 0,
      "xrp": 0
    },
    "withdraw": {
      "count": 0,
      "xrp": 0
    },
    "received": {
      "count": 0,
      "tokens": 0
    }
  },
  "behavior": "unknown",
  "headline": "We have not traced this wallet yet",
  "fanout": null,
  "balance": null,
  "allocated": 0,
  "pctKept": null,
  "traced": false
}

What it does

Creator activity filtered by recipient address

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