메인 콘텐츠로 건너뛰기
GET
/
v2
/
blockchain
블록체인 - 목록
curl --request GET \
  --url https://api.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>
필수

블록체인 체인 ID

예시:

1

explorerUrl
string
필수

블록체인 익스플로러 URL

예시:

"https://explorer.solana.com"

name
string
필수

블록체인 표시 이름

예시:

"Solana"

symbol
string
필수

블록체인 티커 심볼

예시:

"SOL"