> ## Documentation Index
> Fetch the complete documentation index at: https://docs.inop.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Get a Matched Candidate

> Get a single skill based on the ID supplied



## OpenAPI

````yaml GET /match-insights/{match_id}
openapi: 3.1.0
info:
  title: INOP
  description: >-
    INOP API provides a powerful suite of endpoints designed to streamline and
    enhance the candidate screening process using AI-driven insights.
  license:
    name: MIT
    identifier: ''
  version: 1.0.0
servers:
  - url: https://public.api.inop.ai/v1/
security:
  - bearerAuth: []
paths:
  /match-insights/{match_id}:
    get:
      description: Get a single skill based on the ID supplied
      parameters:
        - name: match_id
          in: path
          description: The unique identifier of the candidate match
          required: true
          schema:
            type: string
      responses:
        '200':
          description: >-
            Retrieves match insights for a specific candidate based on their
            match ID.
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    default: true
                  messages:
                    type: string
                    default: ''
                  data:
                    type: object
                    default:
                      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
        '400':
          description: unexpected error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    Error:
      required:
        - error
        - message
      type: object
      properties:
        error:
          type: integer
          format: int32
        message:
          type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````