cURL
curl --request GET \ --url 'https://public.api.inop.ai/v1/match-insights?job_post_id={jobId}' \ --header 'Authorization: Bearer <token>'
{ "success": true, "messages": "", "data": [ { "match_id": "abc-123", "candidate": { "first_name": "John", "last_name": "Doe", "linkedin_url": "https://linkedin.com/in/johndoe", "email": "johndoe@example.com" }, "insights": { "recommendation_score": 87 } }, { "match_id": "xyz-789", "candidate": { "first_name": "Jane", "last_name": "Smith", "linkedin_url": "https://linkedin.com/in/janesmith", "email": "janesmith@example.com" }, "insights": { "recommendation_score": 92 } } ] }
Returns all candidates by job ID
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The maximum number of results to return
All candidates response
The response is of type object.
object