GET
/
v1
/
blockchain
Blockchain - List
curl --request GET \
  --url https://api-dex.chainstream.io/v1/blockchain \
  --header 'Authorization: Bearer <token>'
[
  {
    "symbol": "SOL",
    "name": "Solana",
    "explorerUrl": "https://explorer.solana.com",
    "chainId": 1
  }
]

Authorizations

Authorization
string
header
required

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

Response

200 - application/json
symbol
string
required

Blockchain symbol

Example:

"SOL"

name
string
required

Blockchain name

Example:

"Solana"

explorerUrl
string
required

Blockchain explorer URL

Example:

"https://explorer.solana.com"

chainId
number
required

Blockchain chain ID

Example:

1