Skip to main content
POST
/
api
/
zerion
/
chains
/zerion/chains
curl --request POST \
  --url https://api.anysite.io/api/zerion/chains \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "count": 2,
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "ZerionChainInfo",
    "name": "<string>",
    "image": "<string>",
    "is_testnet": true,
    "chain_id": 123,
    "explorer_name": "<string>",
    "explorer_url": "<string>",
    "base_asset_symbol": "<string>",
    "base_asset_name": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
count
integer
required

Max number of supported networks to return

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
@type
string
default:ZerionChainInfo
name
string | null
image
string | null
is_testnet
boolean | null
chain_id
integer | null
explorer_name
string | null
explorer_url
string | null
base_asset_symbol
string | null
base_asset_name
string | null