OpenAPI 3.0 Compatible API

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

POST https://vorenthic.pages.dev/labs/v1/chat/completions

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 NameTypeContext Limit
vorenthic/alpanzo4Text, Code & Vision OCR100,000 tokens
vorenthic_imagen 4Image 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).

POST https://vorenthic.pages.dev/api/image

Request Body Fields

ParameterTypeDescription
promptstring (required)A detailed description of the image to generate. Max 500 characters.
stepsinteger (optional)Number of inference steps (default: 28). Range: 1-50.
seedinteger (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:

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.