List supported blockchains
Returns all supported blockchains (informational). No authentication required.
GET
/v1/blockchainsPublicResponse
200 OK
| Field | Type | Description |
|---|---|---|
idoptional | integer | Internal blockchain ID. |
idStringoptional | string | Network id-string, e.g. ETHEREUM, ARBITRUM (the suffix of an asset id-string). |
evmChainIdoptional | integernull | EIP-155 chain ID; null for non-EVM chains. |
chainNameoptional | string | Human-readable chain name. |
requiredConfirmationsoptional | integer | Block confirmations required for a payment to reach finality. |
networkFeeUsdoptional | string | Flat network-fee estimate in USD (decimal string). |
Request
curl https://api.suward.com/v1/blockchainsconst response = await fetch('https://api.suward.com/v1/blockchains', { method: 'GET',});const data = await response.json();package main import ( "fmt" "io" "net/http") func main() { req, _ := http.NewRequest("GET", "https://api.suward.com/v1/blockchains", nil) res, _ := http.DefaultClient.Do(req) defer res.Body.Close() data, _ := io.ReadAll(res.Body) fmt.Println(string(data))}import requests, os response = requests.get( 'https://api.suward.com/v1/blockchains',)data = response.json()Response · 200 OK
[ {}]Illustrative values. Every field, type and status on this page is generated from the OpenAPI specification.
Something unclear? payments@suward.com — we treat every integration question as a documentation defect.