Get started / Quickstart
Quickstart
Parse a CV and extract structured data in two calls.
Prerequisites
- An API key — see Authentication.
- A CV file (PDF, Word, or image), or a URL to one.
1 · Parse the CV
Get clean markdown and instant contact fields — fast enough to autofill a form.
curl -X POST "https://prs.recruspace.com/v1/parse" \ -H "X-API-Key: $KEY" \ -F "file=@resume.pdf"
The response includes markdown and instant_fields.
Keep the markdown — Stage 2 reuses it.
2 · Extract structured data
Turn that markdown into a 24-field candidate object — no need to re-send the file.
curl -X POST "https://prs.recruspace.com/v1/extract" \ -H "X-API-Key: $KEY" \ -H "Content-Type: application/json" \ -d '{"markdown": "# Jane Doe\n..."}'
The response contains candidate_data — see the
Response schema.
Prefer to hand off the whole job? Send the file to POST /v1/jobs and receive the full result on your webhook.