# List withdrawal wallets This endpoint is used to retrieve a complete list of all approved withdrawal wallets associated with an organization. These are destinations where an organization can send their withdrawals. Endpoint: GET /v1/brokerage/{orgId}/withdrawal_addresses Version: v1.0.0 Security: bearerAuth ## Path parameters: - `orgId` (string, required) ## Query parameters: - `page` (number) Example: 1 - `limit` (number) Example: 10 - `verified` (boolean,null) - `status` (string,null) - `coinNetwork` (string,null) - `coin` (string,null) ## Response 200 fields (application/json): - `status` (string) Enum: "success", "error" - `data` (array,null) - `data.id` (string) Unique identifier of the withdrawal wallet Example: "2697eff1-ac30-41db-94b7-d615133a5c9e" - `data.name` (string) Wallet name Example: "Duplicate USDT 6" - `data.coinId` (string) Unique identifier of the coin associated with the wallet Example: "3b3f759c-d3fa-46fd-80c5-10c1bc244e83" - `data.coinName` (string) Symbol of the stablecoin Example: "USDT" - `data.coinNetworkId` (string) Unique identifier of the blockchain network associated with the coin Example: "e4a800c9-ddad-411d-82da-6a8680ce6618" - `data.coinNetworkName` (string) Name of the blockchain network used for withdrawals Example: "Ethereum" - `data.address` (string) Cryptocurrency wallet address to which funds will be withdrawn Example: "0x2205844f0b80798F0e187c260753191eb668a495" - `data.status` (string) Current verification status of the wallet Enum: "Verified", "Pending", "Rejected" - `data.createdAt` (string) UTC Timestamp when the withdrawal wallet was created Example: "2025-01-24T11:51:11.604Z" - `data.updatedAt` (string) UTC Timestamp when the withdrawal wallet was last updated Example: "2025-01-24T11:52:08.299Z" - `data.verified` (boolean) Boolean indicating whether the wallet has been verified Example: true - `data.comments` (string,null) Optional comments or notes regarding the wallet (e.g., reason for rejection) - `message` (string) Example: "Data fetched successfully" - `meta` (object) - `meta.pagination` (object) - `meta.pagination.total` (number) Example: 10 - `meta.pagination.start` (number) Example: 1 - `meta.pagination.end` (number) Example: 2 - `meta.pagination.page` (number) Example: 1 - `meta.pagination.limit` (number) Example: 2 ## Response 400 fields (application/json): - `status` (string) Example: "error" - `message` (string) Example: "Data fetched successfully" ## Response 401 fields (application/json): - `status` (string) Example: "error" - `message` (string) Example: "Data fetched successfully" ## Response 500 fields (application/json): - `status` (string) Example: "error" - `message` (string) Example: "Data fetched successfully"