cURL
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": "[email protected]" }, "recommendation_insights": { "score": 85, "strengths": [ "JavaScript", "Problem-solving", "Teamwork" ], "areas_for_improvement": [ "Cloud infrastructure" ], "cultural_fit": "High", "long_term_potential": "Strong" } } }
Get a single skill based on the ID supplied
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The unique identifier of the candidate match
Retrieves match insights for a specific candidate based on their match ID.