Welcome, Developer

$5/mo Plan Active
Loading account...
Endpoint: https://vokeapi.com/v1
Live Gateway Calls
0
Total requests processed by gateway.
No calls recorded yet. Send a request to see live activity.
Recent gateway activity Awaiting traffic
No model traffic recorded yet
Tokens Consumed Real-time
0 Tokens
Prompt & completion tokens processed in real time.
Prompt: 0 Completion: 0 Avg: 0 / req
Models Active
10 Active
High-throughput models deployed across edge gateways.
deepseek-v4-pro deepseek-v4-flash laguna-s-2.1 glm-5.3-flash mercury-2 dots-3-note-preview qwen3.8-flash minimax-m3 mimo-v2.5 gpt-5.6-sol

Playground

System Instructions
Temperature 0.6
Max Generation 2,048 tokens
What can I help with?
gpt-5.6-sol

Active API Keys

Name Secret Key Created Status Action
No active API keys. Click "+ Create New Key" above to generate your first secret key.

Live Requests

Time Model Status Latency

Unified SDK Snippet

Universal endpoint
voke-sdk.ts
// OpenAI-compatible integration via Voke API
import OpenAI from "openai";

const client = new OpenAI({
  baseURL: "https://vokeapi.com/v1",
  apiKey: "sk-voke-ins8B3gFyF..."
});

// Universal routing across any model with standard OpenAI chat schema
const response = await client.chat.completions.create({
  model: "gpt-5.6-sol",
  messages: [
    { role: "user", content: "Explain quantum computing in simple terms" }
  ]
});

console.log(response.choices[0].message.content);
Universal shape across every open model. Zero adapter code needed.