連結匯入與探索
POST /me/jd/resolve 僅限工作階段
Turn a URL, pasted text, or an existing job into one usable by CV tailoring.
Exactly one of job_slug, url, or text is required. A recognized URL resolves through the same ATS-aware registry /jobs/resolve uses (a network fetch — only the url form is rate-limited); an unrecognized URL falls back to a generic scrape; pasted text is stored as a private, unlisted job. Returns the slug the tailor workspace should open — an existing job, or a freshly created private one. 404 for an unknown job_slug, 422 for a URL nothing could read.
請求內容
job_slugstring- An existing job’s slug.
urlstring- A job posting URL.
textstring- Pasted job description text.
titlestring- Optional hint, used only alongside
text. companystring- Optional hint, used only alongside
text.
curl -X POST "https://freehire.me/api/v1/me/jd/resolve" \
-H 'Content-Type: application/json' -b cookies.txt \
-d '{"url":"https://boards.greenhouse.io/acme/jobs/123"}'{ "data": { "job_slug": "senior-go-engineer-acme-1a2b" } }