Developers

Verify credentials
from your own code

Submit a candidate, receive a verdict. The Credentic Verify API handles the verification end-to-end and signals you over webhooks when the report is ready — so you can drop credential checks into the products you already ship.

Read the docs →Get an API key
§ Section 1  ·  Where teams use it

Built to plug into
the tools you already run

Credential verification is a step in someone else's workflow — hiring, admissions, KYC. The API is shaped to disappear into those pipelines.

HR & Background Checks

Run candidate credential checks inside your existing HR or ATS pipeline. Submit a verification when an offer goes out, listen for the verdict, advance or pause the hire automatically.

University Admissions

Verify claimed transcripts and graduation records before issuing an offer. Drop the API into your admissions CRM so applications carry a verdict by the time they reach the committee.

Financial Services & KYC

Add credential authenticity to your KYC stack alongside ID and address checks. Useful for products that gate access on professional qualifications — finance, healthcare, regulated trades.

Recruiting & Staffing

Batch-verify the credentials of a contractor pool before placement. Webhook events let you keep your candidate database in sync without polling.

§ Section 2  ·  What it looks like

One call to start
a verification

Authenticate with a bearer key, POST the candidate's claim, get back a reference. Listen on a webhook for the verdict — no polling needed.

curl -X POST https://api.credentic.ai/api/v1/verify/requests \
  -H "Authorization: Bearer $CREDENTIC_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "candidate_name": "Ada Lovelace",
    "candidate_email": "ada@example.com",
    "claimed_degree": "BSc Computer Science",
    "claimed_graduation_year": 2024,
    "claimed_institution_name": "University of Ghana"
  }'

Ship credential checks
this week

The reference docs cover authentication, the full request / response shape, webhook signing, and error handling.

Read the docs →Sign in to get a key