Figure Payment History V2 API

The Payment History V2 API from Figure — 1 operation(s) for payment history v2.

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/figure-payment-history-v2-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 email required.

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

OpenAPI Specification

figure-payment-history-v2-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: HELOC Inquiries Encryption Payment History V2 API
  version: v1
servers:
- url: https://api.test.figure.com
  description: Test environment
- url: https://api.figure.com
  description: Production environment
security:
- apikey: []
tags:
- name: Payment History V2
paths:
  /external/secure/api/v2/portfolio/download/owned/payment-history:
    get:
      tags:
      - Payment History V2
      summary: Download the record of payments for owned loans by asset type and report date
      parameters:
      - name: assetType
        in: query
        description: Asset type to query assets for. Must provide originatorId if using
        required: false
        schema:
          type: string
      - name: originatorId
        in: query
        description: Originator id to query assets for. Must provide assetType if using assetType query param
        required: false
        schema:
          type: string
          format: uuid
      - name: assetGroup
        in: query
        description: Name of asset group to filter assets with
        required: false
        schema:
          type: string
      - name: reportDate
        in: query
        description: Cutoff date of requested payment history
        required: false
        schema:
          type: string
          format: date
      - name: ownsPayments
        in: query
        description: Only show payments received during ownership of loan
        required: false
        schema:
          type: boolean
      - name: apikey
        in: header
        description: Provided key used to access the application's api
        schema:
          type: string
      responses:
        '200':
          description: CSV of payments for owned loans by asset type and report date
          headers: {}
          content:
            text/plain:
              schema:
                type: string
                xml:
                  name: String
      deprecated: false
components:
  securitySchemes:
    apikey:
      type: apiKey
      name: apikey
      in: header