curl -X POST "{{base_url}}/v1/transactions/KES" \
-H "x-api-key: YOUR_CONSUMER_KEY" \
-H "Content-Type: application/json" \
-d '{"start_date":"2026-07-28","end_date":"2026-07-30"}'
Payments (v1)
List transactions
List recent transactions for a currency (optional date window).
POST
/
v1
/
transactions
/
{currency_code}
curl -X POST "{{base_url}}/v1/transactions/KES" \
-H "x-api-key: YOUR_CONSUMER_KEY" \
-H "Content-Type: application/json" \
-d '{"start_date":"2026-07-28","end_date":"2026-07-30"}'
When
start_date / end_date are provided, results are limited to a 3-day window. No pagination — the full matching set is returned.
string
required
Currency code, e.g.
KES.string
Optional start date (
YYYY-MM-DD).string
Optional end date (
YYYY-MM-DD).curl -X POST "{{base_url}}/v1/transactions/KES" \
-H "x-api-key: YOUR_CONSUMER_KEY" \
-H "Content-Type: application/json" \
-d '{"start_date":"2026-07-28","end_date":"2026-07-30"}'
