List Transactions API
List account transactions with filters.
# List Transactions API
Fetch a list of transactions linked with a specific account.
## Endpoint
- **Method**: POST
- **URL**: https://api.moolre.com/open/account/status
## Headers
| Header | Type | Required | Description |
| :--- | :--- | :--- | :--- |
| X-API-USER | string | Yes | Your Moolre username. |
| X-API-KEY | string | Yes | Your Private API Key. |
## Request Body
| Parameter | Type | Required | Description |
| :--- | :--- | :--- | :--- |
| type | integer | Yes | Must be 2. |
| accountnumber | string | Yes | Your Account Number. |
| startdate | string | No | Start date (YYYY-MM-DD HH:MM:SS). |
| enddate | string | No | End date (YYYY-MM-DD HH:MM:SS). Defaults to the last second of the current year. |
| limit | string | No | Max transactions per page. |
| status | integer | No | Optional status filter: 0=Pending, 1=Successful, 2=Failed. |
## Response (200 Success)
List of transactions returned.
```json
{
"status": 1,
"code": "ST08",
"message": "Transactions Found",
"data": {
"txcount": "1",
"transactions": [
{
"txstatus": 1,
"txtype": 1,
"accountnumber": "100000100002",
"payer": "233551300186",
"payee": "Zagey",
"amount": "1.00",
"value": "1",
"transactionid": "34008096",
"externalref": "0",
"thirdpartyref": "55730796319",
"ts": "2025-04-15 12:36:28"
}
]
},
"go": null
}
```