Request for obtaining the list of supported networks and tokens
GET /1.0/client/networks-list.
No parameters.
This request returns a list of networks and tokens supported by the service
An example of a successful response (HTTP Code 200):
[
{
"id": "c213f7c3-b5db-469a-af54-2842048b8439", // network ID
"name": "Telos", // network name
"symbol": "TLOS", // network symbol
"chainId": 40, // chain ID
"cryptos": [ // list of tokens supported by the network
{
"id": "698c82c9-8dc3-4419-ac76-05571f858d5e", // token ID
"name": "USDC", // token name
"symbol": "USDC", // token symbol
"contractAddress": null, // token contract address
"decimals": 6, // token decimals
"logoURI": null // token logo URI
}
]
}
]
Example of server error (HTTP code 500):
{
"success": false, // request success flag
"message": "Internal Server Error" // error message
}
Last updated