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.
Call it yourself
curl for this page
This API
curl "https://apis.io/api/v1/apis/uncapped-estimations-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
openapi: 3.2.0
info:
title: api-partners Applicants Estimations API
description: "Change log:<br>\n1.4.0 (2026-06-01)\n<ul>\n <li>Signals: Added <code>productType</code> field to Signal response of <code>GET /applicants/{partnerApplicantId}/signals</code>. Values: <code>MCA</code>, <code>TERM_LOAN</code>, <code>LOC</code>.</li>\n</ul>\n1.3.0\n<ul>\n <li>Webhooks: Added new event for completed batch estimations.</li>\n <li>Applicants: Added endpoint to list pre-offer estimations for applicants.</li>\n <li>Applicant Onboarding: Added asynchronous enrichment of applicant details after redirect journey to pre-fill onboarding data.</li>\n</ul>\n1.2.0\n<ul>\n <li>Partners can now batch submit pre-offer estimations requests to pre-load Signals before applicants reach the UI.</li>\n</ul>\n1.1.0\n<ul>\n <li>New endpoint to retrieve a list of all applications. Supports pagination and filtering.</li>\n <li>Webhooks: Added support for real-time event notifications. Users can now register listener URLs to receive automated updates on Application changes and\n expired Estimations.\n </li>\n</ul>\n1.0.0 initial release"
version: 1.4.0
servers:
- url: https://dev.weareuncapped.com/api/partners
description: Sandbox server
- url: https://portal.weareuncapped.com/api/partners
description: Production server
security:
- auth0_bearer:
- read
- write
tags:
- name: Estimations
description: Estimations API for external access
paths:
/estimations/pre-offers:
post:
tags:
- Estimations
summary: Generate pre-offer estimations
description: 'Generates pre-offer estimations based on partner applicant performance data.
**Revenue Data:**
- Submit revenue figures grouped by source (e.g., AMAZON, SHOPIFY)
- Each source contains an array of revenue figures
**Currency Determination:**
- Currency is automatically determined from country code (e.g., USA→ USD)
- Uses ISO 3166-1 alpha-2 to ISO 4217 mapping
- Revenue currency from figures is used for calculations, but response currency comes from country
**Partner Integration Guidelines:**
- Use ISO 8601 date format (yyyy-MM-dd)
- Use ISO 4217 currency codes (e.g., USD, EUR, GBP)
- Use ISO 3166-1 alpha-3 country codes (e.g., USA, CAN, GBR, POL)
- Use ISO 3166-2 state codes (e.g., CA, NY, TX, ON)
'
operationId: generatePreOfferEstimation
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/PreOfferEstimationRequest'
example:
partnerApplicantId: partner-applicant-1
applicantData:
legalStructure: LLC
country: USA
state: CA
applicantPerformance:
revenueFigures:
- source: Amazon
figures:
- date: '2025-10-13'
amount: 2000
currency: USD
- date: '2025-10-14'
amount: 2000
currency: USD
required: true
responses:
'400':
description: Invalid request data
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
'401':
description: Access denied
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
'200':
description: Pre-offer estimation generated successfully
content:
'*/*':
schema:
$ref: '#/components/schemas/PreOfferEstimationResponse'
/estimations/pre-offers/batch:
post:
tags:
- Estimations
summary: Schedule pre-offer estimations batch
description: 'Schedules a batch of pre-offer estimations based on partner applicant performance data.
**Revenue Data:**
- Submit revenue figures grouped by source (e.g., AMAZON, SHOPIFY)
- Each source contains an array of revenue figures
**Currency Determination:**
- Currency is automatically determined from country code (e.g., USA→ USD)
- Uses ISO 3166-1 alpha-2 to ISO 4217 mapping
- Revenue currency from figures is used for calculations, but response currency comes from country
**Partner Integration Guidelines:**
- Use ISO 8601 date format (yyyy-MM-dd)
- Use ISO 4217 currency codes (e.g., USD, EUR, GBP)
- Use ISO 3166-1 alpha-3 country codes (e.g., USA, CAN, GBR, POL)
- Use ISO 3166-2 state codes (e.g., CA, NY, TX, ON)
'
operationId: handlePreOfferEstimationBatch
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/PreOfferEstimationBatchRequest'
example:
estimationRequests:
- partnerApplicantId: partner-applicant-1
applicantData:
legalStructure: LLC
country: USA
state: CA
applicantPerformance:
revenueFigures:
- source: Amazon
figures:
- date: '2025-10-13'
amount: 2000
currency: USD
- date: '2025-10-14'
amount: 2000
currency: USD
- partnerApplicantId: partner-applicant-2
applicantData:
legalStructure: LLC
country: USA
state: CA
applicantPerformance:
revenueFigures:
- source: Shopify
figures:
- date: '2025-10-13'
amount: 1000
currency: USD
- date: '2025-10-14'
amount: 1000
currency: USD
required: true
responses:
'400':
description: Invalid request data
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
'401':
description: Access denied
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
'200':
description: Pre-offer estimation batch scheduled successfully
content:
'*/*':
schema:
$ref: '#/components/schemas/PreOfferEstimationBatchResponse'
components:
schemas:
ErrorResponse:
type: object
properties:
message:
type: string
code:
type: string
details:
type: array
items:
$ref: '#/components/schemas/CodeMessage'
RevenueFigure:
type: object
properties:
date:
type: string
format: date
amount:
type: number
minimum: 0.0
currency:
type: string
pattern: ^[A-Z]{3}$
required:
- amount
- currency
- date
ApplicantData:
type: object
properties:
legalStructure:
type: string
enum:
- LLC
- Sole Proprietorship
- Unknown
country:
type: string
pattern: ^\p{Lu}{3}$
state:
type: string
pattern: ^\p{Lu}{2}$
PreOfferEstimationBatchResponse:
type: object
properties:
batchId:
type: string
format: uuid
RevenueSource:
type: object
properties:
source:
type: string
enum:
- Amazon
- Shopify
- Walmart
- Unknown
figures:
type: array
items:
$ref: '#/components/schemas/RevenueFigure'
PreOfferEstimationDto:
type: object
properties:
id:
type: string
format: uuid
productType:
type: string
enum:
- MCA
- TERM_LOAN
- LOC
status:
type: string
enum:
- ELIGIBILITY_COMPLETE_DATA
- ELIGIBILITY_MINIMAL_DATA
- ELIGIBILITY_PENDING_VERIFICATION
- ELIGIBILITY_UNDEFINED
- ELIGIBILITY_DATA_INSUFFICIENT
- NON_ELIGIBLE
- COOLING_PERIOD
expirationDate:
type: string
format: date
maxAmount:
type: number
currency:
type: string
maxTerm:
type: string
maxMonthlyFee:
type: number
minMonthlyFee:
type: number
amount:
type: number
creditLimit:
type: number
PreOfferEstimationBatchRequest:
type: object
properties:
estimationRequests:
type: array
items:
$ref: '#/components/schemas/PreOfferEstimationRequest'
PreOfferEstimationRequest:
type: object
properties:
partnerApplicantId:
type: string
minLength: 1
applicantData:
$ref: '#/components/schemas/ApplicantData'
applicantPerformance:
$ref: '#/components/schemas/ApplicantPerformanceData'
required:
- partnerApplicantId
CodeMessage:
type: object
properties:
code:
type: string
message:
type: string
fieldName:
type: string
PreOfferEstimationResponse:
type: object
properties:
partnerApplicantId:
type: string
preOffersEstimations:
type: array
items:
$ref: '#/components/schemas/PreOfferEstimationDto'
ApplicantPerformanceData:
type: object
properties:
revenueFigures:
type: array
items:
$ref: '#/components/schemas/RevenueSource'
securitySchemes:
auth0_bearer:
type: http
name: authorization
scheme: bearer
bearerFormat: JWT