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

Authentication

Every request is authenticated with an API key sent in the X-API-Key header.

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

Keys

Keys are issued to you by your integration contact. A request with a missing or invalid key returns 401.

ResponseMeaning
401 Missing X-API-Key headerNo key was sent.
401 Invalid API keyThe key is not recognized.

Keep keys server-side

The Try it console keeps your key only in the browser session and sends it as the same header.