Core Resources
Banking Api
Energy Api
Common api
Institutions are commonly known as Data Holders within the Consumer Data Right, they are typically Banks, Credit Unions or Energy Providers who return information about End users. Their response contains media, names and identifiers which can be used for displaying specific information to your End Users. The Fiskil API supports many different institutions and continues to grow and work with more.
Institutions Endpoints
A URL to an icon for the institution
The id of the institution
The industry of the institution e.g. “banking” or “energy”
Whether this institution is accessible by the teamID. Determines if institution can be used
A URL to the logo of the institution
The name of the institution
The order that this institution will appear in during an auth session
{
"icon": "https://eastpaclogo.com.au/eastpac-icon.svg",
"id": "22",
"industry": "banking",
"is_accessible": true,
"logo": "https://eastpaclogo.com.au/eastpac.svg",
"name": "Eastpac",
"priority": 1
}
/v1/institutions
Returns a list of all Institutions that are currently supported by Fiskil.
The type of the institution e.g. “banking” or “energy”
Your team ID. You can get this from the settings menu of the Fiskil Console
The institution mode. If set to recommended, will load recommended institution data only
curl --request GET \
--url https://api.fiskil.com/v1/institutions?industry={industry}&client_id={client_id}&institution_mode={institution_mode} \
--header 'accept: application/json; charset=UTF-8' \
--header 'content-type: application/json; charset=UTF-8'
[
{
"icon": "https://eastpaclogo.com.au/eastpac-icon.svg",
"id": "22",
"industry": "banking",
"is_accessible": true,
"logo": "https://eastpaclogo.com.au/eastpac.svg",
"name": "Eastpac",
"priority": 1
},
{
"icon": "https://eastpaclogo.com.au/eastpac-icon.svg",
"id": "22",
"industry": "banking",
"is_accessible": true,
"logo": "https://eastpaclogo.com.au/eastpac.svg",
"name": "Eastpac",
"priority": 1
},
{
"icon": "https://eastpaclogo.com.au/eastpac-icon.svg",
"id": "22",
"industry": "banking",
"is_accessible": true,
"logo": "https://eastpaclogo.com.au/eastpac.svg",
"name": "Eastpac",
"priority": 1
}
]
/v1/institutions/{id}
Retrieve an institution based off its ID.
The ID of the institution to fetch details of
curl --request GET \
--url https://api.fiskil.com/v1/institutions/{id} \
--header 'accept: application/json; charset=UTF-8' \
--header 'content-type: application/json; charset=UTF-8'
{
"icon": "https://eastpaclogo.com.au/eastpac-icon.svg",
"id": "22",
"industry": "banking",
"is_accessible": true,
"logo": "https://eastpaclogo.com.au/eastpac.svg",
"name": "Eastpac",
"priority": 1
}
Was this page helpful?