Wallet API
Supported Chains
Get Supported Chains

Get Supported Chain - Wallet & Data API

Get Supported Chains - Returns a list of all chains supported in Wallet API

Get Supported Chains - [Value: 367CU]
Returns a list of all chains supported in Data API
GET https://lb.drpc.live/lambda/{key}/v1/chains
Use cases

Use cases

  • Retrieve the list of all supported blockchain networks
  • Check if a specific chain is supported before making requests
Constraints

Constraints

  • The response reflects only currently supported chains
  • No filtering parameters are supported
Get started
Unlock Access to 100+ chains
Boost your app's speed and reliability with dRPC - get your access API key

Language

Request
Examples
curl --request GET \
  --url https://lb.drpc.live/lambda/{key}/v1/chains \
  --header 'accept: application/json'
Copy
Response
200
{
  "next_page_token": "arbitrum",
  "data": {
    "chains": [
      {
        "type": "chain",
        "id": "arbitrum",
        "id_numeric": 42161,
        "name": "Arbitrum",
        "native_token_id": "eth"
      }
    ]
  }
}
Copy

Path params

Parameters
keystring
[Required] Your dRPC API key

Query params

Parameters
page_tokenstring
Token to retrieve next page.
limitinteger
[Required] Amount of items to be retrieved.

Request params

ParametersThis method does not accept any parameters.

Response

200

Response params

object
next_page_tokenstring
Token to retrieve next page.
dataobject
[Required] Chains data
object
chainsarray_of_objects
[Required] list of supported chains
object
typestring
[Required] Item type
idstring
[Required] id of a chain in Wallet API
id_numericinteger
Numeric id of the chain
namestring
[Required] Community name of the chain
native_token_idstring
[Required] token_id of a chain native currency in Wallet API