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

# GET /consultations



## OpenAPI

````yaml /openapi/nimbo_api.yml get /consultations
openapi: 3.0.0
info:
  title: Nimbo API
  version: 1.0.0
  description: >-
    Nimbo API reference. Use the API host and integration access provided by
    Nimbo.
servers:
  - url: https://api.example.test
    description: Reference only; confirm your integration host with Nimbo
security: []
paths:
  /consultations:
    get:
      tags:
        - Consultations
      summary: GET /consultations
      operationId: legacy_nimbo_api_get__consultations
      parameters:
        - name: page
          in: query
          schema:
            type: integer
        - name: per_page
          in: query
          schema:
            type: integer
        - name: person_id
          in: query
          schema:
            type: integer
      responses:
        '200':
          content:
            application/json:
              schema:
                type: object
                properties:
                  consultations:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: integer
                        cause:
                          type: string
                        created_at:
                          type: string
                          format: date-time
                        links:
                          type: object
                          properties:
                            person:
                              type: string
                            encounter:
                              type: string
                            physical_test_samples:
                              type: string
                            consultation_diagnostics:
                              type: string
                            consultation_procedures:
                              type: string
                            consultation_lab_tests:
                              type: string
                            consultation_lab_test_result:
                              type: string
                            consultation_prescription_drugs:
                              type: string
                            consultation_schedule:
                              type: string
                            disability_leave:
                              type: string
                            invoice:
                              type: string
                            vital_signs_set:
                              type: string
                            odontogram:
                              type: string
                            medical_note:
                              type: string
                            physiotherapy_records:
                              type: string
                            medical_history_attachments:
                              type: string
                            location:
                              type: string
                        medical_instructions:
                          type: string
                        physical_examination:
                          nullable: true
                        subjective_symptoms:
                          nullable: true
                        cause_extended:
                          nullable: true
                        account_id:
                          type: integer
                        finished_at:
                          nullable: true
                        encounter_id:
                          type: integer
                        treatment_plan:
                          type: string
                        starts_at:
                          type: string
                          format: date-time
                        sis:
                          type: object
                        lab_test:
                          type: object
                        procedure:
                          nullable: true
                        encode_id:
                          type: string
                  meta:
                    type: object
                    properties:
                      total_pages:
                        type: integer
          description: Successful response

````