cURL
curl --request GET \ --url https://api.example.com/banking/v1/us/transactions/ \ --header 'api-key: <api-key>'
{ "count": 123, "next": "http://api.example.org/accounts/?page=4", "previous": "http://api.example.org/accounts/?page=2", "results": [ { "id": "<string>", "amount": "<string>", "account": "<string>", "currency": { "id": "<string>", "name": "<string>", "code": "<string>", "symbol": "<string>" }, "receipient": [ { "id": "<string>", "name": "<string>", "bank_code": "<string>", "bank_name": "<string>", "account_number": "<string>", "amount": "<string>" } ], "created_at": "2023-11-07T05:31:56Z", "updated_at": "2023-11-07T05:31:56Z", "type": "transfer", "status": "pending", "opening_balance": "<string>", "balance_after_transaction": "<string>", "reference": "<string>", "narration": "<string>", "direction": "Outbound", "client_identifier": "<string>", "trace_number": "<string>" } ] }
A page number within the paginated result set.
Number of results to return per page.
123
"http://api.example.org/accounts/?page=4"
"http://api.example.org/accounts/?page=2"
Show child attributes