> For the complete documentation index, see [llms.txt](https://requestmechanic.gitbook.io/request-mechanic-api-documentation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://requestmechanic.gitbook.io/request-mechanic-api-documentation/wallets/get-wallet-history.md).

# Get Wallet History

The `GET /wallets/wallet-history/` endpoint retrieves the transaction history for the user's wallet.

***

#### Parameters

This endpoint does not accept any parameters.

***

#### Responses

| **Code** | **Description**                                                                     |
| -------- | ----------------------------------------------------------------------------------- |
| `200`    | The request was successful. The response contains the wallet's transaction history. |

**Example Response:**

```json
[
  {
    "transaction_id": "12345",
    "date": "2024-12-11T10:00:00Z",
    "amount": 5000,
    "currency": "USD",
    "type": "credit",
    "status": "completed",
    "description": "Deposit to wallet"
  },
  {
    "transaction_id": "12346",
    "date": "2024-12-10T14:30:00Z",
    "amount": -2000,
    "currency": "USD",
    "type": "debit",
    "status": "completed",
    "description": "Purchase of item"
  }
]
```
