> ## 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.

# v2 Model Rank

> Retrieves model rank



## OpenAPI

````yaml GET /leaderboard/v2/rank/{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/v2/rank/{modelName}:
    get:
      tags:
        - Leaderboard
      summary: v2 Model Rank
      description: Retrieves model rank
      operationId: leaderboard_v2_model_rank_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
      responses:
        '200':
          description: A model's rank
          content:
            application/json:
              schema:
                title: LeaderboardModelRank
                type: object
                properties:
                  status:
                    title: LeaderboardModelRankStatus
                    type: string
                    example: success
                  data:
                    title: LeaderboardModelRankData
                    type: object
                    properties:
                      rank:
                        title: Rank
                        type: integer
                        example: 22
                      totalModels:
                        title: Total Models
                        type: integer
                        example: 70
components:
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: apikey

````