GET
/
institutions
Retrieve a list of institutions
curl --request GET \
  --url https://api-sandbox.synctera.com/v0/institutions \
  --header 'Authorization: Bearer <token>'
{
  "institutions": [
    {
      "country_codes": [
        "CA"
      ],
      "logo": "<string>",
      "name": "Bank of America",
      "routing_identifiers": [
        {
          "location": "123 main street",
          "payment_rails": [
            "ACH"
          ],
          "routing_number": 121116739
        }
      ]
    }
  ],
  "next_page_token": "a8937a0d"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

country_codes
enum<string>[]
required

The countries of operation of the financial institutions

Minimum length: 1
routing_numbers
string[]
required

An array of routing numbers to filter institutions. The response will only return institutions that match all of the routing numbers in the array

Minimum length: 1
Example:

"21102,10021"

page_token
string

Optional pagination token to be provided to retrieve subsequent pages, returned from previous get

Example:

"a8937a0d"

Response

200
application/json

list of institutions

An array of institutions