POST
/
match-insights
curl --request POST \
  --url https://public.api.inop.ai/v1/match-insights \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "jobDescription": "Full Stack Engineer with expertise in React and Node.js...",
  "candidates": {
    "first_name": "John",
    "last_name": "Doe",
    "linkedin_profile": "https://linkedin.com/in/johndoe",
    "email": "john.doe@example.com",
    "phone": "+1234567890",
    "resume": "Base64EncodedResumeData"
  }
}'
{
  "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"
    }
  }
}

Creates a new match recommendation and returns a unique match ID along with match insights data.

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:Full Stack Engineer with expertise in React and Node.js...
candidates
object

Response

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