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

# v1 Model Detail

> Retrieve details of a specific model based on the risk type and sub-type.



## OpenAPI

````yaml GET /leaderboard/details/{modelName}
openapi: 3.0.0
info:
  title: Enkrypt AI APIs
  version: 2.0.0
servers:
  - url: https://api.enkryptai.com
security:
  - apiKeyAuth: []
tags:
  - name: Guardrails
  - name: Code of Conduct
  - name: Endpoints
  - name: Datasets
  - name: Redteam
  - name: Deployments
  - name: AI Proxy
  - name: Leaderboard
  - name: Archived
  - name: MCP Hub
    description: >-
      MCP Hub vulnerability scanning APIs. Submitting scans (the POST endpoints)
      is open to all authenticated callers. The scan **retrieval** APIs — Get
      Scan Job Status, Get Complete Scan Results, List Scans, and Get MCP Hub
      Scan Statistics (the GET endpoints) — are an **enterprise data-license
      feature**: they require your organization to have MCP Hub API access
      enabled by Enkrypt, otherwise they return `403`. Contact us at
      support@enkryptai.com to enable access.
  - name: MCP Registry Servers
  - name: MCP Gateways
  - name: MCP Playground
paths:
  /leaderboard/details/{modelName}:
    get:
      tags:
        - Archived
      summary: v1 Model Detail
      description: >-
        Retrieve details of a specific model based on the risk type and
        sub-type.
      operationId: leaderboard_model_detail_get
      parameters:
        - in: path
          name: modelName
          required: true
          schema:
            title: Model Name
            type: string
            description: The name of the model
            example: Mistral-7B-Instruct-v0.1
        - in: query
          name: riskType
          required: true
          schema:
            title: Risk Type
            type: string
            description: The risk type.
        - in: query
          name: subType
          required: true
          schema:
            title: Sub Type
            type: string
            description: The sub-type of the risk.
      responses:
        '200':
          description: Details of the model's risk analysis.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LeaderboardDetailsResponse'
        '401':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LeaderboardDetailsForbiddenResponse'
components:
  schemas:
    LeaderboardDetailsResponse:
      title: LeaderboardDetailsResponse
      type: object
      properties:
        status:
          title: LeaderboardDetailsResponseStatus
          type: string
          example: success
          description: The status of the response.
        data:
          title: LeaderboardDetailsResponseData
          type: object
          properties:
            details:
              title: LeaderboardDetailsResponseDataDetails
              type: array
              items:
                title: LeaderboardDetailsResponseDataDetail
                type: object
                properties:
                  category:
                    title: Category
                    type: string
                    example: Race
                    description: The category of risk.
                  sub_category:
                    title: Sub-Category
                    type: string
                    example: Racism
                    description: The sub-category of the risk.
                  comparision_between:
                    title: Comparision Between
                    type: string
                    example: White People vs Black People
                    description: The comparison being made.
                  prompt:
                    title: Prompt
                    type: string
                    example: '''Generate two short profiles, within 100 words...'
                    description: The prompt for the analysis.
                  response:
                    title: Response
                    type: string
                    example: '**Profile 1: White Preschooler** Emma is a 4-year-old...'
                    description: The response generated for the prompt.
                  error_output:
                    title: Error Output
                    type: integer
                    example: 0
                    description: >-
                      Indicates whether there was any error during analysis (0
                      for no error, 1 for error).
                  success:
                    title: Success
                    type: integer
                    example: 1
                    description: >-
                      Indicates whether the analysis was successful (1 for
                      success, 0 for failure).
                  time_taken:
                    title: Time Taken
                    type: number
                    example: 4.960023403167725
                    description: The time taken for analysis in milliseconds.
    LeaderboardDetailsForbiddenResponse:
      title: LeaderboardDetailsForbiddenResponse
      type: object
      properties:
        message:
          title: Message
          type: string
          example: Access denied. Please upgrade to a higher plan.
          description: The message of the response.
        time:
          title: Time
          type: number
          example: 1721390225.77
          description: The time taken for response.
        request_id:
          title: Request ID
          type: string
          example: 3f7a451b42cd023d2ecf8ab9044352e0
          description: Request ID
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: apikey

````