Documentation

API Reference & Integration Guide

API Available

balance.getChainList

balance.getChainListDesc

GETbalance.getChainList
Endpoint URL
https://testnet.trustsig.xyz/v1/chain/list?Accept-Language=en

⚙️Authentication Status

⚠️ API Key is required for all requests Webhook Secret

🔑

Headers

x-api-key
Required

API Key for authentication

x-signature
Required

HMAC-SHA256 signature for authentication

x-timestamp
Required

Timestamp (milliseconds) for signature

🔗

Parameters (Query)

Accept-Language
string Optional

Language preference (en, th)

Request Example

Terminal
curl --location 'https://testnet.trustsig.xyz/v1/chain/list?Accept-Language=en' \
--header 'x-api-key: YOUR_API_KEY' \
--header 'x-signature: SIGNATURE_FROM_SIGN_API' \
--header 'x-timestamp: TIMESTAMP_FROM_SIGN_API' \
--header 'Content-Type: application/json'

Response Example

200 OK
JSON Response
{
  "data": [
    {
      "id": "0ff1f448-db53-48f0-9e9d-40dd3751efcc",
      "name": "Ethereum",
      "chain": "ethereum",
      "native_asset": "ETH",
      "standard_token": "erc20",
      "gas_min": 0.0030625,
      "gas_airdrop": 0,
      "gas_convert": 0,
      "gas_unit": "",
      "is_actived": true,
      "metadata": {
        "chain_id": 3
      },
      "created_at": "2024-12-07T16:20:23.803Z"
    },
    {
      "id": "1d44e285-c020-42df-8237-4c555b2687d4",
      "name": "Polygon",
      "chain": "polygon",
      "native_asset": "MATIC",
      "standard_token": "erc20",
      "gas_min": 13.315579,
      "gas_airdrop": 0,
      "gas_convert": 0,
      "gas_unit": "",
      "is_actived": true,
      "metadata": {
        "chain_id": 80001
      },
      "created_at": "2024-12-07T16:20:23.803Z"
    },
    {
      "id": "29ebef1f-ee46-44e9-9324-6a89ab18d986",
      "name": "Litecoin",
      "chain": "litecoin",
      "native_asset": "LTC",
      "standard_token": "litecoin",
      "gas_min": 0.038931,
      "gas_airdrop": 0,
      "gas_convert": 0,
      "gas_unit": "",
      "is_actived": true,
      "metadata": {
        "chain_id": 1
      },
      "created_at": "2024-12-07T16:20:23.803Z"
    },
    {
      "id": "97b8e001-a65e-4f2c-9d7d-bc4055f521fa",
      "name": "Binance Smart Chain",
      "chain": "bsc",
      "native_asset": "BNB",
      "standard_token": "bep20",
      "gas_min": 0.006906,
      "gas_airdrop": 0,
      "gas_convert": 0,
      "gas_unit": "",
      "is_actived": true,
      "metadata": {
        "chain_id": 97
      },
      "created_at": "2024-12-07T16:20:23.803Z"
    },
    {
      "id": "97ba8e57-ffcf-4f1d-b8e5-574021d50352",
      "name": "Bitcoin",
      "chain": "bitcoin",
      "native_asset": "BTC",
      "standard_token": "bitcoin",
      "gas_min": 0.00003126,
      "gas_airdrop": 0,
      "gas_convert": 0,
      "gas_unit": "",
      "is_actived": true,
      "metadata": {
        "chain_id": 0
      },
      "created_at": "2024-12-07T16:20:23.803Z"
    },
    {
      "id": "fa9878a5-243e-44cd-8d1c-b3378eddf607",
      "name": "Dogecoin",
      "chain": "dogecoin",
      "native_asset": "DOGE",
      "standard_token": "dogecoin",
      "gas_min": 4.05358843,
      "gas_airdrop": 0,
      "gas_convert": 0,
      "gas_unit": "",
      "is_actived": true,
      "metadata": {
        "chain_id": 2
      },
      "created_at": "2024-12-07T16:20:23.803Z"
    },
    {
      "id": "d28f040c-521e-42bb-a2fc-adc68bdafc3f",
      "name": "Tron",
      "chain": "tron",
      "native_asset": "TRX",
      "standard_token": "trc20",
      "gas_min": 3.398395,
      "gas_airdrop": 0,
      "gas_convert": 0,
      "gas_unit": "",
      "is_actived": true,
      "metadata": {
        "chain_id": 195
      },
      "created_at": "2024-12-07T16:20:23.803Z"
    }
  ],
  "success": true,
  "code": 0
}