Search supported provider fiat limits
Searches provider-supplied fiat amount limits across live providers. Returns only loaded provider fiat limit rows; default currency fallback limits are not included. When both paymentMethod and paymentType are provided, paymentMethod takes precedence. Provider scope rules:
- No Basic Auth and no Meld-Account-Id: results come from the global dataset.
- Basic Auth only: results are restricted to the authenticated identity's providers claim.
- Meld-Account-Id only: results are restricted to providers configured for that account.
- Both Basic Auth and Meld-Account-Id: results are restricted to the intersection of both provider sets.
- Explicit partner filters are intersected with the resolved provider scope.
Explicit partners filtering is intersected with the resolved provider scope. If the effective provider scope contains no providers, this collection endpoint returns 200 with an empty result.
Query parameters
Categories of functionality offered by a service provider
Provider category
Country code
Fiat currency code
Comma-separated partner ids
Canonical payment method code
Enumeration of payment method types supported by the platform
Payment method type
Country subdivision code used as a filter only. Supported for US and CA only.
Headers
Optional. Base58 encoded account id. Restricts results to providers configured for the account. If Basic Auth is also present, the effective scope is the intersection of authenticated providers and account providers.
Response
Provider fiat limits
Example response
{
"fiatLimits": [
{
"provider": "BANXA",
"countryCode": "US",
"currencyCode": "USD",
"paymentMethod": "CREDIT_DEBIT_CARD",
"min": 10,
"max": 10000
}
]
}