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

# Retrieve product details

> Fetches detailed information about a product, including variants and deliverables, for a given product ID. Requires `x-store-id`.

**Usage:** Provides comprehensive insights into a product's configuration, variants, and linked digital deliverables for store management and product cataloging.

**Path



## OpenAPI

````yaml get /products/{id}
openapi: 3.0.0
info:
  title: Blink API
  description: Comprehensive API documentation for Blink.
  version: 1.0.0
servers:
  - url: https://api.blink.store/v1
security: []
paths:
  /products/{id}:
    get:
      tags:
        - Products
      summary: Retrieve product details
      description: >-
        Fetches detailed information about a product, including variants and
        deliverables, for a given product ID. Requires `x-store-id`.


        **Usage:** Provides comprehensive insights into a product's
        configuration, variants, and linked digital deliverables for store
        management and product cataloging.


        **Path
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
          description: The UUID or the human-readable slug of the product
      responses:
        '200':
          description: Product details retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProductDetailResponse'
        '401':
          description: Unauthorized
        '404':
          description: Not Found
components:
  schemas:
    ProductDetailResponse:
      type: object
      properties:
        data:
          type: object
          properties:
            id:
              type: string
            store_id:
              type: string
            name:
              type: string
            description:
              type: string
            preview_link:
              type: string
            pricing_model:
              type: string
              enum:
                - one_time
                - subscription
                - pay_what_you_want
            price:
              type: integer
            currency:
              type: string
            status:
              type: string
            created_at:
              type: string
              format: date-time
            subscription_interval:
              type: string
              enum:
                - day
                - week
                - month
                - year
            trial_days:
              type: integer
            variants:
              type: array
              items:
                type: object
                properties:
                  id:
                    type: string
                  name:
                    type: string
                  description:
                    type: string
                  price:
                    type: integer
                  currency:
                    type: string
                  is_active:
                    type: boolean
                  subscription_interval:
                    type: string
                    enum:
                      - day
                      - week
                      - month
                      - year
                  trial_days:
                    type: integer
                  created_at:
                    type: string
                    format: date-time
            deliverables:
              type: array
              items:
                type: object
                properties:
                  id:
                    type: string
                  type:
                    type: string
                  title:
                    type: string
                  url:
                    type: string

````