GET /token/{md5}/related
GET

/v1/token/{md5}/related

Related projects: other tokens and NFT collections that share the audience of this token. An edge means wallets hold both and accounts post about both — it is NOT a wallet link and does not assert a shared operator (see /token/review for that).

AuthNone — works without a key

Request

GEThttps://api.xrpl.to/v1/token/0dd550278b74cb6690fdae351e8e0df3/related
Path parameterValueDescription
md5The token's md5 (md5 of issuer_currency)
curl 'https://api.xrpl.to/v1/token/0dd550278b74cb6690fdae351e8e0df3/related'

Response

200Example response1 ms · just now · 0.1 KB · 8 lines
https://api.xrpl.to/v1/token/0dd550278b74cb6690fdae351e8e0df3/related
{
  "success": true,
  "took": 0,
  "md5": "0dd550278b74cb6690fdae351e8e0df3",
  "count": 0,
  "truncated": false,
  "related": []
}
Shapeas documented
{
  success,
  took,
  count (rows in this response),
  truncated,
  subject,
  related[]
} — each row: {
  type: token|collection,
  md5|collectionId,
  slug,
  name,
  sharedHolders,
  posters,
  wallets[] (a sample of the wallets holding both),
  posts[] (posts naming both),
  sameProject
}

What it does

Related projects: other tokens and NFT collections that share the audience of this token. An edge means wallets hold both and accounts post about both — it is NOT a wallet link and does not assert a shared operator (see /token/review for that).

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