> For the complete documentation index, see [llms.txt](https://capitalsage.gitbook.io/sagecloud/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://capitalsage.gitbook.io/sagecloud/funds-transfer/transfer-funds.md).

# Transfer Funds

## Transfer Funds

<mark style="color:green;">`POST`</mark> `https://sagecloud.ng/api/v2/transfer/fund-transfer`

This endpoint allows you to get free cakes.

#### Headers

| Name          | Type   | Description             |
| ------------- | ------ | ----------------------- |
| Authorization | string | Check the Headers page. |

#### Request Body

| Name            | Type   | Description                         |
| --------------- | ------ | ----------------------------------- |
| reference       | string | A unique key generated by you       |
| bank\_code      | string | The bank code.                      |
| account\_number | string | The account number of the recipient |
| account\_name   | string | The account name of the recipient.  |
| amount          | string | Amount to be transferred.           |
| narration       | string | The narration of the transaction    |

{% tabs %}
{% tab title="200 Transfer successful.
NOTE: status can be "success" or "pending"" %}

```
{    
    "success" : true, 
    "status": "success",
    "message" : "Fund transfer successful"
}
```

{% endtab %}

{% tab title="401 " %}

```
{    
    "message": "Unauthenticated."
}
```

{% endtab %}
{% endtabs %}
