RecruspaceParse API
Search⌘K
Try it →
Get started  /  Quickstart

Quickstart

Parse a CV and extract structured data in two calls.

Prerequisites

1 · Parse the CV

Get clean markdown and instant contact fields — fast enough to autofill a form.

cURLbash
curl -X POST "https://prs.recruspace.com/v1/parse" \
  -H "X-API-Key: $KEY" \
  -F "[email protected]"

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.

cURLbash
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.

Next