GET
/
coinlist
curl --request GET \
  --url https://api.onton.finance/coinlist

Successful Response:

[
  {
    "tokenName": "TON Crystal",
    "tokenSymbol": "TON",
    "tokenAddress": "EQAm_w4bDQ5MA4EEhK_vbIy-lrOZcyPM43QJSyq3gtBI0l1u",
    "poolAddress": "EQB3j06gS6-LBjBIkz4x6j5-hJQ9n7eAoGFhPI7_TBX9vehF"
  },
  {
    "tokenName": "Duck Token",
    "tokenSymbol": "DUCK",
    "tokenAddress": "EQCFSH8fDzT6vq34EfC0Jfn_UEHH4-fYhPBcpPnHkBdX5o8m",
    "poolAddress": "EQAq9h7fygvM3P4zj6p8qMZx5_sxtFqO7JGscf-t1JEpV9Zk"
  },
  {
    "tokenName": "ONTON Token",
    "tokenSymbol": "ONTON",
    "tokenAddress": "0xabcdef1234",
    "poolAddress": "0x0000000000000000000000000000000000000002"
  }
]

Response Field Description:

  • tokenName: The name of the token.
  • tokenSymbol: The symbol of the token.
  • tokenAddress: The blockchain address of the token.
  • poolAddress: The address of the liquidity pool associated with the token.

By calling this API endpoint, you can retrieve information on all tokens currently supported by the ONTON Finance platform, including token names, symbols, and blockchain addresses. This interface is invaluable for users needing to understand the tokens supported by the platform and use token addresses in other APIs.

You can display this token list in the frontend interface, allowing users to understand the tokens supported by the platform and select tokens for liquidity provision or exchange operations. Meanwhile, when calling other APIs, such as creating a liquidity pool or exchanging tokens, you can use the token addresses returned by this interface as parameters.

Response

200

Successfully provided coin list