Figure Technology Solutions Payment History V1 API

The Payment History V1 API from Figure Technology Solutions — 3 operation(s) for payment history v1.

Operations 3

GET /external/secure/api/v1/portfolio/download/owned/payment-history Download the latest record of payments for owned loans
GET /external/secure/api/v1/portfolio/download/owned/payment-history/{assetType}/{reportDate} Download the record of payments for owned loans by asset type and report date
GET /external/secure/api/v1/portfolio/download/owned/payment-history/{assetType}/{reportStartDate}/{reportEndDate} Download the record of payments for owned loans by asset type between report start date and end date

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-technology-solutions-payment-history-v1-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

figure-technology-solutions-payment-history-v1-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Portfolio Manager Payment History V1 API
  description: 'Welcome to the Portfolio Manager API Reference.


    The Reporting API allows asset holders to query current and historical reports as needed.


    The API is organized around the REST methodology, and it uses resource-oriented URLs and common HTTP response codes to indicate API errors.


    All requests are authenticated using an `apikey` header.

    '
  version: latest
servers:
- url: https://figure.com
tags:
- name: Payment History V1
paths:
  /external/secure/api/v1/portfolio/download/owned/payment-history:
    get:
      tags:
      - Payment History V1
      summary: Download the latest record of payments for owned loans
      parameters:
      - 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
          headers: {}
          content:
            text/plain:
              schema:
                type: string
                xml:
                  name: String
      deprecated: false
  /external/secure/api/v1/portfolio/download/owned/payment-history/{assetType}/{reportDate}:
    get:
      tags:
      - Payment History V1
      summary: Download the record of payments for owned loans by asset type and report date
      parameters:
      - name: assetType
        in: path
        schema:
          type: string
      - name: reportDate
        in: path
        description: Cutoff date of requested payment history
        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
  /external/secure/api/v1/portfolio/download/owned/payment-history/{assetType}/{reportStartDate}/{reportEndDate}:
    get:
      tags:
      - Payment History V1
      summary: Download the record of payments for owned loans by asset type between report start date and end date
      parameters:
      - name: assetType
        in: path
        schema:
          type: string
      - name: reportStartDate
        in: path
        description: Start cutoff date of requested payment history
        schema:
          type: string
          format: date
      - name: reportEndDate
        in: path
        description: End cutoff date of requested payment history
        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 between report start date and end date
          headers: {}
          content:
            text/plain:
              schema:
                type: string
                xml:
                  name: String
      deprecated: false