List Tokens
Retrieves a list of tokens in the system with pagination support.
Request
POST /v2/admin/token/nodes/{node_id}/search
Parameters
| Name | Type | In | Description |
|---|---|---|---|
node_id | string | path | Required. The ID of the node to search tokens under |
page | number | body | Optional. Page number for pagination (default: 1) |
per_page | number | body | Optional. Number of items per page (default: 20) |
Headers
| Name | Description |
|---|---|
Authorization | Required. Bearer token for authentication |
Content-Type | Required. Must be application/json |
Example
curl --request POST \
--url '\{\{baseUrl\}\}/v2/admin/token/nodes/67d6c447f47ff3adafda700d/search' \
--header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...' \
--header 'Content-Type: application/json' \
--data '{
"page": 1,
"per_page": 20
}'
Response
{
"data": [
{
"id": "67d76014d9c4853c097bcf9a",
"category_id": "667e9251ca818a2138ed4915",
"node_id": "67d6c447f47ff3adafda700d",
"status": 4,
"name": "TKN Token Name 6",
"description": "Token Description",
"token_name": "tkn",
"token_symbol": "TKN",
"is_public": false,
"meta": {
"images": [
{
"url": "https://fra1.digitaloceanspaces.com/apex/dev/token/67d76014d9c4853c097bcf9a/images/9e6e15fc-57ea-4de9-a2e1-9ee945908ce1.png",
"is_default": true
}
],
"documents": [
{
"name": "data.pdf",
"url": "https://fra1.digitaloceanspaces.com/apex/dev/token/67d76014d9c4853c097bcf9a/documents/0d295c7d-fff2-40fc-a184-3119c14ef61a.pdf",
"type": 1
}
]
},
"contract": {
"address": "0x730d22ae2267fc5b40520605868ddb48c29331a7",
"tx_hash": "0x4ecde457e62f7d6b296bf9f798bff25e62c7b9971dab89d07edcf16a073b8387"
},
"value": {
"value": {
"amount": 12000,
"decimal": 6,
"symbol": "USDT"
},
"rate": 30,
"salable_value": 3600,
"supply": 0,
"max_supply": 1000,
"total_supply": 0,
"sold_supply": 0
},
"metric": null,
"created_at": "2025-03-16T23:34:44.905Z",
"deleted_at": null
}
],
"total": 7,
"page": 1,
"per_page": 20
}
Status Codes
| Status Code | Description |
|---|---|
| 200 | Success |
| 400 | Bad Request - Invalid parameters |
| 401 | Unauthorized - Invalid or missing authentication token |
| 404 | Not Found - Node ID does not exist |
| 500 | Internal Server Error |