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

Authorizations

Authorization
string
header
required

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

Response

200 - application/json

Successful response

chainId
integer<int64>
required
Example:

1

explorerUrl
string
required
Example:

"https://explorer.solana.com"

name
string
required
Example:

"Solana"

symbol
string
required
Example:

"SOL"