# Sending

{% hint style="warning" %}
Before initiating transfer request, ensure the payment instrument to be debited is already configured on the dashboard.
{% endhint %}

Settle enables near instant sending of funds to anywhere in Africa. Both to Banks and Mobile Money.

{% hint style="info" %}
**Endpoint:** <https://settle.africa/transfer>
{% endhint %}

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

```
POST https://settle.africa/transfer  HTTP/1.1
Content-Type: application/json
id: salem
token: pXVCJ9.eyJzdWIiOiJVZ2xpZnkzNjUiLCJzaWQiOiJ1Z2
expiry: 29/01/2024 06:12:12

{
    "Source":"308", //The originating country id. Get Country Id from /countries
    "Destination":"102", //The destination country id
    "Amount":200, //In Destination Currency
    "Fi":"302", //The id of the receiving bank/mobile money
    "Note":"Buy Ice Cream", //Narration
    "AccountNo":"1212",    //The account number of the receiver
    "Name":"Agaba", //The full name of the receiver if account validation absent
    "Phone":"070982882",   //The receiver's phone number 
}

```

{% endtab %}

{% tab title="Response" %}

```
{
    "status": "success",
    "data": {
        "id": "61A69"
    },
    "code": 0,
    "fetched": "13/11/2023 02:38:44",
    "message": "Transfer posted successfully."
}

```

{% endtab %}
{% endtabs %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.settle.africa/transfers/sending.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
