Integrations
Connect InpromptiFy to your hiring stack
Use our REST API and webhooks to integrate AI proficiency assessments into any ATS, HR platform, or recruitment tool. No vendor lock-in.
Create + Invite + Score
Create assessments, send invite links, and retrieve scored results — all via API. Full CRUD operations on tests and candidates.
Real-time event push
Receive instant notifications when candidates complete tests, scores are calculated, or invitations are sent. HMAC-signed payloads for security.
White-label assessments
Embed the assessment experience directly in your platform with customizable branding. Business and Enterprise plans.
Applicant Tracking Systems
Greenhouse
API ReadySend assessment links from Greenhouse. Results sync back as scorecards.
Lever
API ReadyTrigger assessments from Lever pipeline stages. Scores appear in candidate profiles.
Ashby
API ReadyIntegrate via API to embed assessments into your Ashby hiring workflow.
Workable
API ReadyAdd AI proficiency testing as an assessment step in Workable.
BambooHR
API ReadyConnect assessments to BambooHR candidate records via webhook.
SmartRecruiters
Coming SoonEmbed InpromptiFy assessments in SmartRecruiters pipelines.
HR Platforms
Rippling
API ReadyAssess employee AI skills during onboarding or internal training.
Deel
API ReadyAdd AI proficiency screening for remote hiring workflows.
Gusto
Coming SoonIntegrate AI skill assessments into your Gusto HR pipeline.
Recruitment Agencies
Bullhorn
API ReadyAdd verified PromptScores to candidate profiles in Bullhorn.
JobAdder
API ReadyTrigger assessments and receive results in JobAdder.
Vincere
Coming SoonEmbed AI proficiency data in Vincere candidate records.
Communication & Workflow
Slack
Via WebhooksGet real-time notifications when candidates complete assessments.
Microsoft Teams
Via WebhooksPush assessment results and alerts to Teams channels.
Zapier
Via WebhooksConnect InpromptiFy to 5,000+ apps. Trigger workflows on assessment events.
Make (Integromat)
Via WebhooksBuild custom automations with assessment data via webhooks.
Assessment Platforms
TestGorilla
API ReadyComplement TestGorilla's skill tests with live AI proficiency scoring.
Codility
Coming SoonAdd AI-assisted coding assessments alongside traditional code tests.
HackerRank
Coming SoonPair HackerRank coding tests with InpromptiFy AI proficiency scores.
Quick Start
Three API calls to integrate AI proficiency testing into your pipeline.
POST /api/v1/tests/createcurl -X POST https://inpromptify.com/api/v1/tests/create \
-H "Authorization: Bearer sk-inp-..." \
-H "Content-Type: application/json" \
-d '{
"title": "AI Proficiency Screen",
"taskPrompt": "Write a marketing email for a B2B SaaS launch",
"maxAttempts": 3,
"timeLimitMinutes": 10,
"tokenBudget": 2000
}'POST /api/v1/tests/:id/invitecurl -X POST https://inpromptify.com/api/v1/tests/42/invite \
-H "Authorization: Bearer sk-inp-..." \
-d '{"email": "candidate@company.com", "name": "Jane Smith"}'GET /api/v1/tests/:id/results// Response
{
"candidates": [
{
"name": "Jane Smith",
"email": "candidate@company.com",
"score": 82,
"grade": "A",
"percentile": 78,
"dimensions": {
"promptQuality": 88,
"efficiency": 76,
"speed": 85,
"responseQuality": 80,
"iterationIQ": 74
},
"recommendation": "Strong Hire",
"completedAt": "2026-03-04T12:00:00Z"
}
]
}Webhook Events
Subscribe to events and receive real-time HTTPS POST notifications.
test.createdFired when a new assessment is created via API or dashboard
candidate.invitedFired when a candidate receives an assessment invitation
candidate.scoredFired when a candidate completes an assessment and is scored
test.completedFired when all invited candidates have completed an assessment
All webhook payloads are signed with HMAC-SHA256:
// Verify signature
const signature = crypto
.createHmac("sha256", webhookSecret)
.update(requestBody)
.digest("hex");
if (signature === request.headers["x-inpromptify-signature"].replace("sha256=", "")) {
// Valid webhook
}Ready to integrate?
API access is available on Business plans and above. Start with a free account and upgrade when you need programmatic access.