Blockchain codes
What is this endpoint for?
This endpoint retrieves the list of blockchains and associated codes.
Endpoint
https://reference-data-api.kaiko.io/v1/blockchains
Parameters
No parameters supported
Fields
Field
Description
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
Was this helpful?