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.
Body Parameters
LinkedIn application ID of the candidate (you can get it with the /recruiter/candidates endpoint)
LinkedIn authentication cookie obtained from the login/verify process
Country code for proxy selection. Available: (US, UK, FR, DE, NL, IT, IL, CA, BR, ES, IN)
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"
}'