> ## Documentation Index
> Fetch the complete documentation index at: https://docs.meld.io/llms.txt
> Use this file to discover all available pages before exploring further.

# 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.



## OpenAPI

````yaml /openapi/networkpartner-20260203.json get /network-partner/supported/fiat-limits
openapi: 3.1.0
info:
  title: Network Partners
  version: '2026-02-03'
servers:
  - url: https://api.meld.io
security: []
paths:
  /network-partner/supported/fiat-limits:
    get:
      tags:
        - Supported
      summary: Search supported provider fiat limits
      description: >-
        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.
      operationId: list-supported-fiat-limits
      parameters:
        - description: Provider category
          example: CRYPTO_ONRAMP
          name: category
          in: query
          schema:
            $ref: '#/components/schemas/Category'
        - description: Country code
          example: US
          name: country
          in: query
          schema:
            type: string
        - description: Fiat currency code
          example: USD
          name: currencyCode
          in: query
          schema:
            type: string
        - description: Comma-separated partner ids
          example: BANXA,MOONPAY
          name: partners
          in: query
          schema:
            type: string
        - description: Canonical payment method code
          example: CREDIT_DEBIT_CARD
          name: paymentMethod
          in: query
          schema:
            type: string
        - description: Payment method type
          example: CARD
          name: paymentType
          in: query
          schema:
            $ref: '#/components/schemas/PaymentType'
        - description: >-
            Country subdivision code used as a filter only. Supported for US and
            CA only.
          example: US-NY
          name: subdivision
          in: query
          schema:
            type: string
        - description: >-
            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.
          name: Meld-Account-Id
          in: header
          schema:
            type: string
      responses:
        '200':
          description: Provider fiat limits
          content:
            application/json:
              examples:
                supportedProviderFiatLimits:
                  summary: Matching provider fiat limits
                  value:
                    fiatLimits:
                      - provider: BANXA
                        category: CRYPTO_ONRAMP
                        countryCode: US
                        currencyCode: USD
                        paymentMethod: CREDIT_DEBIT_CARD
                        min: 10
                        max: 10000
              schema:
                $ref: '#/components/schemas/Response'
components:
  schemas:
    Category:
      type: string
      enum:
        - CRYPTO_ONRAMP
        - CRYPTO_OFFRAMP
        - CRYPTO_TRANSFER
        - BANK_LINKING
        - FIAT_PAYMENTS
        - CRYPTO_VIRTUAL_ACCOUNT_ONRAMP
        - CRYPTO_VIRTUAL_ACCOUNT_OFFRAMP
        - CUSTOMER_KYC
        - CRYPTO_ONRAMP_SWAP
        - CRYPTO_OFFRAMP_SWAP
      description: Categories of functionality offered by a service provider
    PaymentType:
      type: string
      enum:
        - BANK_TRANSFER
        - CARD
        - CASH
        - EXCHANGE
        - LOCAL
        - MOBILE_WALLET
      description: Enumeration of payment method types supported by the platform
    Response:
      type: object
      description: Provider fiat limit response
      properties:
        fiatLimits:
          type: array
          items:
            $ref: '#/components/schemas/ProviderFiatLimit'
          description: List of provider fiat limits
    ProviderFiatLimit:
      type: object
      description: Provider fiat amount limits for a payment method
      properties:
        provider:
          type: string
          examples:
            - BANXA
          description: Provider identifier
        category:
          type: string
          examples:
            - CRYPTO_ONRAMP
          description: Provider category
          allOf:
            - $ref: '#/components/schemas/Category'
        countryCode:
          type: string
          examples:
            - US
          description: Country code
        currencyCode:
          type: string
          examples:
            - USD
          description: Fiat currency code
        paymentMethod:
          type: string
          examples:
            - CREDIT_DEBIT_CARD
          description: Canonical payment method code
        min:
          type: number
          examples:
            - 10
          description: Minimum amount
        max:
          type: number
          examples:
            - 10000
          description: Maximum amount

````