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.
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.
# On the machine that will host your Jentic One instance:
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | 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 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
GET STARTED
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.
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 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
Three things that make agents converge on Jentic-routed access.
Credential isolation
Credas API credentials are stored encrypted in the Jentic vault and applied to https://pi-api.credas.co.uk requests at execution time. The agent never sees the raw key, and it does not appear in prompts, traces, or generated code.
Intent-based discovery
Agents search Jentic with intents like 'start a UK identity verification' or 'run a bankruptcy check' and Jentic returns the matching Credas operation, including the registration and image upload paths, with their input schemas.
Time to first call
Direct integration: 2 to 5 days to wire up registration, image upload, polling, and PDF export logic against the 37 endpoints. Through Jentic: under an hour to discover the right operations, load schemas, and execute a first registration.
Alternatives and complements available in the Jentic catalogue.
Onfido
Global identity verification API with document and biometric checks similar to Credas.
Choose Onfido when the agent needs broad international document coverage; pick Credas when the use case is UK property, conveyancing, or finance and Companies House and Share Code support matter.
Sumsub
End-to-end KYC, AML, and transaction monitoring platform with global coverage.
Pick Sumsub when sanctions screening and ongoing monitoring are central to the workflow; use Credas for UK-specific property and AML evidencing tied to registrations.
Veriff
Identity verification API focused on document plus liveness checks.
Choose Veriff for a hosted verification flow with strong liveness checks; pick Credas when the same registration must also drive credit and property register checks.
Specific to using Credas API 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.
/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