Comprehensive guide to using the Medical Data Validator API and tools
Get up and running with the Medical Data Validator in minutes.
Complete API documentation with examples and response formats.
Test API endpoints directly from your browser with Swagger UI.
curl -X GET "http://localhost:8000/api/health"
curl -X POST "http://localhost:8000/api/validate/data" \
-H "Content-Type: application/json" \
-d '{"patient_id": ["P001"], "age": [30]}'
import requests
response = requests.post(
"http://localhost:8000/api/validate/data",
json={"patient_id": ["P001"], "age": [30]}
)
result = response.json()