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

# Payment due

> Get the payment required



## OpenAPI

````yaml /medical-api-reference/openapi.json get /payment-due
openapi: 3.0.1
info:
  title: OpenAPI For SME Medical Insurance
  description: API's that you need to use to request insurance(s) for your clients
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://production.yasmina.ai/api/v1/medical
  - url: https://sandbox.yasmina.ai/api/v1/medical
security:
  - bearerAuth: []
paths:
  /payment-due:
    get:
      tags:
        - Payment
      summary: Payment due
      description: Get the payment required
      responses:
        '200':
          content:
            application/json:
              schema:
                type: object
                properties:
                  payment:
                    type: integer
                    example: 1500
                example:
                  payment: 1500
          description: Success
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````