For Agents
Run UK identity, KYC, and AML checks by creating registrations, adding ID documents and selfie or liveness images, and pulling back report PDFs and verification status. Use it for property, financial, or legal customer onboarding flows.
Use for: Create a new Credas registration for a customer being onboarded, Upload an ID document image to an existing registration, Run a credit and bankruptcy check on a named individual, Verify a UK bank account number and sort code before a payout
Not supported: Does not handle payments, ongoing transaction monitoring, or non-UK government data sources - use for UK identity, AML, and property onboarding checks only.
The Credas API powers the identity verification, AML, and onboarding checks used by regulated UK businesses such as estate agents, conveyancers, and lettings firms. It exposes registrations as the central object that group an individual or company subject's documents, biometric images, credit and bankruptcy checks, property register lookups, and final report exports. The API also produces secure web verification links and PDF reports so a calling application can hand off the customer-facing capture flow or share completed evidence with a third party.
Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Credas API, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.
Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.
Step 1: Jentic One Host machine
# On the machine that will host your Jentic One instance:
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Fcredas.co.uk%2Fcredas" | shStep 2: Agent machine
# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Fcredas.co.uk%2Fcredas" | sh
jentic register # connects your agent to your Jentic One instanceJentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.
What an agent can do with Credas API.
Create a registration record for an individual or company subject and resend the customer invitation when needed
Attach an ID document, selfie, and liveness image to a registration and retrieve those images back per registration
Run a credit-status check that flags bankruptcy, insolvency, CCJs, and active company directorships against a subject
Trigger a property register lookup and retrieve the resulting registry data tied to a registration
Verify a UK bank account and look up companies by Companies House number through dedicated endpoints
Export a registration's evidence as a full PDF report, a Share Code settlement PDF, or a section-filtered PDF
Generate secure customer-facing report-view or web-verification URLs by registration ID or your own reference ID
Patterns agents use Credas API for, with concrete tasks.
★ UK customer onboarding with KYC
Onboard a UK customer end to end by creating a registration, capturing or uploading an ID document and a selfie or liveness image, and pulling the completed PDF report once checks have run. The single 'instant' registration endpoint creates the record and attaches an ID document and optional selfie in one call, which is convenient for self-serve flows where the user has already taken a photo.
Call POST /api/registrations/instant with the subject's details, ID document image, and selfie, then poll GET /api/registrations/{id}/summary until checks complete and call GET /api/registrations/{id}/pdf-export.
AML and credit screening for property deals
Screen a buyer or tenant for AML risk by combining a credit-status check that surfaces bankruptcy, insolvency, CCJs and directorships with a property register lookup against the same registration. The agent can then download the settlement-status Share Code PDF when proof of funds is required by the conveyancer.
Call POST /api/credit-status/perform and POST /api/property-register against an existing registrationId, then call GET /api/registrations/{id}/pdf-settlement-status to retrieve the Share Code PDF.
Bank account and company verification
Verify that a sort code and account number belong to the named payer before settling a transaction, and confirm the counterparty company is current at Companies House. The pair of endpoints is useful for finance teams checking supplier details ahead of a first payment without running a full registration.
Call POST /api/bank-accounts/verify with the sort code, account number and account name, then POST /api/companies with the Companies House number to confirm the linked company.
Agent-driven onboarding via Jentic
Let an agent run a Credas onboarding without hard-coding endpoint URLs by routing through Jentic. The agent searches Jentic for an identity verification operation, loads the matching Credas schema, and executes the registration plus document upload steps while Jentic injects the API credential from the vault.
Through Jentic, run search('start a UK identity verification'), load the Credas POST /api/registrations operation, then chain POST /api/images/id-document and GET /api/registrations/{id}/summary.
37 endpoints — the credas api powers the identity verification, aml, and onboarding checks used by regulated uk businesses such as estate agents, conveyancers, and lettings firms.
METHOD
PATH
DESCRIPTION
/api/registrations
Create a new registration
/api/registrations/instant
Create a registration with ID document and optional selfie in one call
/api/images/id-document
Add an ID document image to a registration
/api/credit-status/perform
Run credit, bankruptcy, CCJ, and directorship checks
/api/bank-accounts/verify
Verify UK bank account details
/api/companies
Look up a company by Companies House number
/api/registrations/{id}/pdf-export
Download the full PDF report for a registration
/api/web-verifications/by-registrationid
Get a secure web verification link by registration ID
/api/registrations
Create a new registration
/api/registrations/instant
Create a registration with ID document and optional selfie in one call
/api/images/id-document
Add an ID document image to a registration
/api/credit-status/perform
Run credit, bankruptcy, CCJ, and directorship checks
/api/bank-accounts/verify
Verify UK bank account details
/api/companies
Look up a company by Companies House number
/api/registrations/{id}/pdf-export
Download the full PDF report for a registration
/api/web-verifications/by-registrationid
Get a secure web verification link by registration ID
What agents get from Jentic-routed access to this vendor.
Setup
Wiring Credas by hand means managing its API key against the pi-api.credas.co.uk host and sequencing registration, document upload, and check calls across a 37-endpoint onboarding surface. Through Jentic you install once, import Credas from the API Directory, store the key once, and your agent calls it.
Permission scoping
Credas puts the registration id in the URL path (/api/registrations/{id}/pdf-export), so a rule can pin the agent to reading the registrations you allow. You choose the operations it may call, so credit-status or bank-account checks are not included unless you add them.
Credential isolation
Your Credas API key is stored once, encrypted, by your own Jentic One instance and applied to pi-api.credas.co.uk requests at execution time. It never enters the agent's prompt, logs, or context.
Intent-based discovery
Agents search Jentic by intent such as 'start a UK identity verification' or 'run a bankruptcy check', and Jentic returns the matching Credas operation with its input schema so the agent calls the right endpoint without browsing the reference docs.
Alternatives and complements available in the Jentic catalogue.
Specific to using Credas API through Jentic.
What authentication does the Credas API use?
Credas issues per-tenant API credentials that are passed on each call to https://pi-api.credas.co.uk. The OpenAPI spec does not declare a securityScheme block, so refer to your Credas onboarding pack for the exact header name. Through Jentic, the credential is stored encrypted and injected at request time so it never enters the agent's prompt.
Can I run a credit and bankruptcy check with the Credas API?
Yes. POST /api/credit-status/perform against an existing registrationId runs a check that identifies bankruptcy, insolvency, CCJs, and active company directorships for the subject of that registration.
How do I attach an ID document and selfie to a Credas registration?
Create the registration with POST /api/registrations, then call POST /api/images/id-document and POST /api/images/selfie with the registrationId. To do all three in one round trip, use POST /api/registrations/instant which creates the record and attaches an ID document plus optional selfie in a single call.
How do I retrieve a completed Credas report as a PDF?
Call GET /api/registrations/{id}/pdf-export for the full report, GET /api/registrations/{id}/pdf-export-sections for a section-filtered version, or GET /api/registrations/{id}/pdf-settlement-status for the Share Code settlement status PDF.
What are the rate limits for the Credas API?
The published OpenAPI spec does not declare rate limits. Limits are set per Credas contract, so confirm your tenant's quota with your account manager. Build retries around HTTP 429 responses on POST /api/credit-status/perform and the image upload endpoints, which are the heaviest in the API.
How do I start a Credas onboarding flow through Jentic?
Install Jentic with pip install jentic, then async-search for 'start a UK identity verification'. Jentic returns Credas POST /api/registrations and the related image and check operations; load the registration schema, execute it, and chain POST /api/images/id-document. Jentic attaches the Credas credential automatically.
Can I limit what my agent is allowed to do with the Credas API?
Yes. Because you run Jentic One yourself, your own rules decide which Credas operations and credentials the agent may use, so you pick exactly what it can call. Since Credas puts the registration id in the URL path, such as GET /api/registrations/{id}/pdf-export, a rule can pin the agent to reading only the registrations you allow. Sensitive operations like POST /api/credit-status/perform or POST /api/bank-accounts/verify are not available to the agent unless you explicitly add them.
GET STARTED