curl --request POST \
--url https://api.example.com/api/career/jobs/extract \
--header 'Content-Type: application/json' \
--data '
{
"url": "<string>"
}
'{
"company": "<string>",
"id": "<string>",
"role_title": "<string>",
"source_url": "<string>",
"description_excerpt": "<string>",
"duplicate": false,
"employment_type": "<string>",
"location": "<string>",
"normalized_skills": [
"<string>"
],
"posted_at": "<string>",
"project_domain": "<string>",
"raw_skills": [
"<string>"
],
"seniority": "<string>"
}Scrape a job posting URL and return extracted structured data for review.
curl --request POST \
--url https://api.example.com/api/career/jobs/extract \
--header 'Content-Type: application/json' \
--data '
{
"url": "<string>"
}
'{
"company": "<string>",
"id": "<string>",
"role_title": "<string>",
"source_url": "<string>",
"description_excerpt": "<string>",
"duplicate": false,
"employment_type": "<string>",
"location": "<string>",
"normalized_skills": [
"<string>"
],
"posted_at": "<string>",
"project_domain": "<string>",
"raw_skills": [
"<string>"
],
"seniority": "<string>"
}URL submitted for job posting extraction.
1 - 2083Successful Response
Extracted job data preview for user review before saving.