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

# Get Product

> Retrieve details for a specific product

Returns detailed information about a specific product by its ID.


## OpenAPI

````yaml openapi/v1.json GET /v1/products/{productId}
openapi: 3.0.0
info:
  title: Turris Public API
  description: API for managing insurance compliance data
  version: 1.0.0
  contact: {}
servers:
  - url: https://public.api.live.turrisfi.com
    description: Production
  - url: https://public.api.sandbox.turrisfi.com
    description: Sandbox
security: []
tags: []
paths:
  /v1/products/{productId}:
    get:
      tags:
        - products
      operationId: ProductsController_getProduct_v1
      parameters:
        - name: productId
          required: true
          in: path
          description: Product ID
          schema:
            example: 507f1f77bcf86cd799439011
            type: string
      responses:
        '200':
          description: Product details
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    $ref: '#/components/schemas/ProductResponse'
                  requestId:
                    type: string
                    description: Unique request identifier
                    example: dev-2c5e7cf2-9acf-4c8c-ab2f-b81f39d775a8
                  timestamp:
                    type: string
                    description: Response timestamp
                    example: '2025-11-12T20:49:03.293Z'
                required:
                  - data
                  - requestId
                  - timestamp
        '401':
          description: Invalid or missing auth token
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponseDto'
components:
  schemas:
    ProductResponse:
      type: object
      properties:
        _id:
          type: string
          description: Product ID
        upstreamEntityId:
          type: string
          description: Upstream entity ID that owns the product
        name:
          type: string
          description: Product name
        description:
          type: string
          description: Product description
        newBusinessCommissionPerCent:
          type: number
          description: New business commission percentage
        renewalCommissionPerCent:
          type: number
          description: Renewal commission percentage
        carrierId:
          type: string
          description: Carrier ID that underwrites the product
        filingNumber:
          type: string
          description: Filing number for the product
        states:
          description: States where the product is available
          type: array
          items:
            $ref: '#/components/schemas/ProductStateResponse'
        lineOfBusiness:
          type: string
          description: Line of business of the product
        createdAt:
          format: date-time
          type: string
          description: Creation timestamp
        updatedAt:
          format: date-time
          type: string
          description: Last update timestamp
      required:
        - upstreamEntityId
        - name
        - description
        - newBusinessCommissionPerCent
        - renewalCommissionPerCent
        - carrierId
        - states
    ErrorResponseDto:
      type: object
      properties:
        statusCode:
          type: number
          description: HTTP status code
        requestId:
          type: string
          description: Unique request identifier for debugging
        errorType:
          type: string
          description: Error type classification
        errorMessage:
          description: Array of error messages
          type: array
          items:
            type: string
        timestamp:
          type: string
          description: ISO timestamp when the error occurred
        details:
          type: object
          description: Additional error context
      required:
        - statusCode
        - requestId
        - errorType
        - errorMessage
        - timestamp
    ProductStateResponse:
      type: object
      properties:
        complianceRequirementId:
          type: string
          description: Compliance requirement ID
        licenseComplianceRequirementId:
          type: string
          description: License compliance requirement ID
        appointmentComplianceRequirementId:
          type: string
          description: Appointment compliance requirement ID
        newBusinessCommissionPerCent:
          type: number
          description: New business commission percentage
        renewalCommissionPerCent:
          type: number
          description: Renewal commission percentage
      required:
        - complianceRequirementId
        - licenseComplianceRequirementId
        - appointmentComplianceRequirementId
        - newBusinessCommissionPerCent
        - renewalCommissionPerCent

````