Manage practitioners (doctors, veterinarians) in the system
NovaMed Partner API (1.0.0)
The NovaMed Partner API enables healthcare partners to integrate with NovaMed for patient care management, prescription fulfillment, and order tracking.
Authentication: All requests require an x-api-key header with your API key.
Base URLs:
- Development:
https://novamed-feapidev.stackmod.info - Production:
https://feapi.novamed.care
For detailed guides, see the Getting Started documentation.
Download OpenAPI description
Overview
NovaMed API Support
License
Languages
Servers
Mock server
https://docs.novamed.care/_mock/openapi-partner/
Development environment
https://novamed-feapidev.stackmod.info/
Production environment
https://feapi.novamed.care/
- Mock serverhttps://docs.novamed.care/_mock/openapi-partner/api/external/patient
- Development environmenthttps://novamed-feapidev.stackmod.info/api/external/patient
- Production environmenthttps://feapi.novamed.care/api/external/patient
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://docs.novamed.care/_mock/openapi-partner/api/external/patient \
-H 'Content-Type: application/json' \
-H 'x-api-key: YOUR_API_KEY_HERE' \
-d '{
"clinic_id": "550e8400-e29b-41d4-a716-446655440000",
"first_name": "John",
"last_name": "Smith",
"date_of_birth": "1985-03-15",
"gender": "male",
"email": "john.smith@email.com",
"phone": "+1-555-0199",
"address_line1": "123 Main Street",
"address_line2": "Apt 4B",
"city": "San Francisco",
"state": "CA",
"zip": "94102"
}'Response
application/json
{ "success": true, "data": { "patient_id": "770e8400-e29b-41d4-a716-446655440002" }, "message": "Patient created successfully" }