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

# Get Product

> Get a single Product by key (latest version by default).

**Authentication Required**: Requires `product:read` permission.



## OpenAPI

````yaml /openapi/merchantops-public.json get /api/products/{key}
openapi: 3.1.0
info:
  description: >-
    Public API for the MerchantOps product catalog, pricing, and publishing
    surface.
  title: MerchantOps API
  version: 1.0.0
servers:
  - description: Production
    url: https://api.merchantops.ai
security: []
paths:
  /api/products/{key}:
    get:
      tags:
        - Products
      summary: Get Product
      description: |-
        Get a single Product by key (latest version by default).

        **Authentication Required**: Requires `product:read` permission.
      operationId: get_product
      parameters:
        - in: path
          name: key
          required: true
          schema:
            title: Key
            type: string
        - description: Specific version (latest if omitted)
          in: query
          name: version
          required: false
          schema:
            anyOf:
              - type: integer
              - type: 'null'
            description: Specific version (latest if omitted)
            title: Version
        - in: header
          name: authorization
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Authorization
        - in: header
          name: X-Organization-ID
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: X-Organization-Id
        - in: cookie
          name: stytch_session
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Stytch Session
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProductResponse'
          description: Successful Response
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
          description: Validation Error
components:
  schemas:
    ProductResponse:
      description: Response model for a single Product.
      properties:
        confidence:
          anyOf:
            - type: number
            - type: 'null'
          description: Confidence score (0-1)
          title: Confidence
        createdAt:
          anyOf:
            - type: string
            - type: 'null'
          description: Creation timestamp
          title: Createdat
        createdBy:
          anyOf:
            - type: string
            - type: 'null'
          description: User who created this
          title: Createdby
        enrichmentScore:
          anyOf:
            - type: number
            - type: 'null'
          description: Enrichment completeness score (0-1)
          title: Enrichmentscore
        enrichmentSources:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
          description: Buckets that contributed to merged product
          title: Enrichmentsources
        errorMessage:
          anyOf:
            - type: string
            - type: 'null'
          description: Error message if status=failed
          title: Errormessage
        id:
          description: MongoDB ObjectId as string
          title: Id
          type: string
        isPublished:
          default: false
          description: DEPRECATED manual flag; superseded by publish_status
          title: Ispublished
          type: boolean
        job_id:
          anyOf:
            - type: string
            - type: 'null'
          description: Job ID for tracking enrichment progress
          title: Job Id
        key:
          description: Internal unique identifier
          title: Key
          type: string
        labels:
          description: Version labels
          items:
            type: string
          title: Labels
          type: array
        lakehouseMatched:
          anyOf:
            - type: boolean
            - type: 'null'
          description: Did lakehouse_search contribute any property?
          title: Lakehousematched
        lakehousePropertiesCount:
          anyOf:
            - type: integer
            - type: 'null'
          description: Properties sourced from lakehouse
          title: Lakehousepropertiescount
        langfuseTraceId:
          anyOf:
            - type: string
            - type: 'null'
          description: Langfuse trace ID
          title: Langfusetraceid
        lastModifiedAt:
          anyOf:
            - type: string
            - type: 'null'
          description: Last modification timestamp
          title: Lastmodifiedat
        lastModifiedBy:
          anyOf:
            - type: string
            - type: 'null'
          description: User who last modified this
          title: Lastmodifiedby
        productType:
          additionalProperties: true
          description: Product type reference
          title: Producttype
          type: object
        properties:
          additionalProperties: true
          description: Product data keyed by PropertyDefinition key
          title: Properties
          type: object
        properties_metadata:
          additionalProperties:
            additionalProperties: true
            type: object
          description: Per-property metadata
          title: Properties Metadata
          type: object
        propertyCount:
          default: 0
          description: Number of properties with values
          title: Propertycount
          type: integer
        publish_chips:
          description: >-
            Per-enabled-target publish chips: {target_key, target_env, name,
            state(in_sync|drifted|never_published), published_version,
            published_at}
          items:
            additionalProperties: true
            type: object
          title: Publish Chips
          type: array
        publish_status:
          anyOf:
            - type: string
            - type: 'null'
          description: 'Computed publish status: draft | live | changed'
          title: Publish Status
        scrapeWarnings:
          anyOf:
            - items:
                additionalProperties: true
                type: object
              type: array
            - type: 'null'
          description: >-
            Scrape-quality warnings if the brand-site scrape returned suspect
            content
          title: Scrapewarnings
        source:
          description: Source of product data
          title: Source
          type: string
        status:
          anyOf:
            - type: string
            - type: 'null'
          description: 'Status: complete, failed, partial'
          title: Status
        version:
          default: 1
          description: Version number
          title: Version
          type: integer
      required:
        - id
        - key
        - source
        - productType
      title: ProductResponse
      type: object
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          title: Detail
          type: array
      title: HTTPValidationError
      type: object
    ValidationError:
      properties:
        ctx:
          title: Context
          type: object
        input:
          title: Input
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          title: Location
          type: array
        msg:
          title: Message
          type: string
        type:
          title: Error Type
          type: string
      required:
        - loc
        - msg
        - type
      title: ValidationError
      type: object

````