/token/metadata/batchtoken-getMetadataBatchPOST batch variant of /token/{tokenSlug}/metadata. Accepts { slugs: [...] } (max 100); returns per-slug identity + indicators + meta. Per-slug parse / lookup failures isolate to data: null so a single bad slug doesn't fail the whole request.
| Name | Location | Details |
|---|---|---|
BearerAuth | Authorization header · bearer | JWT issued by the Honeycluster auth service for the `indexer` audience. Present as `Authorization: Bearer <token>`. |
| Field | Type | Description |
|---|---|---|
slugsrequired | string[] | Array of token slugs in `currency.issuer` form (max 100 per request). Per-slug parse / lookup failures surface as `{ slug, data: null }` so a single bad slug doesn't take down the rest. |
{
"slugs": [
"string"
]
}| Field | Type | Description |
|---|---|---|
items | object[] | One entry per input slug, in the same order as the request. Always has the same length as `input.slugs`. |
items[]. | string | The token slug that produced this row (echoed from the request). |
items[]. | object | Per-slug response, or `null` when the slug is malformed / unknown / the per-slug query threw. |
{
"items": [
{
"slug": "string",
"data": {
"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": "INTERNAL_SERVER_ERROR",
"message": "Internal server error",
"issues": []
}