Institutions are organizations that hold user financial data. Developers can see which institutions are available through the LinkMoney platform and what the institution's status is. For particular use cases, developers can search for particular institutions to find details about a certain provider.


Get Details of Supported Institutions.

Endpoint: POST /institutions/get

Find important data about institutions supported in LinkMoney.

Parameters

For the Request

Example Request

curl -X POST /institutions/get \\
	-H 'Content-Type: application/json' \\
	-H "Authorization: Bearer {access_token}" \\
	-d '{ 
		"count": 500,
		"offset": 1000,
	}'

Example Response

For more information about the response, see the model documentation entry on Plaid institutions.

{
  "institutions": [
    {
      "institution_id": "ins_1",
      "name": "Bank of America",
    }
  ],
  "request_id": "tbFyCEqkU774ZGG",
  "total": 11384
}

Get Details of an Institution

Endpoint: POST /institutions/get_by_id

Get the details for a specific financial institution supported by Link Money.

Parameters

For the Request

Example Request