GET
/
v1
/
wallet
/
rpc
/
chains
Get supported chains
curl --request GET \
  --url https://api.withconvexity.com/v1/wallet/rpc/chains \
  --header 'Authorization: Bearer <token>'
{
  "status": true,
  "message": "Supported chains retrieved",
  "data": [
    {
      "chainType": "EVM",
      "name": "Base",
      "chainId": 8453,
      "network": "MAINNET"
    },
    {
      "chainType": "EVM",
      "name": "Base Sepolia",
      "chainId": 84532,
      "network": "TESTNET"
    },
    {
      "chainType": "SOLANA",
      "name": "Solana",
      "chainId": null,
      "network": "MAINNET"
    }
  ]
}

Authorizations

Authorization
string
header
required

OAuth 2.0 access token from Auth-Edge.

Response

200 - application/json

OK

The response is of type object.