# List deposits This endpoint is used to get a comprehensive view of all deposits (both fiat and stablecoins) done by an organization. Endpoint: GET /v1/brokerage/{orgId}/deposits Version: v1.0.0 Security: bearerAuth ## Path parameters: - `orgId` (string, required) ## Query parameters: - `page` (number) Example: 1 - `limit` (number) Example: 10 - `currency` (string) Example: "USD" ## Response 200 fields (application/json): - `status` (string) Enum: "success", "error" - `data` (array,null) - `data.id` (string) Unique identifier for the deposit record Example: "a9504caf-6888-409c-b841-da5127334070" - `data.orgId` (string) Unique identifier of the organization associated with the deposit Example: "a9504caf-409c-b841-6888-da5127334070" - `data.currency` (string) Currency symbol used for the deposit Example: "USDC" - `data.amount` (number) Amount deposited in the specified currency Example: 10 - `data.status` (string) Current status of the deposit — either PENDING or COMPLETED Enum: "PENDING", "COMPLETED" - `data.network` (string) Blockchain network symbol where the deposit was made Example: "ETH" - `data.createdAt` (string) UTC Timestamp when the deposit record was created Example: "2024-02-03T08:04:12.045Z" - `data.transactionHash` (string,null) Blockchain transaction hash associated with the deposit, if available - `data.comments` (string,null) Optional comments or notes associated with the deposit - `data.referenceId` (string,null) External reference identifier for tracking the deposit, if applicable - `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"