> ## 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 /predictions/people



## OpenAPI

````yaml /openapi/nimbo_api.yml get /predictions/people
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:
  /predictions/people:
    get:
      tags:
        - Patient Management
      summary: GET /predictions/people
      operationId: legacy_nimbo_api_get__predictions_people
      parameters:
        - name: first_name
          in: query
          schema:
            type: string
        - name: last_name
          in: query
          schema:
            type: string
        - name: born_at
          in: query
          schema:
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                type: object
                properties:
                  people:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: integer
                        first_name:
                          type: string
                        last_name:
                          type: string
                        links:
                          type: object
                          properties:
                            consultations:
                              type: string
                            consultation_lab_test_results:
                              type: string
                            consultation_schedules:
                              type: string
                            vital_signs_sets:
                              type: string
                            medical_history:
                              type: string
                            deffers:
                              type: string
                            medical_notes:
                              type: string
                            insurance_coverage:
                              type: string
                        full_name:
                          type: string
                        telephone:
                          nullable: true
                        email:
                          nullable: true
                        born_at:
                          type: string
                          format: date
                        gender:
                          type: string
                        avatar_url_small:
                          type: string
                        avatar_url_medium:
                          type: string
                        telephone2:
                          type: string
                        address_state_id:
                          type: integer
                        address_city:
                          nullable: true
                        address_street:
                          nullable: true
                        address_zipcode:
                          nullable: true
                        identity_number:
                          nullable: true
                        account_id:
                          type: integer
                        avatar_url_large:
                          type: string
                        notes:
                          nullable: true
                        person_attributes:
                          type: object
                        phone_country_id:
                          type: integer
                        is_migrated:
                          type: boolean
                        without_cellphone:
                          type: boolean
                        nimbochat_invitation_sent:
                          type: boolean
                        medical_record:
                          nullable: true
                  meta:
                    type: object
                    properties:
                      total_pages:
                        type: integer
          description: Successful response
      security:
        - BearerAuth: []
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer

````