GET
/
match-insights
/
{match_id}
curl --request GET \
  --url https://public.api.inop.ai/v1/match-insights/{match_id} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "messages": "",
  "data": {
    "match_id": "abc-d1234",
    "candidate": {
      "first_name": "John",
      "last_name": "Doe",
      "linkedin_profile": "https://linkedin.com/in/johndoe",
      "email": "john.doe@example.com"
    },
    "recommendation_insights": {
      "score": 85,
      "strengths": [
        "JavaScript",
        "Problem-solving",
        "Teamwork"
      ],
      "areas_for_improvement": [
        "Cloud infrastructure"
      ],
      "cultural_fit": "High",
      "long_term_potential": "Strong"
    }
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

match_id
string
required

The unique identifier of the candidate match

Response

200
application/json
Retrieves match insights for a specific candidate based on their match ID.
success
boolean
default:true
messages
string
default:
data
object