POST
/
match-insights
/
recommend-candidates
curl --request POST \
  --url https://public.api.inop.ai/v1/match-insights/recommend-candidates \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "jobDescription": "Senior Backend Engineer with experience in Python and Django.",
  "candidates": [
    {
      "first_name": "John",
      "last_name": "Doe",
      "linkedin_url": "https://linkedin.com/in/johndoe",
      "email": "johndoe@example.com",
      "phone_number": "+1234567890",
      "resume": "https://example.com/resume/johndoe.pdf"
    },
    {
      "first_name": "Jane",
      "last_name": "Smith",
      "linkedin_url": "https://linkedin.com/in/janesmith",
      "email": "janesmith@example.com",
      "phone_number": "+0987654321",
      "resume": "https://example.com/resume/janesmith.pdf"
    }
  ]
}'
{
  "success": true,
  "messages": "",
  "data": {
    "match_id": "abc-d1234",
    "recommendation_insights": {
      "score": 85,
      "strengths": [
        "JavaScript",
        "Problem-solving",
        "Teamwork"
      ],
      "areas_for_improvement": [
        "Cloud infrastructure"
      ],
      "cultural_fit": "High Alignment",
      "long_term_potential": "Strong"
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
Candidate to generate recommendation insights
jobDescription
string
default:Senior Backend Engineer with experience in Python and Django.
candidates
any[]

Response

200
application/json
job titles response
success
boolean
default:true
messages
string
default:
data
object