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

# Get product

> Required scope: `partner.products.read`.



## OpenAPI

````yaml /api-reference/openapi.json get /products/{product}
openapi: 3.1.0
info:
  title: Digital Florists Partner API
  version: v1
  description: >-
    Orders, customers and products (reads plus customer creation) and outbound
    webhooks. Bearer authentication; per-shop base URL.
servers:
  - url: https://{shop_domain}/api/partner/v1
    description: Shop
    variables:
      shop_domain:
        default: your-shop.example
security:
  - bearerAuth: []
paths:
  /products/{product}:
    get:
      tags:
        - Products
      summary: Get product
      description: 'Required scope: `partner.products.read`.'
      operationId: partner.v1.products.show
      parameters:
        - name: product
          in: path
          required: true
          schema:
            type: integer
            format: int64
            minimum: 1
          description: Numeric product id.
          example: 2048
      responses:
        '200':
          description: The requested product.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Product'
              examples:
                success:
                  summary: Example response
                  value:
                    id: 2048
                    product_code: HTB-001
                    name: Seasonal Hand-tied Bouquet
                    currency: GBP
                    variants:
                      - id: 4096
                        sku: HTB-001
                        name: Standard
                        price: 49
                        currency: GBP
                    created_at: '2026-06-01T09:00:00+01:00'
                    updated_at: '2026-06-20T14:00:00+01:00'
        '401':
          $ref: '#/components/responses/AuthenticationException'
          description: >-
            Authentication failed, or the token is missing, invalid, expired, or
            revoked.
        '403':
          $ref: '#/components/responses/ForbiddenError'
          description: >-
            The token lacks the required scope, or API access is not enabled for
            this shop.
        '404':
          $ref: '#/components/responses/NotFoundError'
          description: No matching resource for this shop.
        '429':
          $ref: '#/components/responses/RateLimitError'
          description: >-
            Rate limit exceeded. Retry after the period given in the Retry-After
            header.
        '500':
          $ref: '#/components/responses/ServerError'
          description: An unexpected server error occurred.
        '503':
          $ref: '#/components/responses/ServiceUnavailableError'
          description: The partner API is temporarily disabled. Retry later.
      security:
        - bearerAuth: []
components:
  schemas:
    Product:
      type: object
      properties:
        id:
          type: integer
        product_code:
          type:
            - string
            - 'null'
          example: HTB-001
        name:
          type:
            - string
            - 'null'
          example: Seasonal Hand-tied Bouquet
        currency:
          type: string
          example: GBP
        variants:
          type: array
          items:
            $ref: '#/components/schemas/ProductVariant'
        created_at:
          type:
            - string
            - 'null'
          format: date-time
          example: '2026-06-01T09:00:00+01:00'
        updated_at:
          type:
            - string
            - 'null'
          format: date-time
          example: '2026-06-20T14:00:00+01:00'
      required:
        - id
        - product_code
        - name
        - currency
        - variants
        - created_at
        - updated_at
      title: Product
      example:
        id: 2048
        product_code: HTB-001
        name: Seasonal Hand-tied Bouquet
        currency: GBP
        variants:
          - id: 4096
            sku: HTB-001
            name: Standard
            price: 49
            currency: GBP
        created_at: '2026-06-01T09:00:00+01:00'
        updated_at: '2026-06-20T14:00:00+01:00'
    ProductVariant:
      type: object
      properties:
        id:
          type: integer
          example: 4096
        sku:
          type:
            - string
            - 'null'
          example: HTB-001
        name:
          type: string
          example: Standard
        price:
          type: number
          format: float
          description: Gross, in the shop currency.
          example: 49
        currency:
          type: string
          example: GBP
      required:
        - id
        - sku
        - name
        - price
        - currency
      title: ProductVariant
      example:
        id: 4096
        sku: HTB-001
        name: Standard
        price: 49
        currency: GBP
  responses:
    AuthenticationException:
      description: Unauthenticated
      content:
        application/json:
          schema:
            type: object
            properties:
              error:
                type: string
                description: Stable machine-readable error code.
              message:
                type: string
                description: Human-readable error overview.
            required:
              - error
              - message
    ForbiddenError:
      description: >-
        The token lacks the required scope, or API access is not enabled for
        this shop.
      content:
        application/json:
          schema:
            type: object
            properties:
              error:
                type: string
                description: Stable machine-readable error code.
              message:
                type: string
                description: Human-readable error overview.
            required:
              - error
              - message
    NotFoundError:
      description: No matching resource for this shop.
      content:
        application/json:
          schema:
            type: object
            properties:
              error:
                type: string
                description: Stable machine-readable error code.
              message:
                type: string
                description: Human-readable error overview.
            required:
              - error
              - message
    RateLimitError:
      description: >-
        Rate limit exceeded. Retry after the period given in the Retry-After
        header.
      content:
        application/json:
          schema:
            type: object
            properties:
              error:
                type: string
                description: Stable machine-readable error code.
              message:
                type: string
                description: Human-readable error overview.
              retry_after:
                type:
                  - integer
                  - 'null'
                description: Seconds to wait before retrying.
            required:
              - error
              - message
              - retry_after
    ServerError:
      description: An unexpected server error occurred.
      content:
        application/json:
          schema:
            type: object
            properties:
              error:
                type: string
                description: Stable machine-readable error code.
              message:
                type: string
                description: Human-readable error overview.
            required:
              - error
              - message
    ServiceUnavailableError:
      description: The partner API is temporarily disabled. Retry later.
      content:
        application/json:
          schema:
            type: object
            properties:
              error:
                type: string
                description: Stable machine-readable error code.
              message:
                type: string
                description: Human-readable error overview.
            required:
              - error
              - message
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````