Fetching data...
Developer API Reference
Build powerful integrations with our platform APIs.
Fetching data...
Build powerful integrations with our platform APIs.
Build powerful integrations with our platform APIs.
Dynamic API reference synchronized with our latest backend endpoints.
/api/v1/analytics/overviewReturns high-level metrics about candidates, funnel conversion, and interview performance for the authenticated tenant.
daysintegerLookback period in days for volume metrics
Example Request
bashcurl -X GET "https://your-tenant.peoplelensai.com/api/v1/analytics/overview" \
-H "Authorization: Bearer <YOUR_API_KEY>" \
-H "Content-Type: application/json" Example Response
json{
"candidate_count": 150,
"recent_candidate_count": 45,
"funnel": {
"applied": 60,
"screening": 40,
"interviewing": 30,
"offer": 10,
"hired": 5,
"rejected": 5
},
"time_to_hire": 18,
"avg_score": "85.5",
"pass_rate": 45,
"total_interviews": 120
}