Api Bronson Hot! Instant
https://api.bronson.io/v1 (sandbox: https://sandbox-api.bronson.io/v1 )
"access_token": "eyJhbGciOiJIUzI1NiIs...", "expires_in": 3600, "token_type": "Bearer" api bronson
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: https://api
OAuth 2.0 (Client Credentials or Authorization Code flow) "message": "Missing required field: patient_id"
POST /webhooks/subscribe
"url": "https://your-app.com/webhook/bronson", "events": ["appointment.created", "lab.result.available"], "secret": "your-verification-token"
"error": "invalid_request", "message": "Missing required field: patient_id", "status": 400