Jobiflow LogoAPI Docs
ApiApplications

Count applications

Returns application counts grouped by status. Optionally scoped to a specific job listing. Requires scope: `applications:read`

GET
/public/v1/applications/count

Returns application counts grouped by status. Optionally scoped to a specific job listing.

Requires scope: applications:read

Authorization

ApiKeyAuth
X-API-Key<token>

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

jobListingId?string

Scope the count to a specific job listing UUID. Omit to get counts across all listings.

Formatuuid

Response 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"
}