List wallet deposit addresses
List deposit addresses for a wallet. Filter by status or network.
To see inbound payments that arrived at these addresses, use GET /v1/transactions?type=deposit&source_type=deposit_address.
Filtering
status is optional. When provided it must be one of pending, active,
frozen, or disabled, and the result is narrowed to deposit addresses with
that status. Omit it to return every status.
Pagination
page is 1-indexed (default 1, max 1_000_000). per_page defaults to 50
(max 200). meta.has_more is true when more results exist beyond the
current page.
Errors
400 invalid_input— the path id does not start withwal_,statusis not a recognised value, orpage/per_pageis non-numeric or outside the allowed range.404 not_found— the wallet does not exist in this integration.
Authorizations
API key issued during merchant onboarding.
Path Parameters
Wallet external id (wal_…).
[^\/#\?]+?"wal_01HXYZABC1234567890ABCDEFG"
Query Parameters
Filter to deposit addresses with this status. Omit to return all.
pending, active, frozen, disabled "active"
1-indexed page number.
1 <= x <= 10000001
Page size (1–200).
1 <= x <= 20050
Response
Deposit addresses fetched successfully