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. It runs in two stages you call independently.

Two stages

Why two stages? Autofill stays fast and cheap, while the heavier structured step runs only when you need it — reusing the Stage 1 markdown, so a CV is never processed twice.

Your first request

Send a CV, get back markdown and instant fields:

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

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

Endpoints

POST/v1/parse
POST/v1/extract
POST/v1/jobs

Next steps