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

Parse API

The CV parsing API for recruiting products. Send a résumé, get clean markdown, instant contact fields, and structured candidate data — nothing is stored.

Parse API is a stateless service: it fetches the document, processes it in memory, returns the result, and keeps nothing. The API is a small set of composable endpoints you combine to fit your flow.

Endpoints

Recommended integration: when a candidate uploads a CV, fire /v1/autofill and /v1/parse-extract in parallel — the form fills instantly while both artifacts land in your storage. On submit, the candidate's own edits override the extracted fields. Full recipe in the Quickstart.

Your first request

Fill a form the moment a CV is uploaded:

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

Continue with the Quickstart, or run it live in Try it.

All endpoints

POST/v1/autofill
POST/v1/parse
POST/v1/extract
POST/v1/parse-extract
POST/v1/jobs

Next steps