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

# List default currency limits

> Returns global default limits for canonical fiat and crypto currencies. This endpoint returns the global canonical catalog. Basic Auth and `Meld-Account-Id` do not change the result.



## OpenAPI

````yaml /openapi/networkpartner-20260203.json get /network-partner/defaults/limits
openapi: 3.1.0
info:
  title: NETWORK PARTNER
  version: '2026-02-03'
  description: ''
servers:
  - url: https://api-sb.meld.io
    description: Meld API sandbox
  - url: https://api.meld.io
    description: Meld API production
security: []
tags:
  - name: Supported
    description: ''
paths:
  /network-partner/defaults/limits:
    get:
      tags:
        - Supported
      summary: List default currency limits
      description: >-
        Returns global default limits for canonical fiat and crypto currencies.
        This endpoint returns the global canonical catalog. Basic Auth and
        `Meld-Account-Id` do not change the result.
      operationId: list-default-currency-limits
      parameters:
        - name: Meld-Version
          in: header
          description: Dated API version to use for this request, e.g. `2026-02-03`.
          required: false
          schema:
            type: string
            example: '2026-02-03'
      responses:
        '200':
          description: Default currency limits
          content:
            application/json:
              examples:
                defaultCurrencyLimits:
                  summary: Default currency limits
                  value:
                    - currencyCode: USD
                      defaultValue: 100
                      min: 10
                      max: 10000
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/CurrencyLimit'
        '400':
          description: Request rejected - see the code and message
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: Missing or invalid credentials
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '403':
          description: The credentials are valid but not for this account or provider scope
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '405':
          description: The path exists but not for this method
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '406':
          description: No representation available for the requested Accept header
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '415':
          description: Request body media type not supported
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '500':
          description: Unexpected failure in this service
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      security: []
components:
  schemas:
    CurrencyLimit:
      description: Default currency limit
      type: object
      properties:
        currencyCode:
          type: string
          description: Currency code
          examples:
            - EUR
        defaultValue:
          type: number
          description: Default amount
          examples:
            - 100
        min:
          type: number
          description: Minimum amount
          examples:
            - 10
        max:
          type: number
          description: Maximum amount
          examples:
            - 14900
    ErrorResponse:
      type: object
      description: The error body every failed request on this service returns.
      required:
        - code
        - message
        - timestamp
      properties:
        code:
          type: string
          description: What went wrong, as a stable value to branch on.
          enum:
            - BAD_REQUEST
            - CONFLICT
            - ENCRYPTION_ERROR
            - FORBIDDEN
            - JSON_PROCESSING_ERROR
            - METHOD_NOT_ALLOWED
            - UNSUPPORTED_MEDIA_TYPE
            - NOT_ACCEPTABLE
            - NOT_FOUND
            - NOT_SUPPORTED
            - SERVICE_PROVIDER_ERROR
            - UNAUTHORIZED
            - UNEXPECTED_ERROR
        message:
          type: string
          description: >-
            What happened, in words, naming the value that was rejected or not
            found.
        requestId:
          type: string
          description: >-
            The request's id when one reached this service. Quote it in a
            support request. Absent when nothing upstream set one.
        timestamp:
          type: string
          format: date-time
          description: >-
            When the failure occurred. ISO 8601, UTC
            (`YYYY-MM-DDThh:mm:ss.sss+00:00`).

````