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

Get crypto deposits

[GET] /api/v2/merchant-balance/deposits

Returns a paginated list of your crypto deposit orders, newest first.

Request query params type:

type QueryParams = {
  page?: number;    // default 1
  limit?: number;   // default 50, max 200
}

Request URL example:

GET /api/v2/merchant-balance/deposits?page=1&limit=50

Response type:

Response example:

Last updated