Fetch transaction history for an account.
POST https://api.moolre.com/open/account/transactions
| Header Name | Type | Required | Description |
|---|---|---|---|
X-API-USER | string | Yes | Username |
X-API-KEY | string | Yes | Secret Key |
| Parameter | Type | Required | Description |
|---|---|---|---|
type | integer | Yes | Must be 2. |
accountnumber | string | Yes | Account number. |
limit | integer | No | Number of records to return. |
Transactions returned.
{
"status": 1,
"data": [
{
"id": 1,
"amount": "10",
"date": "2024-01-01"
}
]
}