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

# Limits

> Get transfer limits

Get minimum and maximum transfer amounts.

## Response

<ResponseField name="min_amount" type="string">
  Minimum transfer amount
</ResponseField>

<ResponseField name="max_amount" type="string">
  Maximum transfer amount
</ResponseField>

<RequestExample>
  ```bash theme={null}
  curl https://api.sw4p.io/sdk/v1/limits \
    -H "X-API-Key: sk_..."
  ```
</RequestExample>

<ResponseExample>
  ```json theme={null}
  {
    "min_amount": "1.00",
    "max_amount": "100000.00"
  }
  ```
</ResponseExample>
