Skip to main content
GET
/
chains
Chains
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
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

Successful response

chainId
string

Blockchain network ID (e.g. "1" for Ethereum)

key
string

Short identifier used in API requests (e.g. "ethereum")

name
string

Human-readable chain name (e.g. "Ethereum")

symbol
string

Native token symbol (e.g. "ETH")

color
string

Hex color code for UI display (e.g. "#627EEA")

imgSmall
string

URL to small chain icon

imgLarge
string

URL to large chain icon

explorerTokenUrl
string

Block explorer URL template for tokens

explorerTransactionUrl
string

Block explorer URL template for transactions

explorerAddressUrl
string

Block explorer URL template for addresses

blockscoutExplorerAddressUrl
string | null

Blockscout explorer URL for addresses (null if unavailable)

blockscoutExplorerTokenUrl
string | null

Blockscout explorer URL for tokens (null if unavailable)

blockscoutExplorerTransactionUrl
string | null

Blockscout explorer URL for transactions (null if unavailable)

isPortfolioSupported
boolean

Whether portfolio tracking is supported on this chain

isTransactionsSupported
boolean

Whether transaction history is supported on this chain