Skip to main content
GET
/
api
/
patients
/
:id
curl -X GET "https://api.saludya.com/api/patients/pat_1a2b3c4d5e6f" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json"
{
  "id": "pat_1a2b3c4d5e6f",
  "name": "Maria Garcia",
  "email": "maria.garcia@email.com",
  "phone": "+1-555-0123",
  "date_of_birth": "1985-03-15",
  "medical_history": {
    "conditions": ["Hypertension", "Migraine"],
    "allergies": ["Sulfa drugs", "Latex"],
    "medications": ["Lisinopril 10mg", "Sumatriptan 50mg"],
    "blood_type": "O+"
  },
  "insurance": {
    "provider": "BlueCross BlueShield",
    "policy_number": "BC123456789",
    "group_number": "GRP-5544",
    "expiration_date": "2025-06-30"
  },
  "emergency_contact": {
    "name": "Juan Garcia",
    "phone": "+1-555-0124",
    "relationship": "Husband"
  },
  "appointments": {
    "total": 12,
    "upcoming": 2,
    "completed": 10
  },
  "created_at": "2024-01-15T10:30:00Z",
  "updated_at": "2024-02-20T14:22:00Z"
}

Documentation Index

Fetch the complete documentation index at: https://mintlify.com/DUVAN100/saludya-api/llms.txt

Use this file to discover all available pages before exploring further.

This endpoint returns Protected Health Information (PHI). Access is logged for HIPAA compliance and audit purposes.

Path Parameters

id
string
required
Unique patient identifier (e.g., pat_1a2b3c4d5e6f)

Response

id
string
Unique patient identifier
name
string
Patient’s full name
email
string
Patient’s email address
phone
string
Patient’s phone number
date_of_birth
string
Patient’s date of birth (ISO 8601 format)
medical_history
object
Patient’s medical history information
conditions
array
List of existing medical conditions
allergies
array
List of known allergies
medications
array
List of current medications
blood_type
string
Blood type
insurance
object
Insurance information
provider
string
Insurance provider name
policy_number
string
Insurance policy number
group_number
string
Insurance group number
expiration_date
string
Insurance expiration date
emergency_contact
object
Emergency contact information
name
string
Contact person’s name
phone
string
Contact person’s phone number
relationship
string
Relationship to patient
appointments
object
Appointment statistics
total
integer
Total number of appointments
upcoming
integer
Number of upcoming appointments
completed
integer
Number of completed appointments
created_at
string
Timestamp when patient was created
updated_at
string
Timestamp when patient was last updated
curl -X GET "https://api.saludya.com/api/patients/pat_1a2b3c4d5e6f" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json"
{
  "id": "pat_1a2b3c4d5e6f",
  "name": "Maria Garcia",
  "email": "maria.garcia@email.com",
  "phone": "+1-555-0123",
  "date_of_birth": "1985-03-15",
  "medical_history": {
    "conditions": ["Hypertension", "Migraine"],
    "allergies": ["Sulfa drugs", "Latex"],
    "medications": ["Lisinopril 10mg", "Sumatriptan 50mg"],
    "blood_type": "O+"
  },
  "insurance": {
    "provider": "BlueCross BlueShield",
    "policy_number": "BC123456789",
    "group_number": "GRP-5544",
    "expiration_date": "2025-06-30"
  },
  "emergency_contact": {
    "name": "Juan Garcia",
    "phone": "+1-555-0124",
    "relationship": "Husband"
  },
  "appointments": {
    "total": 12,
    "upcoming": 2,
    "completed": 10
  },
  "created_at": "2024-01-15T10:30:00Z",
  "updated_at": "2024-02-20T14:22:00Z"
}