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

# Get Plugin

> Retrieves detailed information about a specific plugin by its ID



## OpenAPI

````yaml GET /plugins/{pluginId}
openapi: 3.0.1
info:
  title: MC License API
  description: API for validating and managing Minecraft plugin licenses
  version: 1.0.0
  license:
    name: MIT
servers:
  - url: https://api.mclicense.org
    description: Production API Server
security:
  - apiKey: []
paths:
  /plugins/{pluginId}:
    get:
      summary: Get a specific plugin
      description: Retrieves detailed information about a specific plugin by its ID
      parameters:
        - name: pluginId
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Plugin details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Plugin'
components:
  schemas:
    Plugin:
      type: object
      required:
        - name
      properties:
        _id:
          type: string
          readOnly: true
          description: Unique identifier for the plugin
        name:
          type: string
          description: Name of the plugin
        icon:
          type: string
          description: URL to the plugin's icon
        marketplace:
          type: object
          properties:
            type:
              type: string
              enum:
                - Polymart
                - BuiltByBit
            id:
              type: string
            url:
              type: string
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: MCL-Key
      description: API key must start with 'mcl_'

````