curl --request GET \
--url https://api.octav.fi/v1/chains \
--header 'Authorization: Bearer <token>'[
{
"chainId": "<string>",
"key": "<string>",
"name": "<string>",
"symbol": "<string>",
"color": "<string>",
"imgSmall": "<string>",
"imgLarge": "<string>",
"explorerTokenUrl": "<string>",
"explorerTransactionUrl": "<string>",
"explorerAddressUrl": "<string>",
"blockscoutExplorerAddressUrl": "<string>",
"blockscoutExplorerTokenUrl": "<string>",
"blockscoutExplorerTransactionUrl": "<string>",
"isPortfolioSupported": true,
"isTransactionsSupported": true
}
]curl --request GET \
--url https://api.octav.fi/v1/chains \
--header 'Authorization: Bearer <token>'[
{
"chainId": "<string>",
"key": "<string>",
"name": "<string>",
"symbol": "<string>",
"color": "<string>",
"imgSmall": "<string>",
"imgLarge": "<string>",
"explorerTokenUrl": "<string>",
"explorerTransactionUrl": "<string>",
"explorerAddressUrl": "<string>",
"blockscoutExplorerAddressUrl": "<string>",
"blockscoutExplorerTokenUrl": "<string>",
"blockscoutExplorerTransactionUrl": "<string>",
"isPortfolioSupported": true,
"isTransactionsSupported": true
}
]Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Successful response
Blockchain network ID (e.g. "1" for Ethereum)
Short identifier used in API requests (e.g. "ethereum")
Human-readable chain name (e.g. "Ethereum")
Native token symbol (e.g. "ETH")
Hex color code for UI display (e.g. "#627EEA")
URL to small chain icon
URL to large chain icon
Block explorer URL template for tokens
Block explorer URL template for transactions
Block explorer URL template for addresses
Blockscout explorer URL for addresses (null if unavailable)
Blockscout explorer URL for tokens (null if unavailable)
Blockscout explorer URL for transactions (null if unavailable)
Whether portfolio tracking is supported on this chain
Whether transaction history is supported on this chain
Was this page helpful?