Developer platform 路 API v1

Build with the FastClinic API.

Read the live demo database through a typed, versioned API. Selected integration writes are implemented behind bearer-token authentication.

Public preview access. GET endpoints require no authentication. Writes return 503 until FASTSME_API_TOKEN is configured. Enabled clients send Authorization: Bearer <token>.

Resources

Patients

Synthetic patient demographic and registration records.

GET /api/v1/patientsGET /api/v1/patients/{id}

Consultations

Synthetic consultation activity and revenue.

GET /api/v1/consultationsGET /api/v1/consultations/{id}

Treatments

Billable treatment lines classified by category and specialty.

GET /api/v1/treatmentsGET /api/v1/treatments/{id}

Diagnoses

Synthetic diagnosis records linked to consultations.

GET /api/v1/diagnosesGET /api/v1/diagnoses/{id}

Quick start

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