Blockchains

Get a blockchain by id

get
Authorizations
Path parameters
idstringRequired
Responses
200
A blockchain
application/json
get
GET /v1/blockchains/{id} HTTP/1.1
Host: 
Authorization: Bearer Bearer
Accept: */*
200

A blockchain

{
  "id": "text",
  "blockchainEcosystem": {},
  "nativeCurrency": {},
  "name": "text",
  "isMainnet": true,
  "rpcUrl": "text",
  "iconUrl": "text",
  "explorer": {},
  "indexer": {},
  "metadata": {}
}

Get all blockchains

get
Authorizations
Responses
200
A list of available blockchains
application/json
get
GET /v1/blockchains HTTP/1.1
Host: 
Authorization: Bearer Bearer
Accept: */*
200

A list of available blockchains

[
  {
    "id": "text",
    "blockchainEcosystem": {},
    "nativeCurrency": {},
    "name": "text",
    "isMainnet": true,
    "rpcUrl": "text",
    "iconUrl": "text",
    "explorer": {},
    "indexer": {},
    "metadata": {}
  }
]