Welcome
This guide provides a comprehensive description of the API, including authentication methods, available endpoints, request and response formats, and recommended integration practices. It is intended to serve as a reference for developers to ensure reliable and efficient integration with the provided services.Prerequisites
Before you begin:- Obtain your API key from your Skillfully HiredNow account representative
- Have at least one campaign created in the HiredNow dashboard
Base URL
All API requests must be directed to the following base URL:Authentication
HiredNow APIs use API Key-based authentication.
Obtain API Credentials
Contact your HiredNow account representative to request API access credentials.
Typical Integration Pattern
For near-real-time syncs, poll every 2 minutes using incremental fetching:- On first sync: fetch all results with
sort=asc - Store the
order_indexfrom the last record - On subsequent syncs: pass
starting_after=<last_order_index>to fetch only new results
Key Features
Pagination Support
Pagination Support
All list endpoints support cursor-based pagination for efficient data retrieval. See Pagination for implementation details.
Advanced Filtering
Advanced Filtering
Filter results by campaign status, date ranges, candidate attributes, and custom criteria. Learn more about Filtering.
Rate Limiting
Rate Limiting
API requests are rate-limited to ensure service stability. Standard rate limit is 100 requests per minute per API key.

