> For the complete documentation index, see [llms.txt](https://docs.localramp.co/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.localramp.co/payments-on-ramp/get-limits.md).

# Get Limits

Before initializing a pay transaction, you'll need to know the maximum and minimum amounts possible for a sender\_currency pair. Make a **GET** request to the following endpoint.

{% code overflow="wrap" %}

```url
https://api.localramp.co/v1/transaction/pay/limits?currency=ZMW
```

{% endcode %}

The request takes `currency` as query params.&#x20;

With the following header

```
x-auth-token: <SECRET_KEY>
```

If the API call is successful, LocalRamp returns the following response:

```javascript
{
    "status": "success",
    "data": {
        "limits": {
            "receiver_minimum": 0.5,
            "receiver_maximum": 3.7,
            "receiver_currency": "USDT_BSC"
        }
    }
}
```

It returns the minimum and maximum USDT amount
