Developer Documentation
Integrate RadAnalyzer's AI-powered cardiac measurements into your veterinary software.
API keys are issued on request. Submit a request and our team will get back to you.
Request an API KeyV3 is targeted for production on May 1, 2026. Until then, endpoints, response formats, and billing details on this page are subject to change.
V3 API Reference
Complete endpoint documentation, request/response schemas, code examples, and authentication details for the RadAnalyzer V3 API.
MigrationV2 to V3 Breaking Changes
Detailed breakdown of every breaking change between V2 and V3, with side-by-side request/response comparisons.
MigrationV2 to V3 Migration Guide
Step-by-step migration plan with timeline, communication schedule, and checklist for transitioning from V2 to V3.
Coming SoonDeveloper Portal
Manage API keys, monitor usage, and handle billing. Self-service portal coming late June 2026.
Quick Start
Send a radiograph and get cardiac measurements in seconds.
import requests, base64
with open("radiograph.jpg", "rb") as f:
image = base64.b64encode(f.read()).decode()
r = requests.post(
"https://api.radanalyzer.com/v3/predict",
headers={"x-api-key": "YOUR_API_KEY", "Content-Type": "application/json"},
json={"image": image, "uuid": "patient-123"}
)
data = r.json()
print(f"VHS: {data['vhs']}, VLAS: {data['vlas']}")Need an API Key?
API keys are provisioned per customer. Submit a request and we'll set you up.
Request an API Key