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

# List Catalog

> Full catalog with this tenant's install state merged in.



## OpenAPI

````yaml https://api.vellaro.io/openapi.json get /api/v1/admin/plugins
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:
    get:
      tags:
        - admin:plugins
      summary: List Catalog
      description: Full catalog with this tenant's install state merged in.
      operationId: list_catalog_api_v1_admin_plugins_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_list_PluginCatalogItem__'
      security:
        - HTTPBearer: []
components:
  schemas:
    ApiResponse_list_PluginCatalogItem__:
      properties:
        data:
          anyOf:
            - items:
                $ref: '#/components/schemas/PluginCatalogItem'
              type: array
            - type: 'null'
          title: Data
        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[list[PluginCatalogItem]]
    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
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````