> For the complete documentation index, see [llms.txt](https://docs.settle.africa/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.settle.africa/transfers/fees-and-speed-estimate.md).

# Fees & Speed Estimate

Discover the charges and time a transaction can take to be completed before it happens.

{% hint style="info" %}
**Endpoint:** <https://settle.africa/rates/{Source}/{Destination}/{Amount}>
{% endhint %}

* Source: Id of Sending Country
* Destination: Id of Receiver's country
* Amount: The amount to be sent

{% tabs %}
{% tab title="Request" %}

```
GET https://settle.africa/rates/{Source}/{Destination}/{Amount}  HTTP/1.1
id: 5563678883
token: tegdghh66353l
expiry: 29/11/2024 12:23:23

```

{% endtab %}

{% tab title="Response" %}

```
{
    "status": "success",
    "data": {
        "rate": 195.85088724172127, //In destination currency
        "speed":2000, //In seconds
        "fees":2300 //In source currency
    },
    "code": 0,
    "fetched": "13/11/2023 02:24:50",
    "message": "The rates is in the destination currency."
}

```

{% endtab %}
{% endtabs %}
