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.
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.
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.
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.
Batch-verify the credentials of a contractor pool before placement. Webhook events let you keep your candidate database in sync without polling.
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.