OpenAI-Compatible High-Availability Gateway for Google Gemini & Anthropic Claude Models
Pass any of the following model strings in your requests:
| Method | Endpoint | Description |
|---|---|---|
| POST | /v1/chat/completions |
Chat completions with streaming, function calling & thought signatures. |
| GET | /v1/models |
List all supported models and specs. |
| POST | /v1/embeddings |
Generate text embeddings. |
| POST | /v1/images/generations |
Generate images using multimodal models. |
| GET | /health |
Service health check status. |
| GET | /status |
Real-time account capacity & KPI dashboard. |
curl https://llm.wdsa.ru/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"model": "gemini-3.7-flash",
"messages": [
{"role": "user", "content": "Hello! Explain quantum computing in 2 sentences."}
],
"temperature": 0.7,
"stream": false
}'