Patients
Synthetic patient demographic and registration records.
GET /api/v1/patientsGET /api/v1/patients/{id} Read the live demo database through a typed, versioned API. Selected integration writes are implemented behind bearer-token authentication.
Authorization: Bearer <token>. Synthetic patient demographic and registration records.
GET /api/v1/patientsGET /api/v1/patients/{id} Synthetic consultation activity and revenue.
GET /api/v1/consultationsGET /api/v1/consultations/{id} Billable treatment lines classified by category and specialty.
GET /api/v1/treatmentsGET /api/v1/treatments/{id} Synthetic diagnosis records linked to consultations.
GET /api/v1/diagnosesGET /api/v1/diagnoses/{id} curl "https://fastclinic.dev/api/v1/patients?limit=20"
python - <<'PY'
import requests
rows = requests.get("https://fastclinic.dev/api/v1/patients", timeout=20).json()
print(rows["data"])
PY Runtime OpenAPI: /api/openapi.json 路 Stable compatibility schema: /swagger.json 路 Interactive docs: /api/docs