Careerjet API

Jobs / API Key Intermediate HTTP
Varies by plan (check documentation)

Overview

Careerjet is a global job search engine API that aggregates listings from thousands of job sites and company career pages worldwide. By passing your search keyword and location, you can retrieve relevant job results in JSON format. It requires a free affiliate API key and supports multiple countries and languages.

💡

Beginner Tip

Sign up as a Careerjet affiliate partner to obtain your API key, then pass it as the affid parameter. Always include both keywords and location parameters for the most relevant results.

Available Data

vehicle make and model
year and specifications
fuel economy
VIN decode data
Use case: Integrate job search engine data into web and mobile applications

Example Response

JSON Response
{
  "title": "Software Engineer",
  "company": "Tech Corp",
  "location": "Remote",
  "salary_range": "$120,000 - $180,000",
  "posted_date": "2025-01-10",
  "description": "We are looking for an experienced..."
}

Field Reference

jobs List of job listing objects matching the search criteria.
jobs[].title Title of the job position.
jobs[].company Name of the hiring company.
jobs[].locations Location string for the job, e.g., city and country.
jobs[].url Link to the full job listing on Careerjet.
hits Total number of jobs matching the search query.

Implementation Example

// ⚠️ Note: This URL may be a documentation page. Check official docs for actual API endpoint.
const url = "https://www.careerjet.com/partners/api/";
// Replace headers or query params with the values required by this API.
const response = await fetch(url, {
  headers: {
  "X-API-Key": "YOUR_API_KEY"
  }
});
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data);

What Can You Build?

Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.

Common Errors & Troubleshooting

No results returned The combination of keywords and location is too specific or not indexed.
Try broader terms, check that locale_code matches the target country, and ensure your affid is valid.
Invalid affid error The affiliate ID is missing or not yet approved.
Register at careerjet.com/partners and wait for your affid to be activated before making API calls.
HTTP vs HTTPS issues Older documentation examples use http:// which may be blocked by modern browsers.
Always use https://public.api.careerjet.net/ as the base URL for secure requests.

Matrix Score Breakdown

🌐 Reachability 30/30
⚡ Speed 5/20
🔒 Security 5/15
🛠 Developer XP 12/20
✓ Reliability 10/15

Partially tested on Apr 5, 2026

Technical Specifications

Auth API Key
HTTPS NO
CORS UNKNOWN
Category Jobs
Difficulty Intermediate
Verified: 2026-04-04

Similar APIs

View All →