Returns the project’s USDC deposit address on Base. Send USDC to this address to fund the project wallet. The balance updates automatically when the deposit is confirmed on-chain via Bridge.xyz webhook.
If the project does not yet have a Bridge.xyz wallet, one is created automatically on first call.
Requires a bearer token with the read permission.
Request
This endpoint takes no query parameters or request body.
Response
Unique project identifier.
Blockchain network. Always "base".
EVM wallet address for receiving USDC deposits.
Deposit currency. Always "usdc".
Examples
curl https://api.unwall.xyz/v1/stablecoin/address \
-H "Authorization: Bearer aw_live_xxxxxxxxxxxx"
{
"project_id": "proj_abc123",
"chain": "base",
"address": "0x742d35Cc6634C0532925a3b844Bc9e7595f2bD28",
"currency": "usdc"
}
Only send USDC on the Base network to this address. Sending other tokens or using the wrong network may result in permanently lost funds.