cURL
curl --request GET \ --url https://api.example.com/banking/v1/ng/bank_accounts/ \ --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>", "user": { "email": "jsmith@example.com", "first_name": "<string>", "last_name": "<string>", "created_at": "2023-11-07T05:31:56Z", "updated_at": "2023-11-07T05:31:56Z", "username": "<string>" }, "has_set_pin": true, "account_number": "<string>", "currency": { "id": "<string>", "name": "<string>", "code": "<string>", "symbol": "<string>" }, "naira_balance": {}, "tracking_reference": "<string>", "created_at": "2023-11-07T05:31:56Z", "updated_at": "2023-11-07T05:31:56Z", "account_name": "<string>", "classification": "NULL", "status": "NULL", "business_name": "<string>", "reference": "<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