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

# Search the marketplace

> Proxy the registry's public search, forwarding the whitelisted facets.

``tags`` is multi-value end to end (the registry receives repeated ``tags``
params); every other facet is single-valued. ``None`` facets are dropped. The
registry's rows ride through unchanged, so display metadata (``display_name``,
``icon_url``) is transparently forwarded.



## OpenAPI

````yaml /openapi.json get /api/marketplace/search
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/search:
    get:
      tags:
        - marketplace
      summary: Search the marketplace
      description: >-
        Proxy the registry's public search, forwarding the whitelisted facets.


        ``tags`` is multi-value end to end (the registry receives repeated
        ``tags``

        params); every other facet is single-valued. ``None`` facets are
        dropped. The

        registry's rows ride through unchanged, so display metadata
        (``display_name``,

        ``icon_url``) is transparently forwarded.
      operationId: get_api_marketplace_search
      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.
        '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

````