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

βš™οΈTransaction limits

Buy limits are fiat amounts. Sell limits are crypto amounts. Limits can vary by provider, region, currency, asset, network, and payment method.

Aggregated limits

Use aggregated limits for initial UI boundaries, not final provider validation.

curl 'https://api.coindisco.com/api/white-label/v1/aggregated-limits/' \
  --header 'Partner-Api-Key: pk_test_YOUR_PUBLIC_KEY'
{
  "version": 1,
  "buy": {
    "3": {
      "min_buy": 1,
      "max_buy": 30000
    }
  },
  "sell": {
    "2": {
      "min_sell": 0.00193,
      "max_sell": 62.768
    }
  }
}

The keys are resource IDs: currency IDs for buy and cryptocurrency IDs for sell.

Payment methods with limits

Use type=buy or type=sell.

Provider-specific limits

Add service=5 to evaluate one provider.

Always run final validation through quote search. A limit response does not guarantee that the complete combination is currently quoteable.

Last updated