Fonbnk Docs
  • Intro
  • Integration Guide
  • On-ramp
    • How it works
    • URL Parameters
    • Webhook
  • Off-ramp
    • How it works
    • URL Parameters
    • Webhook
  • Reference
    • Servers
    • Signing requests
    • Endpoints
      • On-ramp
        • Assets
        • Order
        • Orders
        • Price
        • Providers
        • Limits
      • Off-ramp
        • Order
        • Orders
        • Best offer
        • Limits
        • Countries
        • Wallets
        • Validate fields
        • Create order
        • Confirm order
      • Util
        • Check address
        • Assets
      • Kyc
        • State
        • Submit
    • Specification
Powered by GitBook
On this page
  1. Reference
  2. Endpoints
  3. On-ramp

Limits

PreviousProvidersNextOff-ramp

Get limits

get

Returns minimum and maximum amount of order in crypto and local currency and applied fees.

Authorizations
Query parameters
networkstring · enumRequiredPossible values:
assetstring · enumOptionalPossible values:
countrystringRequired
providerstring · enumRequiredPossible values:
carrierIdstringOptional
Responses
200
Successful response
application/json
get
GET /api/pay-widget-merchant/limits HTTP/1.1
Host: sandbox-api.fonbnk.com
x-client-id: YOUR_API_KEY
Accept: */*
200

Successful response

{
  "cryptoLimits": {
    "min": 1,
    "max": 200
  },
  "localCurrencyLimits": {
    "type": "open_range",
    "min": 1702,
    "max": 343959,
    "step": 1,
    "withCents": false
  },
  "fees": {
    "feePercent": 2.5,
    "fonbnkFeePercent": 2.5,
    "partnerFeePercent": 0,
    "gasAmount": 0,
    "minFee": 0.01
  }
}