Skip to main content
Stay up to date with every change to the Hirempire API. Breaking changes are marked clearly.
May 2026
New
Google Jobs sync field
Jobs created via the API now include a google_jobs_indexed boolean in the response, indicating whether the listing has been submitted to Google Jobs indexing.
April 2026
New
Webhook event types expanded
Five new webhook event types are now available:
EventDescription
candidate.stage_changedFired when a candidate moves pipeline stage
candidate.hiredFired when a candidate is marked as hired
interview.scheduledFired when a meeting is booked
requisition.approvedFired when a requisition is approved by HR
ai_prescreen.completedFired when an AI Pre-Screen session ends
See the Event Types reference for full payloads.
April 2026
New
Create Company endpoint
Added POST /companies — create a company directly via the API. See Create Company for the full schema.
April 2026
New
Applicant status values expanded
The status field on applicants now supports two additional values:
  • scheduled — interview has been scheduled
  • met — interview has been completed
These align with the pipeline stages available in the Hirempire UI and MCP Server.
March 2026
New
Webhooks — real-time event delivery
The Hirempire Webhooks API is now available. Subscribe to workspace events and receive instant POST notifications to your endpoint.Supported events at launch:
EventTrigger
job_addedA new job is created
job_updatedA job’s details are changed
job_deletedA job is deleted
new_applicantA candidate applies to a job
cv_processedCV parsing by AI completes
meeting_createdAn interview is scheduled
application_status_changedA candidate’s status changes
Endpoints: POST /webhooks (create), GET /webhooks (list), PUT /webhooks/:id (update).Each registered webhook goes through a challenge verification step — your endpoint must echo back the challenge token before delivery begins.See the Webhooks reference for full setup instructions and payload schemas.
March 2026
New
Rate limits introduced
API rate limits are now enforced per plan. Exceeding the limit returns HTTP 429 Too Many Requests.
PlanRequests per hour
Free100
Starter500
Pro1,000
Premium5,000
March 2026
New
Bearer token scopes
API tokens now support granular scopes. When generating a token from Settings → Integrations → API Tokens, you choose which resource groups the token can access:
  • Jobs — read and write job postings
  • Applicants — read and update applicant records
  • Companies — create and read company profiles
Requests that use a token without the required scope return:
{
  "success": false,
  "error": "Token is missing required scope 'Jobs'"
}
March 2026
New
Initial API launch — Jobs and Applicants endpoints
The Hirempire REST API launched with full Jobs and Applicants coverage.Jobs endpoints:
MethodPathDescription
GET/v1/jobsList all jobs
GET/v1/jobs/:idGet a specific job
POST/v1/jobsCreate a job
PUT/v1/jobs/:id/statusUpdate job status (Active / Paused / Closed)
DELETE/v1/jobs/:idDelete a job
Applicants endpoints:
MethodPathDescription
GET/v1/applicantsList all applicants across all jobs
GET/v1/applicants/:idGet a specific applicant
GET/v1/jobs/:id/applicantsGet all applicants for a specific job
PUT/v1/applicants/:id/statusUpdate applicant status
Applicant status values at launch: new, reviewed, accepted, rejectedAll endpoints require Bearer token authentication. See Get Started for base URL, authentication, and response format details.