Institutions

An Institution represents a Financial Institution that is supported by Teller.

Properties

  • Name
    id
    Type
    string
    Description

    Teller id of the institution.

  • Name
    name
    Type
    string
    Description

    Name of the institution.

  • Name
    products
    Type
    array
    Description

    List of Teller's products supported for the institution.


GET/institutions

List Institutions

Returns a list of all institutions supported by Teller. There is no pagination currently. Doesn't require authnentication.

Request

curl https://api.teller.io/institutions

Response

[
  {
    "name": "Chase",
    "id": "chase",
    "products": [
      "verify",
      "balance",
      "transactions",
      "identity"
    ]
  },
  ...
]