Quickstart

Quickstart: Credicorp public API for an e-commerce or SaaS platform

You run a platform whose merchants are limited companies, and you want to offer them working capital. This quickstart shows the exact endpoints and code, uses the unauthenticated public ring, and always ends with a clean handoff to the real application — Credicorp lends to UK limited companies with no personal guarantee.

2 min read

merchant-facingIn-context funding CTA
contextualSuggest a sensible amount
handoffApply in a click

Add a funding CTA

Place a 'Grow your business' card in your merchant dashboard. Use pricing config to show a realistic headline and pre-fill a sensible amount based on the merchant's turnover on your platform.

Contextual quote

const suggested = Math.min(merchant.monthlyRevenue * 2, 150000);
const q = await quote({ amount: suggested, term_months: 6 });
showFundingCard(`Borrow up to \u00a3${suggested.toLocaleString()} \u2014 from \u00a3${q.repayment}/mo`);

Hand off cleanly

Submit an enquiry pre-filled from the merchant's profile and send them to the handoff_url. This is the classic embedded-finance pattern; for revenue share and callbacks, move to the partner ring.

Frequently asked questions

Is this embedded finance?

It is the entry point to it. The public ring lets you surface and hand off; full embedded finance with revenue share and decision callbacks lives on the partner ring.

Can I pre-fill the merchant's details?

Yes — pre-fill the enquiry payload from your own merchant record. The applicant confirms and completes via the secure handoff.

Funding for UK limited companies

Credicorp lends to your company, not to you personally — short-term working capital with no personal guarantee. See what your business could access.