Skip to main content
GET
/
api
/
v1
/
tokens
List Tokens
curl --request GET \
  --url https://pay-api.holdstation.com/api/v1/tokens
{
  "message": "success",
  "data": {
    "tokens": [
      {
        "id": "d696d87f-8f41-4cee-9a90-4e99f7df4851",
        "chain_id": 1,
        "address": "0xdac17f958d2ee523a2206206994597c13d831ec7",
        "name": "Tether USD",
        "symbol": "USDT",
        "decimals": 6,
        "price": "1",
        "price_change_24h": "0",
        "name_override": "Tether USD (ETH)",
        "image": "https://static.holdstation.com/tokens/chain/999999/0x55d398326f99059ff775485246999027b3197955.png",
        "active": true,
        "withdrawal_contract": "0x0000000000000000000000000000000000000000"
      }
    ],
    "page": 1,
    "page_size": 20,
    "total_count": 5
  }
}

Overview

Partners use this API to retrieve the list of tokens supported for buy/sell operations in the Holdstation Pay system. This API can also be used to obtain the corresponding chain_id required for creating an order.
chain_id
integer
Filter tokens by blockchain network ID.
active
boolean
Filter by active status.
page
integer
Page number for pagination.
page_size
integer
Number of results per page.
symbols
string[]
Filter by token symbols (e.g., USDT).
no_limit
boolean
Set to true to return all results without pagination.
{
  "message": "success",
  "data": {
    "tokens": [
      {
        "id": "d696d87f-8f41-4cee-9a90-4e99f7df4851",
        "chain_id": 1,
        "address": "0xdac17f958d2ee523a2206206994597c13d831ec7",
        "name": "Tether USD",
        "symbol": "USDT",
        "decimals": 6,
        "price": "1",
        "price_change_24h": "0",
        "name_override": "Tether USD (ETH)",
        "image": "https://static.holdstation.com/tokens/chain/999999/0x55d398326f99059ff775485246999027b3197955.png",
        "active": true,
        "withdrawal_contract": "0x0000000000000000000000000000000000000000"
      }
    ],
    "page": 1,
    "page_size": 20,
    "total_count": 5
  }
}