Skip to main content
GET
/
api
/
v1
/
metadata
/
chains
/
{chain_id}
/
info
Get chain info
import requests

url = "https://api.example.com/api/v1/metadata/chains/{chain_id}/info"

response = requests.get(url)

print(response.text)
{
  "result": {
    "unique_chain_id": "<string>",
    "name": "<string>",
    "chain_coin": "<string>",
    "icon_url": "<string>",
    "confirming_threshold": 0,
    "chain_type": "",
    "explorer_tx_url": "",
    "explorer_address_url": "",
    "supported_fee_models": "",
    "supported_address_encodings": "",
    "supported_address_encodings_by_ksr": "",
    "enable_smart_contract_op": false,
    "is_nonce_mandatory": false,
    "is_case_sensitive": false,
    "is_testnet": false,
    "use_memo_to_deposit": false,
    "use_memo_to_withdraw": false,
    "coinbase_maturity": 0,
    "input_utxo_limit": 0,
    "caip2_chain_id": ""
  },
  "success": true,
  "suggestion": "",
  "message": "",
  "meta": {
    "total": 123,
    "offset": 123,
    "limit": 123,
    "has_more": true,
    "after": "<string>",
    "before": "<string>"
  }
}

Headers

X-API-Key
string | null

Path Parameters

chain_id
string
required

The Cobo chain ID to look up (for example, ETH, BASE_ETH, SOL). Obtain supported chain IDs by calling the List supported chains operation (GET /metadata/chains).

Response

Successful Response

result
ChainInfo · object
required

Single chain info from get_chains_by_chain_coins.

All optional fields use str | None because the upstream Blockchain API may return null for any non-essential attribute.

success
boolean
default:true
suggestion
string
default:""
message
string
default:""
meta
PaginationMeta · object

Pagination metadata for list responses.

Supports both legacy offset-based and cursor-based pagination. Cursor fields (has_more, after, before) are populated for cursor-paginated endpoints. Legacy fields (offset, limit) are populated when the caller uses the deprecated offset parameter.