Skip to main content

Get Bulk Transaction Filtered By Date

This API allows merchants to retrieve a list of their transactions within a specified date range. Results are paginated and include key financial breakdowns such as VAT, MDR, and processing fees.

GETbaseUrl/api/v1/b2b/transactions/

Headers

  • Authorization: Bearer {{accessToken}} (Include the token obtained from the Authentication API)
  • Content-Type: application/json
ParameterTypeRequiredDescription
startDatestringYesStart of the date range, format YYYY-MM-DD.
endDatestringYesEnd of the date range, format YYYY-MM-DD.

Example Request

GET /api/v1/b2b/transactions/filter?startDate={YYYY-MM-DD}&endDate={YYYY-MM-DD}
Authorization: Bearer {{accessToken}}
Content-Type: application/json

Usage Tips

  1. Use startDate and endDate to limit results and retrieve transactions in that specific date range.
  2. Default pageSize is 15 transactions per page. Use pagination controls to retrieve more records.
  3. Recommended for B2B merchants to integrate directly into their internal reporting systems.