# Resolve Account Names

This API tries to fetch the receiver's account name by simply supplying their account number.

{% hint style="info" %}
**Endpoint:** [https://settle.africa/fisit/{fi}/{accountnumber}](https://settle.africa/fisit/%7Bfi%7D/%7Baccountnumber%7D)
{% endhint %}

Where:

* **fi:** The financial institution(Bank/Mobile money) id of the receiver.
* **accountnumber:** The account number/username of the receiver on the Financial institution.

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

```
GET https://settle.africa/fisit/{fi}/{accountnumber}  HTTP/1.1
id: 5563678883
token: tegdghh66353l
expiry: 29/11/2024 12:23:23


```

{% endtab %}

{% tab title="Response" %}

```
{
    "status": "Success",
    "code": "0",
    "message": "Name found",
    "data": 
	{
            "name": "Thembeka Emeka",
        }
	
}

```

{% endtab %}
{% endtabs %}
