LendAPI Pricing Engines API

The Pricing Engines API from LendAPI — 1 operation(s) for pricing engines.

Operations 1

GET /pricing_engines List all Pricing Engines #

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/lendapi-pricing-engines-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

lendapi-pricing-engines-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: lendapi Amortization Pricing Engines API
  version: '1.0'
servers:
- url: https://app.lendapi.com/api/v1/
security:
- sec0: []
tags:
- name: Pricing Engines
paths:
  /pricing_engines:
    get:
      summary: List all Pricing Engines
      description: Returns all Decision Trees under a Tenant
      operationId: list-all-pricing-engines
      parameters:
      - name: start
        in: query
        description: index of record to start with
        schema:
          type: integer
          format: int32
      - name: size
        in: query
        description: max number of records to return
        schema:
          type: string
      responses:
        '200':
          description: '200'
          content:
            application/json:
              examples:
                Result:
                  value: "{\n    \"object\": \"decision\",\n    \"url\": \"/v1/decisions\",\n    \"has_more\": \"false\",\n    \"message\": \"\",\n    \"results\": [\n        {\n            \"id\": \"5c13c1d7-1463-41dd-b243-3f5a6910d43e\",\n            \"title\": \"Test tree\",\n            \"description\": \"test\",\n            \"default\": 1,\n            \"published\": true,\n            \"active\": true\n        },\n        {\n            \"id\": \"51638ae1-b7db-42d2-8c76-685259ba861c\",\n            \"title\": \"Test credit score\",\n            \"description\": \"credit score decision tree\",\n            \"default\": 1,\n            \"published\": true,\n            \"active\": true\n        }\n    ]\n}"
              schema:
                type: object
                properties:
                  object:
                    type: string
                    example: decision
                  url:
                    type: string
                    example: /v1/decisions
                  has_more:
                    type: string
                    example: 'false'
                  message:
                    type: string
                    example: ''
                  results:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          example: 5c13c1d7-1463-41dd-b243-3f5a6910d43e
                        title:
                          type: string
                          example: Test tree
                        description:
                          type: string
                          example: test
                        default:
                          type: integer
                          example: 1
                          default: 0
                        published:
                          type: boolean
                          example: true
                          default: true
                        active:
                          type: boolean
                          example: true
                          default: true
        '400':
          description: '400'
          content:
            application/json:
              examples:
                Result:
                  value: '{}'
              schema:
                type: object
                properties: {}
      deprecated: false
      tags:
      - Pricing Engines
components:
  securitySchemes:
    sec0:
      type: apiKey
      in: header
      name: AUTHORIZATION
      x-default: Bearer your_api_key