Skip to main content

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.

Base URL

All API requests must be directed to the following base URL:

Authentication

HiredNow APIs use API Key-based authentication.
1

Obtain API Credentials

Contact your HiredNow account representative or reach out to [email protected] to request API access credentials.
2

Set Up Authentication

Include your API key in all requests using the Authorization header: Authorization: Bearer <YOUR_API_KEY>.
curl -X GET "https://api.external.hirednow.ai/v1/campaigns" \
          -H "Authorization: Bearer <YOUR_API_KEY>" \
          -H "Content-Type: application/json"