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

Get crypto deposit limits

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

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

Values are returned in both crypto-native and USD terms, already tightened by your resolved limit rules.

The deposit leg is the crypto you send.

The payout leg is the USD credited to your balance.

Request query params type:

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

Request URL example:

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

Response type:

Response example:

Last updated