> ## 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 /people/{person_id}



## OpenAPI

````yaml /openapi/nimbo_api.yml get /people/{person_id}
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:
  /people/{person_id}:
    get:
      tags:
        - Patient Management
      summary: GET /people/{person_id}
      operationId: legacy_nimbo_api_get__people_person_id
      parameters:
        - name: person_id
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                type: object
                properties:
                  person:
                    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:
                        nullable: true
                      address_city:
                        nullable: true
                      address_street:
                        nullable: true
                      address_zipcode:
                        nullable: true
                      identity_number:
                        type: string
                      account_id:
                        type: integer
                      avatar_url_large:
                        type: string
                      notes:
                        nullable: true
                      person_attributes:
                        type: object
                        properties:
                          tax_rfc:
                            type: string
                          identity_number:
                            type: string
                      phone_country_id:
                        type: integer
                      is_migrated:
                        type: boolean
                      without_cellphone:
                        type: boolean
                      nimbochat_invitation_sent:
                        type: boolean
                      medical_record:
                        type: string
                      cirrus_patient_id:
                        nullable: true
          description: Successful response
      security:
        - BearerAuth: []
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer

````