Skip to content

Get Chain Lists

This method retrieves the chain lists.

shell
GET: {{endpoint}}/v1/chain/list

Response Parameters

The final response in the stream also includes additional data about the generation:

  • data: (Array) the chain lists
    • id: the id of the chain
    • name: the name of the chain
    • native_asset: the native asset of the chain
    • standard_token: the standard token of the chain
    • metadata: the metadata of the chain
    • created_at: the created at
Example Response
json
{
  "data": [
    {
      "id": "d28f040c-521e-42bb-a2fc-adc68bdafc3f",
      "name": "Tron",
      "chain": "tron",
      "native_asset": "TRX",
      "standard_token": "TRC20",
      "metadata": {
        "chain_id": 195
      },
      "created_at": "2024-10-13T14:42:15.281Z"
    },
    { ... }
  ]
}
json
{
  "error": "Error message"
}
json
{
  "error": "Forbidden"
}