Skip to main content

Setting Up Authentication

  1. Create an account: Sign up at hirebase.org/signup
  2. Generate API credentials: From your dashboard, navigate to API Settings to generate your credentials
  3. Include credentials: Add your credentials to the request headers
Required
To successfully authenticate requests to our API, you must include your API key in the request headers. You can find your key under Profile → API Key at https://hirebase.org
To authenticate requests, include the following headers: X-API-Key: your_api_key Content-Type: application/json All requests should be made to the following base URL: https://api.hirebase.org/

Example Request with Authentication

const fetchJobs = async () => {
  const response = await fetch('https://api.hirebase.org/v2/jobs/search', {
    method: 'GET',
    headers: {
      'Content-Type': 'application/json',
      'X-API-Key': 'YOUR_API_KEY',
    },
  });
  
  const data = await response.json();
  return data;
};