# List Transactions API

Fetch transaction history for an account.

## Endpoint
`POST https://api.moolre.com/open/account/transactions`

## Headers
| Name | Type | Required | Description |
| :--- | :--- | :--- | :--- |
| X-API-USER | string | Yes | Username |
| X-API-KEY | string | Yes | Secret Key |

## Request Parameters
| Name | Type | Required | Description |
| :--- | :--- | :--- | :--- |
| type | integer | Yes | Must be 2. |
| accountnumber | string | Yes | Account number. |
| limit | integer | No | Number of records to return. |

## Responses
### 200 - Success
Transactions returned.

```json
{
  "status": 1,
  "data": [
    {
      "id": 1,
      "amount": "10",
      "date": "2024-01-01"
    }
  ]
}
```

