List withdrawal accounts
Returns the verified withdrawal accounts on your account — fiat bank accounts and stablecoin wallets.
Authorizations
ES256-signed JWT bearer token, single-use, 60-second TTL. See Authentication for how to mint one.
ES256 signature over the request, bound to the bearer JWT. Required on every v3 request. See Authentication → Request signing.
Headers
Optional, client-supplied correlation ID for this request. Echoed verbatim on the response when supplied; the response omits it when the request did not supply one. Distinct from X-Trace-Id (server-generated, always present). See Metadata & tracing.
"my-req-abc-123"
Query Parameters
Max records to return. Range 1–100. Default 25.
1 <= x <= 10050
An opaque cursor string from a previous response's pagination.nextCursor. Fetches the page of records older than the cursor's position (lists are sorted newest-first). Cursors are opaque — pass them back verbatim, do not decode or modify them. Mutually exclusive with endingBefore.
"eyJjcmVhdGVkQXQiOiIyMDI2LTAyLTA3VDEzOjAyOjI5LjE0N1oiLCJpZCI6IjZhOGRmZjAzLWFiY2QtNDEyMy1iYWNkLTAxMjM0NTY3ODlhYiJ9"
An opaque cursor string from a previous response's pagination.prevCursor. Fetches the page of records newer than the cursor's position. Cursors are opaque — pass them back verbatim, do not decode or modify them. Mutually exclusive with startingAfter.
"eyJjcmVhdGVkQXQiOiIyMDI2LTAyLTA4VDA5OjE1OjAwLjAwMFoiLCJpZCI6ImExMmJjMzQ1LWQ2ZTctNDg5MC1iY2RlLWZlZGNiYTk4NzY1NCJ9"
Restrict results to crypto or fiat accounts. Omit to return both.
CRYPTO, FIAT Filter by verification state. true returns verified accounts only.
true, false Filter by account lifecycle status.
PENDING, ACTIVE, ARCHIVED, REJECTED, DEACTIVATED, ADDITIONAL_ACTION_NEEDED Filter by a supported currency code. Crypto: USDC/USDT/EURC; fiat: USD/EUR/GBP/...
Filter by chain name. Must be uppercase. Crypto-only — supplying it excludes all fiat results, and combining it with assetType=FIAT is rejected with a 400.
Response
List of verified withdrawal accounts.
A paginated collection of verified withdrawal account resources.
Withdrawal account resources returned in this page.
Pagination envelope for unbounded list responses. hasNext / hasPrev are the explicit "is there another page in this direction" booleans; nextCursor / prevCursor are the opaque cursors you pass back verbatim via the startingAfter / endingBefore query parameters. When hasNext is false the nextCursor is null (you are on the last page); likewise hasPrev / prevCursor on the first page.