Skip to main content

List Active Currency Tokens

Lists active currency tokens with pagination.

Request

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

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/active?page=1&per_page=20' \
--header 'Authorization: Bearer <token>'

Response

{
"data": [
{
"id": "6900a1fd2a4de1c5748e9dcd",
"node_id": "665ae536a6392b75cfd40352",
"type": 1,
"status": 3,
"name": "Tether USD",
"symbol": "USDT",
"total_supply": 0,
"description": "Stablecoin pegged to USD on Holesky",
"decimals": 6,
"meta": {
"logo": {
"url": "https://s3.tokenizationtr.com/currencies/usdt.svg",
"hash": "0xdb2e8354c2a2a0f9c7c889ec27cdd424d49c8fd1"
}
},
"contract": {
"address": "0xdb2e8354c2a2a0f9c7c889ec27cdd424d49c8fd1",
"tx_hash": "0xbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb1702"
},
"is_active": false,
"created_at": "2025-10-28T10:59:09.76Z",
"updated_at": "2025-10-28T10:59:09.76Z"
}
],
"total": 4,
"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 - Active currency tokens retrieved successfully
400Bad Request - Invalid query params
401Unauthorized - Invalid or missing authentication token
500Internal Server Error