Sandbox version
For experimental use only. Proceed with caution.
tokens
Get a token detail by tokenSlug
get
/token/{tokenSlug}
operationId: token-getDetail

Returns the full detail view for a single token identified by its natural currency.issuer tokenSlug (e.g. USD.rvYAfWj5gh67oV6fW32ZzP3Aw4Eubs59B). currency is either a 3-char ISO code or the 40-char hex form; issuer is the XRPL classic address. Returns null if no token matches.

Unlock protected endpoints

Enter your Bearer token once to enable every protected route in this API reference.

HTTP bearer

Saved for this browser tab only. The credential is never sent until you test an endpoint.

Authorizations
NameLocationDetails
BearerAuthAuthorization header · bearerJWT issued by the Honeycluster auth service for the `indexer` audience. Present as `Authorization: Bearer <token>`.
Path Parameters
NameTypeDefaultDescription
tokenSlug
required
string
Natural token identifier in `currency.issuer` form. `currency` is either a 3-char ISO code (e.g. `USD`) or the 40-char hex form; `issuer` is the XRPL classic address. Example: `USD.rvYAfWj5gh67oV6fW32ZzP3Aw4Eubs59B`.
Query Parameters
NameTypeDefaultDescription
metadata
boolean
metrics
boolean
Responses
200
application/json
Successful response
Example
Json
{
  "currency": "string",
  "issuer": "string",
  "id": "00000000-0000-0000-0000-000000000000",
  "slug": "string",
  "launched_at": 1745798400,
  "launched_ledger_index": 0,
  "indicators": {
    "is_lp_burnt": false,
    "is_anti_snipe": false,
    "is_first_ledger_launch": false,
    "is_whale_free": false,
    "is_first_token_for_issuer": false,
    "is_renounced": false
  },
  "metadata": {
    "token": {
      "token_name": "string",
      "name": "string",
      "ticker": "string",
      "code": "string",
      "code_normalized": "string",
      "desc": "string",
      "icon": "string",
      "asset_class": "string",
      "asset_subclass": "string",
      "display_decimals": 0,
      "trust_level": 0,
      "verified": false,
      "urls": [
        {
          "url": "string",
          "type": "string"
        }
      ],
      "website": "string",
      "twitter": "string",
      "created": 1745798400,
      "dev_address": "string"
    },
    "issuer": {
      "name": "string",
      "domain": "string",
      "icon": "string",
      "kyc": false,
      "trust_level": 0,
      "verified": false,
      "is_blackholed": false,
      "advisory_severity": "string",
      "advisory": "string"
    }
  },
  "metrics": {
    "trustlines": 0,
    "holders": 0,
    "supply": "string",
    "circulating_supply": "string",
    "price": "string",
    "market_cap": "string",
    "fdv": "string",
    "tvl": "string",
    "vesting": {
      "total": "string",
      "next_7d": "string",
      "next_30d": "string"
    },
    "price_change": {
      "last_5m": {
        "absolute": "string",
        "percent": "string"
      },
      "last_1h": {
        "absolute": "string",
        "percent": "string"
      },
      "last_6h": {
        "absolute": "string",
        "percent": "string"
      },
      "last_24h": {
        "absolute": "string",
        "percent": "string",
        "since_inception": false
      },
      "last_7d": {
        "absolute": "string",
        "percent": "string",
        "since_inception": false
      }
    },
    "volume": {
      "last_5m": {
        "value": "string",
        "change_absolute": "string",
        "change_percent": "string"
      },
      "last_1h": {
        "value": "string",
        "change_absolute": "string",
        "change_percent": "string"
      },
      "last_6h": {
        "value": "string",
        "change_absolute": "string",
        "change_percent": "string"
      },
      "last_24h": {
        "value": "string",
        "change_absolute": "string",
        "change_percent": "string"
      },
      "last_7d": "string",
      "total": "string",
      "dominance": {
        "last_24h": "string"
      }
    },
    "txn": {
      "last_5m": {
        "value": 0,
        "change_absolute": 0,
        "change_percent": "string"
      },
      "last_1h": {
        "value": 0,
        "change_absolute": 0,
        "change_percent": "string"
      },
      "last_6h": {
        "value": 0,
        "change_absolute": 0,
        "change_percent": "string"
      },
      "last_24h": {
        "value": 0,
        "change_absolute": 0,
        "change_percent": "string"
      },
      "last_7d": 0
    },
    "takers_24h": 0,
    "takers_7d": 0,
    "buy_sell_24h": {
      "buys": {
        "txns": 0,
        "traders": 0,
        "xrp": "string"
      },
      "sells": {
        "txns": 0,
        "traders": 0,
        "xrp": "string"
      }
    },
    "quality_score": "string"
  }
}
400
application/json
Invalid input data
FieldTypeDescription
message
string
The error message
code
string
The error code
issues
object[]
An array of issues that were responsible for the error
issues[].message
string
Example
Json
{
  "code": "BAD_REQUEST",
  "message": "Invalid input data",
  "issues": []
}
401
application/json
Authorization not provided
FieldTypeDescription
message
string
The error message
code
string
The error code
issues
object[]
An array of issues that were responsible for the error
issues[].message
string
Example
Json
{
  "code": "UNAUTHORIZED",
  "message": "Authorization not provided",
  "issues": []
}
403
application/json
Insufficient access
FieldTypeDescription
message
string
The error message
code
string
The error code
issues
object[]
An array of issues that were responsible for the error
issues[].message
string
Example
Json
{
  "code": "FORBIDDEN",
  "message": "Insufficient access",
  "issues": []
}
404
application/json
Not found
FieldTypeDescription
message
string
The error message
code
string
The error code
issues
object[]
An array of issues that were responsible for the error
issues[].message
string
Example
Json
{
  "code": "NOT_FOUND",
  "message": "Not found",
  "issues": []
}
500
application/json
Internal server error
FieldTypeDescription
message
string
The error message
code
string
The error code
issues
object[]
An array of issues that were responsible for the error
issues[].message
string
Example
Json
{
  "code": "INTERNAL_SERVER_ERROR",
  "message": "Internal server error",
  "issues": []
}