cURL
curl -X POST https://api.resumeranker.com/rank \
-H "Authorization: Bearer <API_KEY>" \
-d '{"resumes": ["..."], "job_description": "..."}'
Python
import requests
resp = requests.post(
"https://api.resumeranker.com/rank",
headers={"Authorization": "Bearer <API_KEY>"},
json={"resumes": ["..."], "job_description": "..."}
)
print(resp.json())
Node.js
fetch("https://api.resumeranker.com/rank", {
method: "POST",
headers: { "Authorization": "Bearer <API_KEY>", "Content-Type": "application/json" },
body: JSON.stringify({ resumes: ["..."], job_description: "..." })
})
.then(res => res.json())
.then(console.log)