Numero Documentation
  1. Transaction History
Numero Documentation
  • Overview
  • Transfers & Payouts
    • Validate Account Number
      POST
    • Initiate Single Transfer
      POST
    • Initiate Bulk Transfer
      POST
    • Transfer Status
      GET
  • Virtual Accounts
    • Create Virtual Account Customer
      POST
    • Create Virtual Account Business
      POST
    • Get Virtual Account
      GET
    • Get All Virtual Accounts
      GET
  • Transaction History
    • Get Transactions
      GET
  • Webhooks & Security
    • Webhook Notifications
    • Generate Signature
      POST
  1. Transaction History

Get Transactions

GET
/api/v1/business/transaction

Request

Query Params

Header Params

Responses

🟢200Get Transactions
text/plain
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api-dev.usenumero.com/api/v1/business/transaction?startDate=&endDate=&searchBy=&pageNumber=&pageSize=' \
--header 'x-api-key: {{apiKey}}'
Response Response Example
{
  "status": true,
  "message": "string",
  "code": "string",
  "version": "string",
  "reference": "string",
  "data": {
    "transactions": [
      {
        "trxAmount": 0,
        "trxFee": 0,
        "settledAmount": 0,
        "merchant": "string",
        "businessCode": "string",
        "reference": "string",
        "sessionId": "string",
        "vendorReference": "string",
        "type": "string",
        "status": "string",
        "channel": "string",
        "postingType": "string",
        "description": "string",
        "service": "string",
        "requestState": "string",
        "requestStateDetails": "string",
        "beneficiaryName": "string",
        "beneficiaryNumber": "string",
        "beneficiaryBank": "string",
        "dateCreated": "2024-12-10T18:56:32.433Z",
        "dateModified": "2024-12-10T18:56:32.433Z"
      }
    ],
    "pageNumber": 0,
    "pageSize": 0,
    "totalCount": 0
  },
  "error": {
    "message": "string"
  }
}
Modified at 2025-11-29 15:27:01
Previous
Transaction History
Next
Webhooks & Security
Built with