> ## 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 Weightloss Protocol

> Returns the weightloss treatments



## OpenAPI

````yaml /us/openapi.json get /external/v1/protocols/weightloss
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/weightloss:
    get:
      tags:
        - Clinic Protocols
      summary: Get Weightloss Protocol
      description: Returns the weightloss treatments
      parameters: []
      responses:
        '200':
          description: Weightloss treatments
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Product'
        '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/weightloss
components:
  schemas:
    Product:
      type: object
      properties:
        id:
          type: number
          example: 1
        name:
          type: string
          example: Mounjaro
        description:
          type: string
          example: Mounjaro is a prescription medicine used to treat type 2 diabetes.
        image:
          type: string
          example: https://www.mounjaro.com/images/mounjaro.png
        traits:
          type: array
          items:
            type: string
          example:
            - Effective!
            - Health!
        variants:
          type: array
          items:
            $ref: '#/components/schemas/Variant'
            type: object
          example:
            - id: 1
              priceId: price_1QZ00000000000000000000
              name: Monthly
              isDefault: true
              currency: USD
              amount: 100
              recurring:
                interval: month
                intervalCount: 6
    Variant:
      type: object
      properties:
        id:
          type: number
          example: 1
        priceId:
          type: string
          example: price_1QZ00000000000000000000
        name:
          type: string
          example: Monthly
        isDefault:
          type: boolean
          example: true
        currency:
          type: string
          example: USD
        amount:
          type: number
          example: 100
        recurring:
          $ref: '#/components/schemas/VariantRecurringOptions'
          type: object
          example:
            interval: month
            intervalCount: 6
    VariantRecurringOptions:
      type: object
      properties:
        interval:
          type: string
          example: month
        intervalCount:
          type: number
          example: 6

````