Skip to main content

Overview

The One Click Apply API requires a a resume key. Use the /upload_resume API to get a key you can use with our /apply API. You only have to create a key for a resume once and you can reuse it as much as you want. You need to authorize the call with your API Key and it only accepts PDF files.

Example Implementation

curl --request POST \
--url https://api.oneclickapply.co/api/v1/upload_resume \
--header 'API-Key: YOUR_API_KEY' \
--form 'file=@/path/to/your/Resume.pdf'
{
    "status": 200,
    "message": "Resume uploaded successfully",
    "key": "uidofresume"
}