Count applications
Returns application counts grouped by status. Optionally scoped to a specific job listing. Requires scope: `applications:read`
Returns application counts grouped by status. Optionally scoped to a specific job listing.
Requires scope: applications:read
Authorization
ApiKeyAuth API key issued by Jobiflow. Pass it in the X-API-Key request header.
Create keys via the company dashboard (Settings → API Keys) or via POST /settings/api-keys.
In: header
Query Parameters
Scope the count to a specific job listing UUID. Omit to get counts across all listings.
uuidResponse Body
application/json
application/json
application/json
curl -X GET "https://example.com/public/v1/applications/count"{
"ACTIVE": 14,
"SHORTLISTED": 5,
"REJECTED": 3,
"SELECTED": 1
}{
"status": 401,
"error": "UNAUTHORIZED",
"message": "Invalid or missing API key",
"timestamp": "2026-05-17T12:00:00Z",
"path": "/public/v1/job-listings"
}{
"status": 403,
"error": "FORBIDDEN",
"message": "Scope 'jobs:write' is required",
"timestamp": "2026-05-17T12:00:00Z",
"path": "/public/v1/job-listings"
}Get an application GET
Returns detailed information about a single application, including the full job listing and candidate summary. Requires scope: `applications:read`
Update application status PATCH
Moves an application to a new pipeline stage. Triggers a `application.status_changed` webhook event if webhooks are configured. Requires scope: `applications:write`