Embed equipment financing into your website, checkout, or point-of-sale system. Submit applications, get instant underwriting decisions, manage documents, and retrieve signed application packages — all over a simple REST API.
The API is organized around REST. All requests and responses are JSON (except binary PDF downloads). The base URL is:
The core flow is bi-directional:
Authenticate every request with your partner API key as a bearer token. Request a key from your seller dashboard after signing up.
Keep your secret key server-side. Never expose it in client-side code. Keys can be rotated or revoked at any time.
Submit an application and receive a decision in one call:
/applicationsSubmit an application and receive an instant underwriting decision.
Returns one of three outcomes:
/applications/{id}Retrieve full application status, the latest decision, required/uploaded documents, and the status timeline.
/applications/{id}/documentsList documents required by underwriting and documents already uploaded.
/applications/{id}/documentsUpload a document (JSON base64 or multipart form-data). Fulfills an open request when request_id is supplied.
/applications/{id}/pdfDownload the completed, e-signed application PDF (signature, IP, timestamp) for your lender package. Returns application/pdf.
/enrichPrefill business data from a website, name, or EIN (powered by Enigma + SEC EDGAR).
Register a webhook URL on your partner account and LenderCloud will POST decision and status events to you in real time, so you don't have to poll:
Each webhook includes an X-LenderCloud-Event header. Respond with 2xx to acknowledge.
200 / 201 — success401 — missing or invalid API key404 — application not found422 — validation error (see missing array)503 — temporary server configuration issueSign up for a seller partner account to get your API keys and start embedding financing today.
Get API access