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

# Get a marketplace listing's detail

> One listing's detail composed with its version rows in a single body, so
the detail view (listing + the Versions card) is one request. The registry's
display metadata (``display_name``/``homepage_url``/``license``/``readme_md``)
survives the spread.



## OpenAPI

````yaml /openapi.json get /api/marketplace/plugins/{ns}/{name}
openapi: 3.1.0
info:
  description: The operator HTTP surface served under /api/*.
  title: tai42-skeleton API
  version: 0.1.1
servers: []
security: []
paths:
  /api/marketplace/plugins/{ns}/{name}:
    get:
      tags:
        - marketplace
      summary: Get a marketplace listing's detail
      description: >-
        One listing's detail composed with its version rows in a single body, so

        the detail view (listing + the Versions card) is one request. The
        registry's

        display metadata
        (``display_name``/``homepage_url``/``license``/``readme_md``)

        survives the spread.
      operationId: get_api_marketplace_plugins_ns_name
      parameters:
        - in: path
          name: ns
          required: true
          schema:
            type: string
        - in: path
          name: name
          required: true
          schema:
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                properties:
                  data: {}
                required:
                  - data
                type: object
          description: Success.
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
          description: Missing or invalid api key.
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
          description: Resource not found.
        '502':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
          description: Error.
      security:
        - ApiKeyAuth: []
components:
  schemas:
    Error:
      properties:
        error:
          type: string
      required:
        - error
      type: object
  securitySchemes:
    ApiKeyAuth:
      in: header
      name: x-api-key
      type: apiKey

````