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

# List Plugins

> Returns all plugins associated with the authenticated account



## OpenAPI

````yaml GET /plugins
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:
    get:
      summary: Get all plugins
      description: Returns all plugins associated with the authenticated account
      responses:
        '200':
          description: List of plugins
          content:
            application/json:
              schema:
                type: array
                items:
                  $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_'

````