Get API
Back to Marketplace
🤖
Pay-per-callv2.1.0⭐ Featured API

VisionAI Object Detection

AI & Machine Learning Infrastructure

VisionAI uses a custom YOLO-v9-based architecture fine-tuned on 80 COCO classes plus 30 additional custom ones. Supports JPEG, PNG, WebP, and MP4. Includes confidence scores, bounding boxes, and segmentation masks. Available as both REST and WebSocket streaming.

RESTStreamingReal-timeOpenAPIPython
https://api.visionai.dev/v2
Trust Score

4.8 / 5

201 dev notes

Live Uptime

99.95%

Guaranteed SLA

Avg Latency

85ms

Global Edge

API Traffic

5.1M

monthly average

Available Endpoints

POST/detectDetect objects in an image URL or base64
POST/ocrExtract text from images
POST/facesDetect and analyze faces
POST/classifyClassify image into top-5 categories
Implementation Example
const res = await fetch('https://api.visionai.dev/v2/detect', {
  method: 'POST',
  headers: { 'X-API-Key': process.env.VISION_KEY, 'Content-Type': 'application/json' },
  body: JSON.stringify({ image_url: 'https://example.com/photo.jpg', confidence: 0.7 }),
});
const { detections } = await res.json();
console.log(detections); // [{ label, confidence, box }]

API Access

✓ FREE TIER ACTIVE

First 1,000 calls are free every month.

Personal$5/mo
Team$15/mo
Enterprise$49/mo
Technical Docs

API Provider

Nina Torres

Nina Torres

Data & ML engineer turning models into production APIs.