/api/v1/wallet/deposit-address wallet:deposit Where an end-user sends USDC (on Base) to fund custodial purchases. Returns a dedicated per-user address when one is provisioned (dedicated: true, credited automatically), otherwise the shared deposit address with dedicated: false and a note — attribute shared-address deposits per its instructions.
POST /api/v1/wallet/deposit-address write These inputs are shared across all docs pages, so an id entered here carries over.
{
"external_user_id": "demo-explorer"
}Not run yet. Press Run to make a live call against https://service.rip.fun (through this demo's server-side proxy; the API key never reaches the browser).
curl -X POST 'https://service.rip.fun/api/v1/wallet/deposit-address' \
-H 'X-API-Key: rip_…' \
-H 'Content-Type: application/json' \
-d '{"external_user_id":"demo-explorer"}' | Field | Type | Required | Description |
|---|---|---|---|
external_user_id / wallet_address | string | yes | Which end-user the deposit credits |
data)| Field | Description |
|---|---|
chain / address / currency | Where to send funds — currency is always "USDC" |
dedicated | true = per-user address, credited automatically; false = shared fallback address (see note) |
| Status | Code | When |
|---|---|---|
| 400 | missing_user_identifier | neither identifier given |
See Errors for the response envelope and the full code list.