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

# Get amount limits

> Returns the minimum and maximum USD amounts that your account is permitted to submit to `GET /api/payouts/quote` and `POST /api/payouts/transfer`.

A `null` value means no limit is configured for that bound. Both endpoints return a `400` error if the submitted amount falls outside these limits.

**Rate limit:** 60 requests/minute.



## OpenAPI

````yaml /openapi.json get /api/payouts/amount-limits
openapi: 3.0.3
info:
  title: MW Payouts API
  version: 1.0.0
  description: >-
    The MW Payouts API lets you programmatically retrieve exchange-rate quotes,
    calculate platform fees, and submit USDC-to-fiat payout transfers on behalf
    of your account.


    All requests must be authenticated with an API key obtained from the
    **Developers** section of the dashboard. API keys are for **server-side use
    only** — never embed them in client-side code.
  contact:
    name: MW Support
    email: support@madhousewallet.com
servers:
  - url: https://business.madhousewallet.com
    description: Production
security:
  - BearerAuth: []
tags:
  - name: Payouts
    description: USDC-to-fiat payout operations
  - name: Recipients
    description: Payout recipient management
paths:
  /api/payouts/amount-limits:
    get:
      tags:
        - Payouts
      summary: Get amount limits
      description: >-
        Returns the minimum and maximum USD amounts that your account is
        permitted to submit to `GET /api/payouts/quote` and `POST
        /api/payouts/transfer`.


        A `null` value means no limit is configured for that bound. Both
        endpoints return a `400` error if the submitted amount falls outside
        these limits.


        **Rate limit:** 60 requests/minute.
      operationId: getAmountLimits
      responses:
        '200':
          description: Amount limits for the authenticated account
          content:
            application/json:
              schema:
                type: object
                required:
                  - min_amount
                  - max_amount
                properties:
                  min_amount:
                    type: number
                    description: >-
                      Minimum USD amount allowed per transfer. null = no minimum
                      configured.
                    example: 10
                    nullable: true
                  max_amount:
                    type: number
                    description: >-
                      Maximum USD amount allowed per transfer. null = no maximum
                      configured.
                    example: 50000
                    nullable: true
              example:
                min_amount: 10
                max_amount: 50000
        '401':
          description: Missing or invalid authentication
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '429':
          description: Rate limit exceeded (60 requests/minute per key)
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    Error:
      type: object
      properties:
        error:
          type: string
          description: Human-readable error message
      required:
        - error
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: >-
        Pass your API key as a Bearer token: `Authorization: Bearer
        mw_live_<keyId>_<secret>`

````