Getting Started
Getting Started with Vyor AI
Welcome to the Vyor AI documentation. This guide will help you integrate our powerful AI capabilities into your applications within minutes.
Sub-50ms Latency
Edge-optimized inference with global CDN distribution.
Multi-Model Support
Access vision, NLP, and generative models through a unified API.
Global Edge Network
Deploy models to 30+ edge locations worldwide.
Enterprise Security
SOC 2 Type II compliant with end-to-end encryption.
Quick Start
Install the SDK and make your first API call in under 60 seconds.
index.ts
import { Vyor } from '@vyor/sdk';
// Initialize the client
const vyor = new Vyor({
apiKey: process.env.VYOR_API_KEY,
region: 'ap-south-1',
});
// Run a vision model
const result = await vyor.run({
model: 'vision-v2',
input: imageBuffer,
options: {
confidence: 0.95,
format: 'json',
},
});
console.log(result.predictions);API Reference
POST
/v1/runGET
/v1/modelsPOST
/v1/plugins/deployGET
/v1/statusAuthentication
All API requests require authentication via API keys. Include your key in the Authorization header as a Bearer token.
Authorization: Bearer vy_sk_xxxxxxxxxxxxx
Documentation Coming Soon
Our comprehensive API documentation, SDKs, and developer guides are being finalized. Join the waitlist to get early access.
In Active Development