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

# Get a patient bill and line items



## OpenAPI

````yaml /openapi-patient.yaml get /patient/bills/{bill}
openapi: 3.1.0
info:
  title: HMIS Patient Mobile API
  version: 1.0.0
  description: >-
    Patient-owned authentication, appointment, clinical record, and billing
    operations.
servers:
  - url: https://jaliprohmis.derrickmugabwa.dev/api/v1
    description: HMIS staging API
security:
  - bearerAuth: []
tags:
  - name: Patient authentication
  - name: Patient profile
  - name: Patient appointments
  - name: Patient records
  - name: Patient billing
paths:
  /patient/bills/{bill}:
    get:
      tags:
        - Patient billing
      summary: Get a patient bill and line items
      operationId: getPatientBill
      parameters:
        - $ref: '#/components/parameters/BillId'
      responses:
        '200':
          $ref: '#/components/responses/ObjectResponse'
        '404':
          $ref: '#/components/responses/NotFound'
components:
  parameters:
    BillId:
      name: bill
      in: path
      required: true
      schema:
        type: integer
  responses:
    ObjectResponse:
      description: Patient-owned resource.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ObjectEnvelope'
    NotFound:
      description: Resource is unavailable or does not belong to the authenticated patient.
  schemas:
    ObjectEnvelope:
      type: object
      properties:
        data:
          type: object
          additionalProperties: true
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: Sanctum patient device token

````