Skip to main content
GET
/
patient
/
{patientId}
Retrieve patient profile
curl --request GET \
  --url https://virtserver.swaggerhub.com/SUBIN23K/Subin_Health/1.0.0/patient/{patientId} \
  --header 'api_key: <api-key>'
{
  "name": "Subin",
  "phone": 9876543210,
  "insurance": true,
  "patientId": 234796,
  "age": 100,
  "address": "Bangalore, India",
  "gender": "Male",
  "weight": 70,
  "email": "abc@example.com",
  "location": "Bangalore",
  "lastvisit": "01/03/2024"
}

Authorizations

api_key
string
header
required

Path Parameters

patientId
integer<int64>
required

Patient's ID

Example:

324235

Response

Successful operation

Demographic and basic medical profile of a patient.

name
string
required

Registered name of the patient.

Example:

"Subin"

phone
integer<int64>
required

Primary contact phone number for the patient.

Example:

9876543210

insurance
boolean
required

Indicates whether the patient has active health insurance coverage.

Example:

true

patientId
integer<int64>

Unique identifier for the patient.

Example:

234796

age
integer<int64>

Current age of the patient in years.

Example:

100

address
string

Primary residential address of the patient.

Example:

"Bangalore, India"

gender
string

Gender of the patient.

Example:

"Male"

weight
integer

Weight of the patient in kilograms.

Example:

70

email
string

Primary email address for the patient.

Example:

"abc@example.com"

location
string

City or primary geographic location of the patient.

Example:

"Bangalore"

lastvisit
string

Date of the patient's most recent hospital visit (DD/MM/YYYY).

Example:

"01/03/2024"