Figure Technology Solutions Loan Tape V2 API

The Loan Tape V2 API from Figure Technology Solutions — 3 operation(s) for loan tape v2.

Operations 3

GET /external/secure/api/v2/portfolio/asset/types Returns the distinct list of asset types and groups for currently owned loans
GET /external/secure/api/v2/portfolio/layouts Returns the distinct list of available layouts for the given asset type
GET /external/secure/api/v2/portfolio/download/owned/{layout} Download the latest record of owned loan data by asset type and layout

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-loan-tape-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 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-loan-tape-v2-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Portfolio Manager Loan Tape V2 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: Loan Tape V2
paths:
  /external/secure/api/v2/portfolio/asset/types:
    get:
      tags:
      - Loan Tape V2
      summary: Returns the distinct list of asset types and groups for currently owned loans
      parameters:
      - name: apikey
        in: header
        description: Provided key used to access the application's api
        schema:
          type: string
      responses:
        '200':
          description: List of available asset types associated with this account
          headers: {}
          content:
            application/json:
              schema:
                type: array
                xml: {}
                items:
                  type: string
      deprecated: false
  /external/secure/api/v2/portfolio/layouts:
    get:
      tags:
      - Loan Tape V2
      summary: Returns the distinct list of available layouts for the given asset type
      parameters:
      - name: apikey
        in: header
        description: Provided key used to access the application's api
        schema:
          type: string
      - name: assetType
        in: query
        description: Asset type to fetch compatible layouts for. Must provide originatorId if using
        required: false
        schema:
          type: string
      - name: originatorId
        in: query
        description: Originator id to fetch compatible layouts for. Must provide if using assetType query param
        required: false
        schema:
          type: string
          format: uuid
      - name: assetGroup
        in: query
        description: Name of asset group to fetch compatible layouts for
        required: false
        schema:
          type: string
      responses:
        '200':
          description: List of available layouts for the given asset type
          headers: {}
          content:
            application/json:
              schema:
                type: array
                xml: {}
                items:
                  type: string
      deprecated: false
  /external/secure/api/v2/portfolio/download/owned/{layout}:
    get:
      tags:
      - Loan Tape V2
      summary: Download the latest record of owned loan data by asset type and layout
      parameters:
      - name: layout
        in: path
        description: CSV layout available for the provided asset type
        schema:
          type: string
      - 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: apikey
        in: header
        description: Provided key used to access the application's api
        schema:
          type: string
      responses:
        '200':
          description: CSV record of owned loan data based on the specified asset type and layout
          headers: {}
          content:
            text/plain:
              schema:
                type: string
                xml:
                  name: String
      deprecated: false