Make your first API request to Hirebase in minutes
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(); console.log(data); }; fetchJobs();
{ "jobs": [ { "_id": "6123456789abcdef01234567", "company_name": "TechCorp", "job_title": "Software Engineer", "description": "We're looking for a talented Software Engineer...", "location_type": "Hybrid", "locations": [ { "city": "San Francisco", "region": "CA", "country": "United States" } ], "salary_range": { "min": 120000, "max": 170000, "currency": "USD" } }, // More job objects ... ], "total_count": 342, "company_count": 85, "page": 1, "limit": 5, "total_pages": 69 }