Api Bronson [hot] May 2026
JSON (request & response)
"id": "MRN-10045", "first_name": "Jane", "last_name": "Doe", "dob": "1985-06-15", "gender": "F", "phone": "+1234567890", "email": "jane.doe@example.com" api bronson
POST /appointments Content-Type: application/json "patient_id": "MRN-10045", "provider_id": "DR-8823", "start_time": "2026-04-20T14:00:00Z", "end_time": "2026-04-20T14:30:00Z", "reason": "Follow-up hypertension" JSON (request & response) "id": "MRN-10045"
https://api.bronson.io/v1 (sandbox: https://sandbox-api.bronson.io/v1 ) api bronson
"appointment_id": "APT-9876", "status": "confirmed", "location": "Main Clinic - Suite 200"
Include in every request: Authorization: Bearer <access_token> 3. Core Endpoints | Resource | Method | Endpoint | Description | |------------------|--------|------------------------------|-------------| | Patient lookup | GET | /patients/id | Get patient by ID | | Search patients | GET | /patients?last=Smith&dob=1970-01-01 | Search | | Create appointment| POST | /appointments | Book new appointment | | List appointments | GET | /appointments?patient_id=id | Upcoming visits | | Clinical notes | GET | /patients/id/notes | SOAP notes, summaries | | Lab results | GET | /patients/id/labs | Recent lab results | 4. Example Requests 4.1 Get Patient by MRN curl -X GET "https://api.bronson.io/v1/patients/MRN-10045" \ -H "Authorization: Bearer YOUR_TOKEN" \ -H "Accept: application/json" Response: