Documentation Index
Fetch the complete documentation index at: https://docs.unwall.xyz/llms.txt
Use this file to discover all available pages before exploring further.
Returns the current USDC balance, spending totals, and wallet address for the project linked to the authenticated API token. All monetary values are in micro-USDC (1 USDC = 1,000,000).
Requires a bearer token with the read permission.
Request
This endpoint takes no query parameters or request body.
Response
Unique project identifier.
Available USDC balance in micro-USDC.
Pending USDC balance in micro-USDC. Funds in transit that are not yet available.
Cumulative USDC funded into this project in micro-USDC.
Cumulative USDC spent from this project in micro-USDC.
Bridge wallet address on Base for receiving USDC deposits. null if no wallet has been created yet.
Examples
curl https://api.unwall.xyz/v1/balance \
-H "Authorization: Bearer aw_live_xxxxxxxxxxxx"
{
"project_id": "proj_abc123",
"currency": "usdc",
"available": 5000000,
"pending": 0,
"total_funded": 5000000,
"total_spent": 0,
"wallet_address": "0x742d35Cc6634C0532925a3b844Bc9e7595f2bD28"
}