> ## Documentation Index
> Fetch the complete documentation index at: https://docs.manastore.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List Wallets

> Returns a paginated list of wallets belonging to the authenticated user

## List Wallets

`GET /api/v1/wallets`

Returns a paginated list of wallets belonging to the authenticated user.

### Query Parameters

| Parameter  | Type    | Default | Description                |
| ---------- | ------- | ------- | -------------------------- |
| `page`     | integer | 1       | Page number for pagination |
| `per_page` | integer | 15      | Number of items per page   |

### Responses

| Status             | Description                             |
| ------------------ | --------------------------------------- |
| `200 OK`           | Successful operation                    |
| `401 Unauthorized` | Missing or invalid authentication token |
| `403 Forbidden`    | Access denied                           |

### 200 — Wallet List

```json theme={null}
{
  "data": [
    {
      "id": 1,
      "name": "Main Wallet",
      "balance": {
        "amount": "100.00",
        "currency": "USD",
        "formatted": "$100.00",
        "decimal": "100.00",
        "localized_decimal": "100,00"
      },
      "currency": "USD",
      "cerdit_limit": 100,
      "created_at": "2023-01-01T12:00:00+00:00",
      "updated_at": "2023-01-01T12:00:00+00:00"
    }
  ],
  "links": {
    "first": "https://api.example.com/wallets?page=1",
    "last": "https://api.example.com/wallets?page=1",
    "prev": null,
    "next": null
  },
  "meta": {
    "current_page": 1,
    "from": 1,
    "last_page": 1,
    "per_page": 15,
    "to": 1,
    "total": 1
  }
}
```
