Predictable latency tiers
Real-time and batch processing are planned. Rates and availability will be confirmed before launch.
Preview one API for specialist models and structured findings. AI endpoints are not live.
import requests
API_KEY = "vv_live_sample"
ENDPOINT = "https://api.vesselvision.ai/v1/analyze"
payload = {
"model": "prism",
"task": "pediatric-wrist-fracture",
"image_url": "https://storage.hospital.org/scans/wrist_pa_042.png",
"outputs": ["findings", "concepts", "heatmap"]
}
response = requests.post(
ENDPOINT,
headers={"Authorization": f"Bearer {API_KEY}"},
json=payload
)
result = response.json()
print("Findings:", result["findings"])
print("Concept Confidence:", result["concepts"])Keep model selection, inference uncertainty, and physician verification close to your application code.
Real-time and batch processing are planned. Rates and availability will be confirmed before launch.
Discuss deployment, encryption, and data-handling requirements before integration.