Skip to main content
GET
/
api
/
v2
/
postings
/
{posting_id}
/
stats
Get interviewer stats
curl --request GET \
  --url https://api.heymilo.ai/api/v2/postings/{posting_id}/stats \
  --header 'X-API-KEY: <api-key>'
{
  "data": {
    "posting_id": "<string>",
    "title": "<string>",
    "total_candidates": 123,
    "completed_interviews": 123,
    "object": "posting_stats",
    "name": "senior-software-engineer",
    "average_interview_score": 72.4,
    "average_resume_score": 65.1
  },
  "meta": {}
}

Authorizations

X-API-KEY
string
header
required

API key for authentication. Pass your key in the X-API-KEY header.

Headers

X-API-KEY
string | null
Authorization
string | null
X-Workspace-Id
string | null

Path Parameters

posting_id
string
required

Response

Successful Response

data
PostingStatsResponse · object
required

Aggregate statistics for a single posting.

Returned in a single call without paginating the posting's candidates. The two score fields are independent per-agent averages (not blended): each is null when that agent is not part of the posting's workflow, or when no candidate has produced a score for it yet.

meta
Meta · object

Optional metadata. Shape varies by endpoint.