cURL
curl --request GET \ --url http://localhost:8080/institutions/{institution_id} \ --header 'Authorization: Bearer <token>'
{ "institution_id": "chase", "institution_id_aliases": [ "bf6856b2-0460-4e1e-b837-8dd9c1338bc1", "ins_56" ], "name": "Chase", "country": "US", "domain": "chase.com", "color": "#0A89FF", "color_dark": "#0A89FF", "is_featured": true }
Fetches details about a single institution.
curl -i -X GET \ 'http://localhost:8080/institutions/{institution_id}' \ -H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \ -H 'moneykit-version: 2023-02-18'
The access token received from the authorization server in the OAuth 2.0 flow.
The institution ID to fetch.
Institution found
The response is of type object.
object
Was this page helpful?