POST /v1/parse
X-API-Key: jd_growth_xxxxxxxxxxxx
{
"text": "Senior Python Engineer, platform team.
5+ years Python, FastAPI, PostgreSQL, AWS.
$140k–$180k. Fully remote."
}
{
"data": {
"title": "Senior Python Engineer",
"seniority": "senior",
"tech_stack": ["Python","FastAPI","PostgreSQL","AWS"],
"salary_min": 140000,
"salary_max": 180000,
"remote_policy": "remote",
"visa_sponsorship": false
},
"meta": { "cached": false, "calls_remaining": 999 }
}
import requests
res = requests.post(
"https://yourapi.com/v1/parse",
headers={"X-API-Key": "jd_growth_xxxx"},
json={"text": job_description_text}
)
data = res.json()["data"]
print(data["title"]) # "Senior Python Engineer"
print(data["salary_min"]) # 140000