Skip to main content

Get Started with Hirempire API

The Hirempire API allows you to programmatically access and manage your recruitment data, including jobs, applicants, companies, and more. Build powerful integrations, automate workflows, and create custom applications with our RESTful API.

Base URL

All API requests should be made to:
https://api.hirempire.com/v1

API Features

RESTful Architecture

  • Clean, intuitive endpoints following REST conventions
  • Consistent response formats across all endpoints
  • Standard HTTP methods (GET, POST, PUT, DELETE)

Secure Authentication

  • Bearer token authentication
  • Secure token management with expiration controls

Comprehensive Data Access

  • Jobs: Create, update, and manage job postings
  • Candidates: Access candidate profiles, applications, sourcing prospects, and uploads
  • Companies: Manage company profiles
  • Webhooks: Subscribe to workspace events in real time

Developer-Friendly

  • Detailed documentation with code examples
  • Multiple programming language examples
  • Interactive API playground for testing
  • Pagination and filtering support

Quick Start Guide

1

Create Your Account

If you haven’t already, sign up for a Hirempire account and verify your email.
2

Generate API Token

Visit your API Tokens page to create your first API token.
3

Make Your First Request

Test your setup with a simple API call to retrieve your jobs:
curl -H "Authorization: Bearer YOUR_TOKEN" https://api.hirempire.com/v1/jobs
4

Explore Endpoints

Browse the documentation sidebar to discover all available endpoints and their capabilities.

Response Format

All API responses follow a consistent JSON structure:
{
  "success": true,
  "data": {
    // Response data here
  },
  "message": "Optional success message"
}
Error responses include additional error information:
{
  "success": false,
  "error": {
    "code": "ERROR_CODE",
    "message": "Human-readable error description"
  }
}

Rate Limits

To ensure fair usage and optimal performance:
  • Starter Plan: 500 requests per hour
  • Pro Plan: 1,000 requests per hour
  • Premium Plan: 5,000 requests per hour

Need Help?

Documentation

Explore our comprehensive API reference and guides

Support

Contact our team at support@hirempire.com
Ready to get started? Head over to Authentication to create your first API token!