Integrate Vizion computer vision models into your application.
All API requests require a Bearer token. Create an API key in your dashboard.
Authorization: Bearer vz_live_your_api_key_here| Model ID | Name | Description | Credits |
|---|---|---|---|
| sam3 | SAM-3 | Segment Anything Model 3 — state-of-the-art image segmentation | 5 |
| yolo | YOLO | Real-time object detection with high accuracy | 2 |
| depth-anything-3 | DepthAnything 3 | Monocular depth estimation for any image | 3 |
POST /api/v1/inferenceValidates your API key, deducts credits, and authorizes the inference request. The GPU inference server calls this endpoint before processing.
curl -X POST https://www.vizion.fast/api/v1/inference \
-H "Authorization: Bearer vz_live_your_api_key" \
-H "Content-Type: application/json" \
-d '{"model": "yolo"}'{
"authorized": true,
"model": "yolo",
"credits_deducted": 2
}{
"error": "Insufficient credits",
"credits_required": 2
}{
"error": "Invalid API key"
}GET /api/v1/modelsReturns available models with their credit costs. No authentication required.
curl https://www.vizion.fast/api/v1/modelsEach API request consumes credits based on the model used: