Skip to main content
GET
/
v1
/
chains
cURL
curl --request GET \
  --url https://api.faraday.range.org/v1/chains
[
  {
    "aliases": [
      "ethereum"
    ],
    "is_testnet": false,
    "kind": "evm",
    "label": "Ethereum",
    "slug": "eth"
  }
]

Response

200 - application/json

List of supported chains

aliases
string[]
required

Alternative strings accepted for this network.

Note: Any alias listed here will also parse correctly in API requests wherever a network slug is expected.

Example:
["ethereum"]
is_testnet
boolean
required

Indicates whether this network is a testnet.

Example:

false

kind
enum<string>
required

Network family: evm, solana, or cosmos.

Available options:
evm,
svm,
cosmos
label
string
required

Human-readable name for the network.

Example:

"Ethereum"

slug
string
required

Canonical slug for this blockchain network.

Note: Use this value (or one of the aliases) as the from_chain or to_chain parameter when submitting quote or transaction requests.

Example:

"eth"