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

# Browse marketplace items (org + marketplace)

> List published items the caller can acquire — items scoped to the caller's organization plus globally-published marketplace items — filtered by itemType/search and paginated.



## OpenAPI

````yaml /api-reference/openapi.yaml get /api/marketplace
openapi: 3.0.3
info:
  title: Tether Relay and Tether API
  version: 1.0.0
  description: >-
    Route-derived OpenAPI contract generated from tether-relay backend sources.
    Regenerate with scripts/sync-openapi-from-backend.mjs.
servers:
  - url: https://your-instance.example.com
    description: Production
  - url: http://localhost:2212
    description: Local API service
security: []
tags:
  - name: AI
  - name: Applications
  - name: Approval
  - name: Auth
  - name: Automations
  - name: Calls
  - name: Campaigns
  - name: Contact Analytics
  - name: Contact Metrics
  - name: Contact Notes
  - name: Contacts
  - name: Conversation Monitor
  - name: Conversations
  - name: Departments
  - name: Email
  - name: Escalation Dashboard
  - name: Event Logs
  - name: Google Sheets
  - name: Marketplace
  - name: Messages
  - name: Notification Sounds
  - name: Notifications
  - name: Org Snapshots
  - name: Organizations
  - name: Outreach
  - name: Outreach Metrics
  - name: Outreach Sources
  - name: Pipelines
  - name: Processes
  - name: Prompts
  - name: Reminders
  - name: Sms
  - name: Templates
  - name: Traces
  - name: Training
  - name: Upload
  - name: User Snapshots
  - name: Users
  - name: Vertical
  - name: Webchats
  - name: Webhook
paths:
  /api/marketplace:
    get:
      tags:
        - Marketplace
      summary: Browse marketplace items (org + marketplace)
      description: >-
        List published items the caller can acquire — items scoped to the
        caller's organization plus globally-published marketplace items —
        filtered by itemType/search and paginated.
      operationId: browse_marketplace
      parameters:
        - in: query
          name: filter
          required: false
          schema:
            type: string
            enum:
              - all
              - organization
              - marketplace
        - in: query
          name: itemType
          required: false
          schema:
            type: string
            enum:
              - prompt
              - template
        - in: query
          name: search
          required: false
          schema:
            type: string
        - in: query
          name: page
          required: false
          schema:
            type: integer
            minimum: 1
            default: 1
        - in: query
          name: limit
          required: false
          schema:
            type: integer
            minimum: 1
            default: 20
      responses:
        '200':
          description: Marketplace items returned with pagination
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MarketplaceBrowseResponse'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MarketplaceErrorResponse'
      security:
        - bearerAuth: []
components:
  schemas:
    MarketplaceBrowseResponse:
      type: object
      properties:
        success:
          type: boolean
          example: true
        data:
          type: object
          properties:
            items:
              type: array
              items:
                $ref: '#/components/schemas/MarketplaceBrowseItem'
            pagination:
              type: object
              properties:
                page:
                  type: integer
                limit:
                  type: integer
                total:
                  type: integer
                pages:
                  type: integer
              required:
                - page
                - limit
                - total
                - pages
              additionalProperties: false
          required:
            - items
            - pagination
          additionalProperties: true
      required:
        - success
        - data
      additionalProperties: true
      example:
        success: true
        data:
          items:
            - id: 7b2c4e0d9f1a3b4e5c6d7e8f9012
              itemType: prompt
              itemId: 5f7b1c2e8a1d4e0012c3b4a5
              name: Acme Inbound Triage Prompt
              description: Routes inbound SMS to the right department.
              publisher:
                name: Sam Patel
                organization: Acme Corp
              scope: marketplace
              shareType: copy
              isContentVisible: true
              status: active
              usageCount: 12
              isAcquired: false
              publishedAt: '2026-05-01T09:15:00.000Z'
          pagination:
            page: 1
            limit: 20
            total: 47
            pages: 3
    MarketplaceErrorResponse:
      type: object
      description: Generic error envelope returned by Marketplace endpoints.
      properties:
        error:
          type: string
        details:
          type: string
      required:
        - error
      additionalProperties: true
      example:
        error: Marketplace item not found
    MarketplaceBrowseItem:
      type: object
      description: Marketplace listing summary returned by GET /api/marketplace.
      properties:
        id:
          type: string
        itemType:
          type: string
          enum:
            - prompt
            - template
        itemId:
          type: string
        name:
          type: string
        description:
          type: string
        usageInformation:
          type: string
        publisher:
          $ref: '#/components/schemas/MarketplacePublisher'
        scope:
          type: string
          enum:
            - organization
            - marketplace
        shareType:
          type: string
          enum:
            - reference
            - copy
        allowEditableReferences:
          type: boolean
        isContentVisible:
          type: boolean
        status:
          type: string
        usageCount:
          type: integer
        isAcquired:
          type: boolean
        publishedAt:
          type: string
          format: date-time
      additionalProperties: true
      example:
        id: 7b2c4e0d9f1a3b4e5c6d7e8f9012
        itemType: prompt
        itemId: 5f7b1c2e8a1d4e0012c3b4a5
        name: Acme Inbound Triage Prompt
        description: Routes inbound SMS to the right department.
        usageInformation: Set the {{org_name}} variable before applying.
        publisher:
          id: 5f7b1c2e8a1d4e0012c3b4a5
          name: Sam Patel
          organization: Acme Corp
        scope: marketplace
        shareType: copy
        allowEditableReferences: false
        isContentVisible: true
        status: active
        usageCount: 12
        isAcquired: false
        publishedAt: '2026-05-01T09:15:00.000Z'
    MarketplacePublisher:
      type: object
      properties:
        id:
          type: string
          nullable: true
        name:
          type: string
        organization:
          type: string
      required:
        - name
        - organization
      additionalProperties: true
      example:
        id: 5f7b1c2e8a1d4e0012c3b4a5
        name: Sam Patel
        organization: Acme Corp
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````