GET
/
match-insights?job_post_id=
{jobId}
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
      }
    }
  ]
}

Retrieves all matched candidates for a specific job post.

Authorizations

Authorization
string
header
required

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

Query Parameters

limit
integer

The maximum number of results to return

Response

200
application/json
All candidates response
success
boolean
default:true
messages
string
default:
data
any[]