Developer Documentation
Integrate RadAnalyzer's cardiac VHS / VLAS measurements and feline USG screening into your veterinary software.
API keys are issued on request. Submit a request and our team will get back to you.
Request an API KeyVHS / VLAS v3 and USG Screening v1 are live in production as of May 1, 2026.
Two algorithms, two routes, one host. Both ML products are served from api.radanalyzer.com using the same x-api-key credential and billing tier:
- • VHS / VLAS cardiac measurement —
/vhs/v3/*(production-ready, formerly served at/v3/*and/eu/*) - • USG Screening —
/usg/v1/*(new in 2026 — feline urine specific gravity from routine bloodwork)
Enterprise discounts are available for sustained high-volume usage on either route — contact us if you expect high volume.
Quick Start
Two algorithms, one host. Cardiac VHS / VLAS shown below — see the USG reference for the bloodwork-to-USG workflow.
import requests, base64
with open("radiograph.jpg", "rb") as f:
image = base64.b64encode(f.read()).decode()
r = requests.post(
"https://api.radanalyzer.com/vhs/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