Consumer Financial Protection Bureau Institutions API

The Institutions API from Consumer Financial Protection Bureau — 2 operation(s) for institutions.

Operations 2

GET /public/filers/{year} List all institutions that filed HMDA data for a year #
GET /public/institutions/{year}/{lei} Get a single institution by year and LEI #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/consumer-financial-protection-bureau-institutions-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

consumer-financial-protection-bureau-institutions-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: CFPB HMDA Institutions API
  description: The HMDA Platform Institutions API returns the financial institutions registered to file Home Mortgage Disclosure Act data with the CFPB, keyed by year and LEI. It is used by filers and researchers to confirm filer identifiers, registration status, and contact info.
  version: '2'
  contact:
    name: HMDA Operations
    url: https://ffiec.cfpb.gov/
servers:
- url: https://ffiec.cfpb.gov/v2
  description: Production HMDA Platform
tags:
- name: Institutions
paths:
  /public/filers/{year}:
    get:
      operationId: listInstitutionsByYear
      summary: List all institutions that filed HMDA data for a year
      tags:
      - Institutions
      parameters:
      - name: year
        in: path
        required: true
        schema:
          type: integer
          minimum: 2018
      responses:
        '200':
          description: List of filers
          content:
            application/json:
              schema:
                type: object
                properties:
                  institutions:
                    type: array
                    items:
                      $ref: '#/components/schemas/Institution'
  /public/institutions/{year}/{lei}:
    get:
      operationId: getInstitution
      summary: Get a single institution by year and LEI
      tags:
      - Institutions
      parameters:
      - name: year
        in: path
        required: true
        schema:
          type: integer
      - name: lei
        in: path
        required: true
        schema:
          type: string
          minLength: 20
          maxLength: 20
      responses:
        '200':
          description: Institution detail
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Institution'
        '404':
          description: Not found
components:
  schemas:
    Institution:
      type: object
      properties:
        lei:
          type: string
          minLength: 20
          maxLength: 20
        activityYear:
          type: integer
        agency:
          type: integer
        institutionType:
          type: string
        institutionId2017:
          type: string
        taxId:
          type: string
        rssd:
          type: integer
        respondent:
          type: object
          properties:
            name:
              type: string
            state:
              type: string
            city:
              type: string
        parent:
          type: object
          properties:
            idRssd:
              type: integer
            name:
              type: string
        assets:
          type: integer
        otherLenderCode:
          type: integer
        topHolder:
          type: object
        hmdaFiler:
          type: boolean
        quarterlyFiler:
          type: boolean
        quarterlyFilerHasFiledQ1:
          type: boolean
        quarterlyFilerHasFiledQ2:
          type: boolean
        quarterlyFilerHasFiledQ3:
          type: boolean