> For the complete documentation index, see [llms.txt](https://api.docs.bantupay.org/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://api.docs.bantupay.org/user/get-user-information.md).

# Get User Information

## Get User Information

<mark style="color:blue;">`GET`</mark> `https://api-alpha.dev.bantupay.org/v2/user/{username}`

#### Path Parameters

| Name     | Type   | Description |
| -------- | ------ | ----------- |
| username | string |             |

#### Headers

| Name                  | Type   | Description                                                                      |
| --------------------- | ------ | -------------------------------------------------------------------------------- |
| X-BANTUPAY-PUBLIC-KEY | string | your Bantu blockchain public key                                                 |
| X-BANTUPAY-SIGNATURE  | string | <p>payload can be signed with <https://request-signer.dev.bantu.network><br></p> |

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

```javascript
{
  "username": "richard",
  "email": "richard@ric.com",
  "lastName": "RIC",
  "firstName": "RICHA",
  "middleName": "",
  "gender": "",
  "mobile": "",
  "telegram": "",
  "instagram": "",
  "twitter": "",
  "imageThumbnail": "",
  "balances": {
    "claimed": [
      {
        "assetIssuer": "GDRK25QFQZBU3BONU4TAAPKWQQEERZB2POIPI2EM4GRTKCHXCQK27PY2",
        "assetCode": "FEE",
        "amount": "200"
      },
      {
        "assetIssuer": "GDRK25QFQZBU3BONU4TAAPKWQQEERZB2POIPI2EM4GRTKCHXCQK27PY2",
        "assetCode": "PAY",
        "amount": "100.1"
      },
      {
        "assetIssuer": "",
        "assetCode": "",
        "amount": "48.2233367"
      }
    ],
    "unclaimed": null
  }
}
```

{% endtab %}

{% tab title="404 " %}

```javascript
{
  "error": "string",
  "data": "string",
  "message": "string"
}
```

{% endtab %}
{% endtabs %}
