WORLD'S FIRST CAREER INTELLIGENCE API

Build career apps
in 2 lines of code

CV scoring, salary benchmarking, cover letter generation, and interview prep — all behind one API key. Free forever for 1,000 requests/day.

No credit card required  ·  Key ready in 60 seconds  ·  1,000 req/day free forever
 Score a CV in 2 lines
JavaScript
Python
cURL
const { CareerLM } = require('careerlm')
const client = new CareerLM('csk_free_v1_...')

// Score a CV — returns structured JSON
const score = await client.cv.score(cvText, jobDescription)
console.log(score.ats_score)    // 87
console.log(score.grade)         // "B+"
console.log(score.keyword_match.missing)
// ["Kubernetes", "Terraform"]

// Benchmark salary — 196 countries
const salary = await client.salary.benchmark('Data Engineer', 'NG', {
  city: 'Lagos', currency: 'NGN'
})
console.log(salary.salary_range.median)  // 6800000
from careerlm import CareerLM

client = CareerLM("csk_free_v1_...")

# Score a CV
score = client.cv.score(cv_text, job_description)
print(score["ats_score"])    # 87
print(score["grade"])         # "B+"

# Salary benchmark
salary = client.salary.benchmark("Data Engineer", "NG",
  city="Lagos", currency="NGN")
print(salary["salary_range"]["median"])  # 6800000
curl -X POST https://careerlm-api.careerstudiomax.com/v1/career/cv/score \
  -H "X-Api-Key: csk_free_v1_..." \
  -H "Content-Type: application/json" \
  -d '{
    "cv_text": "Ada Okonkwo, Senior Engineer...",
    "job_description": "We are hiring a...",
    "target_country": "NG"
  }'

# Returns:
# { "ats_score": 87, "grade": "B+", "keyword_match": {...} }
274
Career features
196
Countries (salary)
15
Cover letter modes
1,000
Free requests/day

9 world-first API endpoints

Purpose-built career intelligence — no prompt engineering needed

POST
/career/cv/score
Structured ATS score with keyword gap, section breakdown, and 5 improvements
POST
/career/cv/optimise
Section-by-section CV rewrite in light / moderate / full modes
POST
/career/salary/benchmark
PPP-adjusted salary ranges for 196 countries with skill premiums
POST
/career/cover-letter/generate
15 professional writing modes — achievement-led to executive gravitas
POST
/career/job/match
Multi-dimensional match score with interview probability and apply recommendation
POST
/career/interview/questions
Role-specific questions with STAR model answers and common mistakes
POST
/career/skills/gap
Quantified gap analysis with learning hours, salary impact, and ROI
POST
/career/chat/completions
OpenAI-compatible career chat — migrate from OpenAI in one line
POST
/career/context
World-first: persistent career context across API calls

5 features no other API has

World-firsts that make CareerStudioMax Developer Cloud uniquely valuable

1
Career-native model endpoints
Not generic chat — structured endpoints that return validated career intelligence. /cv/score returns ATS score, keyword gaps, and section breakdown. No prompting required.
2
Career Context persistence
Unlike OpenAI's stateless API, CareerStudioMax Developer Cloud remembers the candidate's role, skills, and goals across every call. Pass a context_id and every endpoint auto-personalises.
3
196-country salary intelligence
Structured, queryable salary data for 196 countries, 1,200+ career paths, and local currency PPP adjustment. Returns skill premiums, negotiation targets, and equity ranges.
4
Zero-cost developer tier — forever
careerlm-flash (cs-haiku) is permanently free at 1,000 req/day. No trial period. No credit card. No expiry. This is Groq-style adoption strategy.
5
SDK in 8 languages
Official SDKs for JavaScript, Python, Go, Rust, PHP, Ruby, Java, and Swift. Career-specific helper methods abstract all AI complexity: client.cv.score(cvText, jd).

Pricing

Start free. Upgrade when you scale.

Free
$0
forever
  • 1,000 requests/day
  • careerlm-flash model
  • CV scoring
  • Career chat
  • Community support
Get started free
Pro
$19
/month
  • 10,000 requests/day
  • careerlm-flash + standard
  • All career endpoints
  • CV optimise
  • Email support
Start Pro
Enterprise
$199
/month
  • Unlimited requests
  • All 3 models
  • Fine-tuning
  • 99.9% SLA
  • Dedicated Slack support
See full pricing

Ready to build?

API key in 60 seconds. No credit card. 1,000 free requests every day.

Get your free API key →
CareerStudioMax Developer Cloud  ·  Docs  ·  Playground  ·  api@careerstudiomax.com