Put veterinary measurement in your product

Cardiac VHS / VLAS and feline USG screening as a production REST API — live since May 2026, one key, two routes. For PIMS and imaging vendors, referral groups, and research teams.

Running a referral caseload rather than building software? See RadAnalyzer for specialists

API keys are issued on request. Submit a request and our team will get back to you.

Request an API Key

VHS / 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