/token/{tokenSlug}/metadatatoken-getMetadataReturns the slow-changing half of the token detail view: identity (currency, issuer, id, slug, launched_at, launched_ledger_index), boolean trust-signal indicators, and the curated meta.token + meta.issuer blocks. Returns null when no token matches the supplied tokenSlug. Use the sibling /token/{tokenSlug}/metrics endpoint for live market state — the two are intentionally separate so each can be cached on its own cadence.
| Name | Location | Details |
|---|---|---|
BearerAuth | Authorization header · bearer | JWT issued by the Honeycluster auth service for the `indexer` audience. Present as `Authorization: Bearer <token>`. |
| Name | Type | Default | Description |
|---|---|---|---|
tokenSlugrequired | string | Natural token identifier in `currency.issuer` form. Example: `USD.rvYAfWj5gh67oV6fW32ZzP3Aw4Eubs59B`. |
{
"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"
}
}
}| Field | Type | Description |
|---|---|---|
message | string | The error message |
code | string | The error code |
issues | object[] | An array of issues that were responsible for the error |
issues[]. | string |
{
"code": "BAD_REQUEST",
"message": "Invalid input data",
"issues": []
}| Field | Type | Description |
|---|---|---|
message | string | The error message |
code | string | The error code |
issues | object[] | An array of issues that were responsible for the error |
issues[]. | string |
{
"code": "UNAUTHORIZED",
"message": "Authorization not provided",
"issues": []
}| Field | Type | Description |
|---|---|---|
message | string | The error message |
code | string | The error code |
issues | object[] | An array of issues that were responsible for the error |
issues[]. | string |
{
"code": "FORBIDDEN",
"message": "Insufficient access",
"issues": []
}| Field | Type | Description |
|---|---|---|
message | string | The error message |
code | string | The error code |
issues | object[] | An array of issues that were responsible for the error |
issues[]. | string |
{
"code": "NOT_FOUND",
"message": "Not found",
"issues": []
}| Field | Type | Description |
|---|---|---|
message | string | The error message |
code | string | The error code |
issues | object[] | An array of issues that were responsible for the error |
issues[]. | string |
{
"code": "INTERNAL_SERVER_ERROR",
"message": "Internal server error",
"issues": []
}