List Transactions API

Fetch a list of transactions linked with a specific account.

Endpoint Information

POST https://api.moolre.com/open/account/status

To test in sandbox, use https://sandbox.moolre.com/open/account/status instead.

Authentication & Headers

Header NameTypeRequiredDescription
X-API-USERstringYesYour Moolre username.
X-API-KEYstringYesYour API Key. (Not required in Sandbox)

Request Parameters

ParameterTypeRequiredDescription
typeintegerYesMust be 2.
accountnumberstringYesYour Account Number.
startdatestringNoStart date (YYYY-MM-DD HH:MM:SS).
enddatestringNoEnd date (YYYY-MM-DD HH:MM:SS).
limitstringNoMax transactions per page.
statusstringNoFilter by status (0=Pending, 1=Success, 2=Failed).

Response Examples

200 - Success

List of transactions returned.

{
  "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
}

← Back to AI Documentation Index | View Full API Reference