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

Get crypto withdrawal limits

[GET] /api/v2/merchant-balance/withdrawal/limits

Returns the authoritative min and max values for a withdrawal to the selected (network, asset) pair.

Values are already tightened by your resolved limit rules.

The deposit leg is the USD deducted from your balance.

The payout leg is the crypto you receive.

Request query params type:

type QueryParams = {
  network: string;   // e.g. "POLYGON"
  asset: string;     // e.g. "USDC"
}

Request URL example:

GET /api/v2/merchant-balance/withdrawal/limits?network=POLYGON&asset=USDC

Response type:

Response example:

Last updated