curl --location --request POST 'https://api.figolabs.ai/api/v1/cv/scoring' \
--header 'Authorization: Bearer {Your-API-Key}' \
--header 'Content-Type: application/json' \
--data-raw '{
"cvs": [
"https://figolabs.ai/candidate_cv.pdf"
],
"jobDescription": "frontend developer. Required skills:......."
}'
{
"responseCode": "00",
"responseMessage": "Successful",
"responseData": [
{
"name": "John Fred",
"score": 90,
"jobRole": "frontend developer",
"reason": "The candidate has strong skills in Javascript, HTML, and React, which align well with the frontend developer role. However, the CV lacks specific mention of CSS or experience with frontend frameworks beyond React."
}
]
}