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

# GET /user/me/financial-history

**URL:** [https://xapi.duelduck.com/user/me/financial-history](https://xapi.duelduck.com/user/me/financial-history)

Returns the authenticated user's on-chain financial transaction history (prediction votes, refunds, rewards, commissions).

### **Parameters**

| Name          | Type   | Header        | Required | Description                |
| :------------ | :----- | :------------ | :------- | :------------------------- |
| Authorization | string | Authorization | yes      | Authorization Bearer token |
| X-API-Key     | string | X-API-Key     | yes      | Project API key            |

### **Responses**

**Response content type:** application / json .

#### Code 200

List of financial transactions.

```text theme={"dark"}
[
  {
    "amount": 0,
    "date": "string",
    "tx_hash": "string",
    "tx_type": 0
  }
]
```

#### Code 401

Unauthorized.

```text theme={"dark"}
{
  "message": "string",
  "status": 0
}
```

#### Code 500

Internal server error.

```text theme={"dark"}
{
  "message": "string",
  "status": 0
}
```
