WALLETS API
Query token balances for a wallet across multiple networks in a single request. This endpoint is priced at 0.0004 USD per settled call.
POST /balances
/balancesMethod
POST
Description
Returns token balances grouped by network for the supplied wallet address.
Settlements
/, /solana, /base
Price
0.0004 USD
Request body
walletAddress
string
yes
Checksummed address.
networks
array of integers
yes
At least one numeric network identifier.
Example body:
{
"walletAddress": "0x742d35Cc6634C0532925a3b8D4C9db96C4b4d8b6",
"networks": [1, 137]
}Example request
curl -X POST "$NEURA_BASE_URL/balances" \
-H "Content-Type: application/json" \
-H "X-402-Invoice: $INVOICE" \
-H "X-402-Payment-Proof: $PROOF" \
-d '{"walletAddress":"0x742d35Cc6634C0532925a3b8D4C9db96C4b4d8b6","networks":[1,137]}'Response snapshot
Validation rules
walletAddressmust be provided; missing values return400with"walletAddress is required".networksmust be a non-empty array of integers; values outside Neura’s supported list return a400error.Rate limit breaches produce
429with aretryAfterhint.
See the Data Schemas page for a detailed breakdown of the response shape.
Last updated
