Wallet Supported Networks
curl --request GET \
--url https://public-api.birdeye.so/v1/wallet/list_supported_chain \
--header 'X-API-KEY: <api-key>'import requests
url = "https://public-api.birdeye.so/v1/wallet/list_supported_chain"
headers = {"X-API-KEY": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-KEY': '<api-key>'}};
fetch('https://public-api.birdeye.so/v1/wallet/list_supported_chain', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"success": true,
"data": [
"solana"
]
}{
"success": false,
"message": "Bad request"
}{
"success": false,
"message": "Unauthorized"
}{
"success": false,
"message": "Access Denied"
}{
"success": false,
"message": "Too many requests"
}{
"success": false,
"message": "Internal Server Error"
}Wallet, Networth & PnL
Wallet Supported Networks
Retrieve a list of all wallet supported networks.
GET
/
v1
/
wallet
/
list_supported_chain
Wallet Supported Networks
curl --request GET \
--url https://public-api.birdeye.so/v1/wallet/list_supported_chain \
--header 'X-API-KEY: <api-key>'import requests
url = "https://public-api.birdeye.so/v1/wallet/list_supported_chain"
headers = {"X-API-KEY": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-KEY': '<api-key>'}};
fetch('https://public-api.birdeye.so/v1/wallet/list_supported_chain', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"success": true,
"data": [
"solana"
]
}{
"success": false,
"message": "Bad request"
}{
"success": false,
"message": "Unauthorized"
}{
"success": false,
"message": "Access Denied"
}{
"success": false,
"message": "Too many requests"
}{
"success": false,
"message": "Internal Server Error"
}- Usage Note
- Accessibility
- Chain Supported
List of wallet API supported networks.
- Use this endpoint to discover which wallet networks are currently available before sending wallet portfolio or PnL requests.
- This is a lightweight capability-check endpoint and is useful for client-side network selectors or backend feature gating.
- Standard
- Lite
- Starter
- Premium
- Business
- Enterprise
All chains ⛓️ ✨
Compute Unit ⚙️
Compute Unit ⚙️
- This endpoint consumes
1 CUper request.
Use Cases 💡
Use Cases 💡
- Populate wallet-network dropdowns and supported-chain badges.
- Gate wallet features dynamically instead of hardcoding chain assumptions.
- Check compatibility before routing users into wallet portfolio or PnL flows.
How to Use 🛠️
How to Use 🛠️
- Call this endpoint at app startup or cache the result in your backend.
- Use the returned network list to decide which wallet endpoints to expose for a given chain.
Best Practices ✅
Best Practices ✅
- Cache the supported network list and refresh it occasionally rather than on every page load.
- Use this endpoint as a source of truth when new wallet chains roll out.
Was this page helpful?

