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

# Get Plugin



## OpenAPI

````yaml https://api.vellaro.io/openapi.json get /api/v1/admin/plugins/{key}
openapi: 3.1.0
info:
  title: Vellaro API
  description: Vellaro 2026 — E-commerce API
  version: 0.1.0
servers:
  - url: https://api.vellaro.io
    description: Produzione
security: []
tags: []
paths:
  /api/v1/admin/plugins/{key}:
    get:
      tags:
        - admin:plugins
      summary: Get Plugin
      operationId: get_plugin_api_v1_admin_plugins__key__get
      parameters:
        - name: key
          in: path
          required: true
          schema:
            type: string
            title: Key
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_PluginCatalogItem_'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    ApiResponse_PluginCatalogItem_:
      properties:
        data:
          anyOf:
            - $ref: '#/components/schemas/PluginCatalogItem'
            - type: 'null'
        meta:
          anyOf:
            - $ref: '#/components/schemas/PaginationMeta'
            - type: 'null'
        error:
          anyOf:
            - type: string
            - type: 'null'
          title: Error
        error_code:
          anyOf:
            - type: string
            - type: 'null'
          title: Error Code
      type: object
      title: ApiResponse[PluginCatalogItem]
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    PluginCatalogItem:
      properties:
        key:
          type: string
          title: Key
        name:
          type: string
          title: Name
        category:
          type: string
          title: Category
        version:
          type: string
          title: Version
        description:
          type: string
          title: Description
        icon:
          type: string
          title: Icon
        capabilities:
          items:
            type: string
          type: array
          title: Capabilities
        pricing:
          type: string
          title: Pricing
        min_plan:
          anyOf:
            - type: string
            - type: 'null'
          title: Min Plan
        requires_consent:
          type: boolean
          title: Requires Consent
        privacy_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Privacy Url
        config_fields:
          additionalProperties: true
          type: object
          title: Config Fields
        secret_fields:
          items:
            type: string
          type: array
          title: Secret Fields
        status:
          anyOf:
            - type: string
            - type: 'null'
          title: Status
        config:
          additionalProperties: true
          type: object
          title: Config
      type: object
      required:
        - key
        - name
        - category
        - version
        - description
        - icon
        - capabilities
        - pricing
        - min_plan
        - requires_consent
        - privacy_url
        - config_fields
        - secret_fields
        - status
        - config
      title: PluginCatalogItem
      description: 'One row of the marketplace: manifest + this tenant''s state.'
    PaginationMeta:
      properties:
        page:
          type: integer
          title: Page
        page_size:
          type: integer
          title: Page Size
        total:
          type: integer
          title: Total
        total_pages:
          type: integer
          title: Total Pages
      type: object
      required:
        - page
        - page_size
        - total
        - total_pages
      title: PaginationMeta
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````