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

# Get user acquired items

> List every marketplace item the caller has previously acquired, optionally filtered by itemType. Returned records link back to the underlying prompt/template the user owns or references.



## OpenAPI

````yaml /api-reference/openapi.yaml get /api/marketplace/acquired
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/acquired:
    get:
      tags:
        - Marketplace
      summary: Get user acquired items
      description: >-
        List every marketplace item the caller has previously acquired,
        optionally filtered by itemType. Returned records link back to the
        underlying prompt/template the user owns or references.
      operationId: get_acquired_items
      parameters:
        - in: query
          name: itemType
          required: false
          schema:
            type: string
      responses:
        '200':
          description: Acquired items returned
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MarketplaceAcquiredItemsResponse'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MarketplaceErrorResponse'
      security:
        - bearerAuth: []
components:
  schemas:
    MarketplaceAcquiredItemsResponse:
      type: object
      properties:
        success:
          type: boolean
          example: true
        data:
          type: object
          properties:
            items:
              type: array
              items:
                $ref: '#/components/schemas/MarketplaceAcquiredItem'
          required:
            - items
          additionalProperties: true
      required:
        - success
        - data
      additionalProperties: true
      example:
        success: true
        data:
          items:
            - acquisitionId: 8c3d4e0f9a1b3c4d5e6f7a8b9c01
              itemType: prompt
              type: copy
              acquiredAt: '2026-05-10T17:42:00.000Z'
              originalItemId: 5f7b1c2e8a1d4e0012c3b4a5
              copiedItemId: 9d4e5f1a2b3c4d5e6f7a8b9c0d12
              marketplaceItem:
                id: 7b2c4e0d9f1a3b4e5c6d7e8f9012
                name: Acme Inbound Triage Prompt
                publisher:
                  name: Sam Patel
                  organization: Acme Corp
                scope: marketplace
                status: active
                isContentVisible: true
    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
    MarketplaceAcquiredItem:
      type: object
      description: >-
        Acquisition record returned by GET /api/marketplace/acquired.
        `marketplaceItem` is null when the underlying PublishedItem has been
        removed.
      properties:
        acquisitionId:
          type: string
        itemType:
          type: string
        type:
          type: string
          enum:
            - reference
            - copy
        acquiredAt:
          type: string
          format: date-time
        originalItemId:
          type: string
        copiedItemId:
          type: string
          nullable: true
        marketplaceItem:
          nullable: true
          type: object
          properties:
            id:
              type: string
            name:
              type: string
            description:
              type: string
            publisher:
              $ref: '#/components/schemas/MarketplacePublisher'
            scope:
              type: string
              enum:
                - organization
                - marketplace
            status:
              type: string
            isContentVisible:
              type: boolean
          additionalProperties: true
      additionalProperties: true
      example:
        acquisitionId: 8c3d4e0f9a1b3c4d5e6f7a8b9c01
        itemType: prompt
        type: copy
        acquiredAt: '2026-05-10T17:42:00.000Z'
        originalItemId: 5f7b1c2e8a1d4e0012c3b4a5
        copiedItemId: 9d4e5f1a2b3c4d5e6f7a8b9c0d12
        marketplaceItem:
          id: 7b2c4e0d9f1a3b4e5c6d7e8f9012
          name: Acme Inbound Triage Prompt
          description: Routes inbound SMS to the right department.
          publisher:
            name: Sam Patel
            organization: Acme Corp
          scope: marketplace
          status: active
          isContentVisible: true
    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

````