跳转到主要内容
GET
/
v2
/
blockchain
区块链 - 列表
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"
  }
]

授权

Authorization
string
header
必填

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

响应

200 - application/json

成功响应

chainId
integer<int64>
必填
示例:

1

explorerUrl
string
必填
示例:

"https://explorer.solana.com"

name
string
必填
示例:

"Solana"

symbol
string
必填
示例:

"SOL"