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

# Get Product Price

> Returns the product price



## OpenAPI

````yaml /us/openapi.json get /external/v1/protocols/products/:id/price
openapi: 3.1.0
info:
  title: OpenAPI ClinicOS
  description: ClinicOS OpenAPI Documentation
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://us.api.aiosmedical.com
security: []
paths:
  /external/v1/protocols/products/:id/price:
    get:
      tags:
        - Clinic Protocols
      summary: Get Product Price
      description: Returns the product price
      parameters:
        - name: id
          in: path
          description: Product ID
          required: true
          schema:
            type: string
        - name: couponId
          in: query
          description: Coupon code
          required: false
          schema:
            type: string
      responses:
        '200':
          description: Product Price
          content:
            application/json:
              schema:
                type: object
                properties:
                  price:
                    type: number
                    example: 100
                  couponValue:
                    type: number
                    example: 10
                  totalPrice:
                    type: number
                    example: 90
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: number
                    example: 500
                  error:
                    type: string
                    example: Internal Server Error
                  timestamp:
                    type: string
                    example: '2025-06-04T12:00:00.000Z'
                  path:
                    type: string
                    example: /external/v1/protocols/products/:id/price

````