GET /chains

GET /chains | Auth: None

List all supported blockchain networks. This endpoint is public and does not require authentication.

Request

No parameters required.

Response

Status: 200 OK

Fields

Field
Type
Description

success

boolean

Always true.

chains

array

List of supported chains.

chains[].id

number

Numeric chain ID (EVM chain ID, or internal ID for non-EVM chains).

chains[].key

string

Short lowercase identifier used in other endpoints (e.g., "base", "solana").

chains[].name

string

Human-readable chain name.

chains[].native_token

string

Symbol of the chain's native gas token.

chains[].type

string

Chain type: "evm" or "solana".

Example

Errors

This endpoint has no endpoint-specific errors. Standard server errors (500) may still occur.

Code Examples

curl

Python

TypeScript

Last updated