POST
/
v1
/
recruiter
/
cv
curl --request POST \
  --url https://api.linkupapi.com/v1/recruiter/cv \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <x-api-key>' \
  --data '{
  "application_id": "<string>",
  "login_token": "<string>",
  "country": "<string>"
}'

This endpoint retrieves the CV/resume document for a specific candidate who has applied to your LinkedIn job posting.

This endpoint costs 1 credit per request.

Header Parameters

x-api-key
string
required

Your API key

Body Parameters

application_id
string
required

LinkedIn application ID of the candidate (you can get it with the /recruiter/candidates endpoint)

login_token
string
required

LinkedIn authentication cookie obtained from the login/verify process

country
string
default:"FR"

Country code for proxy selection. Available: (US,UK,FR)

Response

The response is the raw PDF or document file of the candidate’s CV, returned with appropriate headers for download.

  • Content-Type: Usually “application/pdf” (or the detected content type of the document)
  • Content-Disposition: attachment; filename=“cv__.pdf”

Example Request

curl --request POST \
  --url https://api.linkupapi.com/v1/recruiter/cv \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: YOUR_API_KEY' \
  --output downloaded_cv.pdf \
  --data '{
  "login_token": "YOUR_LINKEDIN_LOGIN_TOKEN",
  "country": "FR",
  "application_id": "31461710693"
}'