For the complete documentation index, see llms.txt. This page is also available as Markdown.

Get Limits

Before doing an instant sell transaction, you'll need to know the maximum and minimum sell amounts. Make a GET request to the following endpoint.

https://api.localramp.co/v1/transaction/sell/limits?from_currency=LTC&to_currency=NGN

The request takes from_currency and to_currency as query params.

With the following header

x-auth-token: <PUBLIC_KEY>

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

{
    "status": "success",
    "data": {
        "from_minimum": "0.00009603",
        "from_maximum": "0.62509580",
        "from_currency": "BTC"
    }
}

It returns the minimum and maximum from_amounts

Last updated