Capvant

Indicative appetite, without creating anything

post
https://sandbox.capvant.com/partner/v1/prequalification
POST
/prequalification

Market, as ISO 3166-1 alpha-2 (GB, US, NL). Alpha-3 codes and plain country names are also accepted. Germany and Italy are refused.

business

Industry, from /enums/industries.

funding *

Amount in major units of the market currency.

Band from /enums/funding-amount-bands, as an alternative to amount. Figures are in the market currency.

Purpose, from /enums/purposes.

trading

Monthly figure in major units.

Band from /enums/revenue-bands.

Annual figure. Used only when monthly revenue is absent.

Months trading.

Band from /enums/time-in-business-bands.

Answers whether there is appetite for a request, using the same matcher production routing uses. No lead is created, no credit search is run, and no contact details are needed or stored. Safe to call on a browsing client.

Authorization

AuthorizationBearer <token>

An access token from POST /oauth/token. Valid for one hour. Preferred, because a leaked request log then exposes an hour rather than a permanent credential.

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

No contact details, no consent, no lead. Everything here is about the request, not the person.

Response Body

application/json

application/problem+json

application/problem+json

application/problem+json

application/problem+json

application/problem+json

application/problem+json

application/problem+json

Shell
curl -X POST "https://sandbox.capvant.com/prequalification" \  -H "Content-Type: application/json" \  -d '{    "country": "GB",    "funding": {      "purpose": "Working Capital"    }  }'
JSON
{  "country": "UK",  "currency": "GBP",  "eligible": true,  "decision": "options_available",  "matched_options": 0,  "product_families": [    {      "product_family": "asset_finance",      "label": "string",      "options": 0    }  ],  "indicative_amount": {    "min": 0,    "max": 0,    "currency": "GBP",    "basis": "panel_limits"  },  "reasons": [    {      "code": "amount_below_minimum",      "detail": "string"    }  ],  "supported_countries": [    "UK"  ],  "disclaimer": "string"}