Vorenthic Labs API Documentation
Welcome to the official developer documentation for Vorenthic AI endpoints. Integrate high-speed text reasoning, image generation, vision OCR, and code execution into any application using OpenAI-compatible SDKs or HTTP requests.
Base URL & Endpoint
Authentication
All API requests require a valid Vorenthic API key starting with vapi-. Generate keys from your Vorenthic AI Studio Dashboard (up to 5 named keys per account).
Authorization: Bearer vapi-xxxxxxxxxxxxxxx
Quickstart Examples
cURL
curl -X POST https://vorenthic.pages.dev/labs/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer vapi-xxxxxxxxxxxxxxx" \
-d '{
"model": "vorenthic/alpanzo4",
"messages": [{"role": "user", "content": "Write a Python script"}],
"max_tokens": 4096,
"stream": false
}'
Python (OpenAI SDK)
from openai import OpenAI
client = OpenAI(
base_url="https://vorenthic.pages.dev/labs/v1",
api_key="vapi-xxxxxxxxxxxxxxx"
)
completion = client.chat.completions.create(
model="vorenthic/alpanzo4",
messages=[{"role": "user", "content": "Explain quantum computing"}]
)
print(completion.choices[0].message.content)
Supported Models
| Model Name | Type | Context Limit |
|---|---|---|
| vorenthic/alpanzo4 | Text, Code & Vision OCR | 100,000 tokens |
| vorenthic_imagen 4 | Image Generation (SDXL Lightning) | N/A |
Image Generation API
Generate high-fidelity, photorealistic images from textual descriptions in a single API call using our high-speed vorenthic_imagen 4 model (powered by SDXL Lightning).
Request Body Fields
| Parameter | Type | Description |
|---|---|---|
| prompt | string (required) | A detailed description of the image to generate. Max 500 characters. |
| steps | integer (optional) | Number of inference steps (default: 28). Range: 1-50. |
| seed | integer (optional) | Random seed for generation repeatability. |
cURL Example
curl -X POST https://vorenthic.pages.dev/api/image \
-H "Content-Type: application/json" \
-H "Authorization: Bearer vapi-xxxxxxxxxxxxxxx" \
-d '{
"prompt": "A futuristic city in the style of cyberpunk with neon lights",
"steps": 28,
"seed": 42
}'
Response Structure (JSON)
{
"image": "data:image/png;base64,iVBORw0KGgoAAAANS..."
}
Rate Limits & Quotas
To ensure high service availability, accounts operate under the following thresholds:
- Request Rate Limit: 30 requests per minute per account (HTTP 429 on overflow).
- 6-Hour Token Quota: 2,000,000 tokens per rolling 6-hour window.
- API Keys per Account: Max 5 active named keys.
Vorenthic Anti-DDoS Shield v2
Every request is inspected by Vorenthic DDoS Shield, featuring IP burst rate limiting (max 15 reqs/10s per IP), malicious scanner filtering, and 2MB payload size enforcement.