Job interactions
GET /me/tracking/pipeline Session or API key
Your application-pipeline snapshot (counts per stage).
The total application count and the count at each stage, aggregated server-side over all of your applications. Every stage of the vocabulary is present, zero included, and the counts always sum to applications. An application with applied_at set but no explicit stage counts as applied.
curl "https://freehire.me/api/v1/me/tracking/pipeline" -H "Authorization: Bearer $HIREALL_API_KEY"{
"data": {
"applications": 12,
"stages": {
"applied": 4,
"screening": 2,
"responded": 1,
"interview": 2,
"offer": 1,
"accepted": 1,
"rejected": 1,
"withdrawn": 0
}
}
}