Automate reference checking with a simple REST API. Create checks, poll status, and fetch completed reports.
Include your API key in the X-API-Key header:
X-API-Key: sk_live_your_api_key_here
Create a new reference check.
{
"candidateName": "Jane Smith",
"candidateEmail": "jane@example.com",
"candidatePhone": "+1234567890",
"position": "Software Engineer",
"references": [
{
"name": "John Manager",
"email": "john@company.com",
"phone": "+1234567891",
"relationship": "Manager"
}
]
}
{
"id": 123,
"status": "pending",
"candidateName": "Jane Smith",
"createdAt": "2025-07-27T10:00:00Z",
"estimatedCompletionTime": "2025-07-27T12:00:00Z",
"_links": {
"self": "/api/v1/reference-checks/123",
"report": "/api/v1/reference-checks/123/report"
}
}
Get reference check status.
Get the full report. Only available once status is completed.
100 requests per 15 minutes per API key.
Email api@virvell.ai for assistance.