> For the complete documentation index, see [llms.txt](https://docs.xtrakit.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.xtrakit.com/overview/payments/get-wallets.md).

# Get Wallets

## Endpoint

<mark style="color:$success;">**`GET`**</mark> `https://api.xtrakit.com/api/v1/wallets`

## Headers

`Authorization: Bearer API_KEY`

## Sample Response

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

```json
{
   "status": 200,
   "data": [
      {
         'wallet_balance' => 1000,
         'wallet_currency' => 'NGN,
         'status' => // 1 means Active
      }, 
      {
         'wallet_balance' => 100,
         'wallet_currency' => 'GHS',
         'status' => 1 // 1 means Active
      }
   ],
   "message": "Business wallets retrieved successfully"
}
```

{% endtab %}

{% tab title="Error" %}

```json
{
    "status": 401,
    "error": "Unauthorized: Missing Bearer Token"
},

{
    "status": 401,
    "error": "Unauthorized: Invalid API Key"
}
```

{% endtab %}
{% endtabs %}
