For the complete documentation index, see llms.txt. This page is also available as Markdown.

Deposit

Retrieve the authenticated user's USDC deposit address

Use authenticated account access for this endpoint.

Get Deposit Address

GET /api/deposit/usdc-address

Example request

Use the wallet service host for this endpoint.

get_deposit_address.sh
curl "https://wallet-mutator-view.outpoll.com/api/deposit/usdc-address" \
  -H "Authorization: Bearer <token>"

Response 200 OK

{
  "i": "078dcd98-928d-479f-8110-ff6d27e44de2",
  "a": "0x1234567890abcdef1234567890abcdef12345678"
}
Field
Type
Description

i

string

Asset ID

a

string

Blockchain deposit address

Response 404 Not Found

Address has not been generated yet.

Last updated

Was this helpful?