Skip to main content

List Currency Tokens by Node

Lists currency tokens under the specified node with pagination.

Request

GET /v2/admin/currency-tokens/nodes/{nodeID}?page={page}&per_page={perPage}

Parameters

NameTypeInDescription
nodeIDstringpathRequired. The ID of the node whose currency tokens will be listed

Query Parameters

NameTypeRequiredDescription
pagenumberNoPage number (default: 1)
per_pagenumberNoItems per page (default: 20)

Headers

NameDescription
AuthorizationRequired. Bearer token for authentication

Example

curl --location 'http://localhost:3453/v2/admin/currency-tokens/nodes/665ae536a6392b75cfd40352?page=1&per_page=20' \
--header 'Authorization: Bearer <token>'

Response

{
"data": [
{
"id": "690d004e8f95a5c7b2614658",
"node_id": "665ae536a6392b75cfd40352",
"type": 1,
"status": 1,
"name": "Custom Stable Coin",
"symbol": "CSTM",
"total_supply": 0,
"description": "",
"decimals": 6,
"meta": {
"logo": null
},
"contract": null,
"is_active": false,
"created_at": "2025-11-06T20:08:46.553Z",
"updated_at": "2025-11-06T20:08:46.553Z"
}
],
"total": 5,
"page": 1,
"per_page": 20
}

Response Fields

FieldTypeDescription
dataarrayList of currency tokens
data[].idstringUnique ID of the currency token
data[].node_idstringNode ID the token belongs to
data[].typenumberToken type identifier
data[].statusnumberToken status identifier
data[].namestringCurrency token name
data[].symbolstringCurrency token symbol
data[].total_supplynumberTotal supply
data[].descriptionstringDescription text
data[].decimalsnumberDecimal precision
data[].meta.logoobject or nullLogo object or null
data[].meta.logo.urlstringPublic URL of the token logo
data[].meta.logo.hashstringContent hash of the logo file
data[].contractobject or nullContract details or null
data[].contract.addressstringContract address (if deployed)
data[].contract.tx_hashstringDeployment transaction hash (if deployed)
data[].is_activebooleanWhether the token is active
data[].created_atstringCreation timestamp
data[].updated_atstringLast update timestamp
totalnumberTotal number of items
pagenumberCurrent page
per_pagenumberItems per page

Status Codes

Status CodeDescription
200Success - Currency tokens retrieved successfully
400Bad Request - Invalid node ID or query params
401Unauthorized - Invalid or missing authentication token
404Not Found - Node not found
500Internal Server Error