Blockchains

You can explore all exchanges, assets, and get codes for them using our instrument explorer. Alternatively, if you want to obtain the data in a more programmatic way, use this endpoint.

What is this endpoint for?

This endpoint retrieves the list of supported blockchains.

Endpoint

https://reference-data-api.kaiko.io/v1/blockchains

Parameters

No parameters supported

Fields

FieldDescription

id

The blockchain's id in our reference data.

name

The blockchain's name in our reference data.

is_evm

If the blockchain is EVM-Compatible or not.

Request example

curl --compressed -H 'Accept: application/json' 'https://reference-data-api.kaiko.io/v1/blockchains'

Response example

{
    "result":"success",
    "count": 10,
    "data":
    [
        {"id":1,"name":"ethereum","is_evm":true},
        {"id":2,"name":"bsc","is_evm":true},
        {"id":3,"name":"polygon","is_evm":true},
        {"id":4,"name":"arbitrum","is_evm":true},
        {"id":5,"name":"avalanche","is_evm":true},
        /* ... */
    ]
}

Last updated