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": "ba8618c3-fadb-4d9d-b75f-f14e6acd6110",
        "name": "Tether USD",
        "symbol": "USDT",
        "name_override": "Tether USD (BSC)",
        "address": "0x55d398326f99059ff775485246999027b3197955",
        "chain_id": 56,
        "decimals": 18,
        "price": "1",
        "price_change_24h": "0",
        "image": "https://static.holdstation.com/tokens/usdt.png",
        "active": true,
        "withdrawal_contract": "0x0000000000000000000000000000000000000000",
        "created_at": { "seconds": 1751951680, "nanos": 676721000 },
        "updated_at": { "seconds": 1751951680, "nanos": 676721000 }
      }
    ],
    "page": 1,
    "page_size": 20,
    "total_count": 10
  }
}

Documentation Index

Fetch the complete documentation index at: https://pay-docs.holdstation.com/llms.txt

Use this file to discover all available pages before exploring further.

Overview

Partners use this API to retrieve the list of tokens supported for buy/sell operations in the Holdstation Pay system. Use this to obtain valid chain_id and token_address values for creating orders.
chain_id
integer
Filter 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
If true, returns all tokens without pagination.
{
  "message": "success",
  "data": {
    "tokens": [
      {
        "id": "ba8618c3-fadb-4d9d-b75f-f14e6acd6110",
        "name": "Tether USD",
        "symbol": "USDT",
        "name_override": "Tether USD (BSC)",
        "address": "0x55d398326f99059ff775485246999027b3197955",
        "chain_id": 56,
        "decimals": 18,
        "price": "1",
        "price_change_24h": "0",
        "image": "https://static.holdstation.com/tokens/usdt.png",
        "active": true,
        "withdrawal_contract": "0x0000000000000000000000000000000000000000",
        "created_at": { "seconds": 1751951680, "nanos": 676721000 },
        "updated_at": { "seconds": 1751951680, "nanos": 676721000 }
      }
    ],
    "page": 1,
    "page_size": 20,
    "total_count": 10
  }
}