Quickstart

Quickstart: Credicorp public API for a no-code / automation workflow

You want to connect a form or CRM to Credicorp without writing a service, using a no-code automation tool. 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

webhook actionPOST from any tool
map fieldsForm → enquiry
idempotentSet the header

Configure a webhook action

In Zapier, Make or n8n, add a 'Webhook / HTTP POST' step pointing at the enquiries endpoint. Map your form fields to the enquiry payload and set the headers:

{
  "url": "https://api.credicorp.co.uk/public/v1/enquiries",
  "method": "POST",
  "headers": {
    "Content-Type": "application/json",
    "Idempotency-Key": "{{submission_id}}"
  },
  "body": {
    "company": { "name": "{{company_name}}" },
    "contact": { "email": "{{email}}" },
    "amount": "{{amount}}"
  }
}

Use the submission id as the key

Set Idempotency-Key to the form submission id so a retried automation run never creates a duplicate enquiry. Then route the returned handoff_url back to the applicant by email.

Frequently asked questions

Can I do this without code?

Yes — a single HTTP POST action in any no-code tool submits an enquiry. Map the fields and set the two headers.

How do I prevent duplicate leads?

Use the form or record id as the idempotency key so re-runs of the automation return the original enquiry.

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.