Quickstart

Quickstart: add a Credicorp finance option to a EV charge point installer website

Adding a Credicorp funding option to a EV charge point installer website is one client-side snippet with no backend. Fund units and labour up front while you wait on grant and client payments. This quickstart drops in a sector-appropriate quote and apply call-to-action using only the unauthenticated public ring.

2 min read

1 snippetNo backend needed
EvSector-tailored copy
applyLinks straight through

Drop in the option

Because the product list and quote are public, the whole funding block is a self-contained snippet:

<div id="cc-finance"></div>
<script>
(async () => {
  const base = 'https://api.credicorp.co.uk/public/v1';
  const res = await fetch(base + '/quote', {
    method: 'POST', headers: { 'Content-Type': 'application/json' },
    body: JSON.stringify({ amount: 25000, term_months: 6 }),
  });
  const q = await res.json();
  document.getElementById('cc-finance').innerHTML =
    `<p>Borrow \u00a325,000 from \u00a3${q.repayment}/month</p>` +
    `<a href="https://clients.credicorp.co.uk/register">Apply \u2192</a>`;
})();
</script>

Make it sector-relevant

Fund units and labour up front while you wait on grant and client payments. Frame the copy around that need, and link readers to the EV charge point installer funding guide and to business loans.

Keep it honest

Label the figure illustrative and wrap the fetch in a try/catch so a blip shows a plain apply link. Credicorp lends to UK limited companies with no personal guarantee.

Frequently asked questions

Do I need a backend for this embed?

No. The product list and quote are on the unauthenticated public ring with CORS, so the whole block runs client-side.

Does a EV charge point installer have to be a limited company?

Credicorp lends to UK limited companies, so the embed suits incorporated EV charge point installer businesses. The application checks eligibility.

Where can readers learn more?

Link to the EV charge point installer sector guide on the Credicorp sectors hub, which covers the typical funding needs and the facilities that fit.

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.