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.
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