Quickstart

Quickstart: read public pricing configuration

GET /public/v1/config/pricing exposes the representative pricing parameters behind the public quote. Use it to show headline rates, fee bands and lending bounds on a pricing page, and to keep your own client-side calculators in step with the figures the API actually uses.

2 min read

GET/public/v1/config/pricing
representativeDisplay figures, not offers
cacheChanges rarely

Fetch the pricing config

curl -s https://api.credicorp.co.uk/public/v1/config/pricing -H 'Accept: application/json'

You get the representative rate bands, any fixed fees and the min/max amount and term bounds. These are the same parameters the quote endpoint applies, so your on-page figures and the API never drift apart.

Feed a client-side calculator

Rather than hard-coding rates in your front-end, fetch them once and pass them into your calculator so a pricing change on our side flows through automatically:

const cfg = await (await fetch(`${BASE}/config/pricing`)).json();
calculator.setBounds(cfg.min_amount, cfg.max_amount);
calculator.setRate(cfg.representative_apr);

Frequently asked questions

Is this the same pricing used for real decisions?

It is the representative configuration used for public quotes and display. A firm price for a specific company comes from an application, which can differ based on the company's profile.

Should I cache it?

Yes. Pricing configuration changes rarely; cache it for the advertised max-age and refresh on a schedule rather than per request.

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.