API REFERENCE
...
Institutions
Get a list of institutions
1 min
Get institution for your end-user(debtor).
GET
Request
Response
Header Parameters
Authorization
String
required
Bearer access token, it returned by the /auth
Curl
Node.js
JS
Python
Ruby
1curl --location 'https://api-sandbox.klavi.ai/payment/customer/v1/institutions' \
2--header 'Accept: application/json' \
3--header 'Content-Type: application/json'
Responses
200
1[
2 {
3 "id": "81bada34-a509-43d6-9ac3-23f95b066411",
4 "name": "Mock bank 1",
5 "avatar": "https://example.server.com/mockbank1.svg",
6 "description": "Mock Sandbox 1",
7 "businessType": "PJ",
8 "outage": false,
9 "outageReason": "outage a litte time",
10 "authMethod": ["REDIRECTION", "BIO_METRIC"]
11 },
12 {
13 "id": "81bada34-a509-43d6-9ac3-23f95b066411",
14 "name": "Mock bank 2",
15 "avatar": "https://example.server.com/mockbank2.svg",
16 "description": "Mock Sandbox 2",
17 "businessType": "PJ",
18 "outage": false,
19 "outageReason": "outage a litte time",
20 "authMethod": ["REDIRECTION", "BIO_METRIC"]
21 }
22]
Updated 03 Jul 2025
Did this page help you?