SkyShop is free. We append a notice to each completion so nobody can resell this inference as a paid product.
Live list for public free key via /v1/models (ACL-filtered). Click copy to paste into clients.
SkyShop is an OpenAI-compatible and Anthropic-compatible gateway powered by grok2api. Use whichever your client already speaks — no adapters needed.
curl https://sky.akumauduabelas.biz.id/v1/chat/completions \ -H "Authorization: Bearer sk-sky-a5f...7e7a" \ -H "Content-Type: application/json" \ -d '{ "model": "sky4/grok-4.5", "messages": [ {"role": "system", "content": "You are a concise assistant."}, {"role": "user", "content": "Hello!"} ], "temperature": 0.7, "max_tokens": 512 }'
from openai import OpenAI client = OpenAI( base_url="https://sky.akumauduabelas.biz.id/v1", api_key="sk-sky-a5f...7e7a", ) r = client.chat.completions.create( model="sky4/grok-4.5", messages=[{"role": "user", "content": "Hello!"}], ) print(r.choices[0].message.content)
import OpenAI from "openai"; const client = new OpenAI({ baseURL: "https://sky.akumauduabelas.biz.id/v1", apiKey: "sk-sky-a5f...7e7a", }); const r = await client.chat.completions.create({ model: "sky4/grok-4.5", messages: [{ role: "user", content: "Hello!" }], }); console.log(r.choices[0].message.content);
Streaming is supported — pass stream: true (SSE).
import anthropic client = anthropic.Anthropic( base_url="https://sky.akumauduabelas.biz.id", api_key="sk-sky-a5f...7e7a", ) r = client.messages.create( model="sky4/grok-4.5", max_tokens=1024, messages=[{"role": "user", "content": "Hello!"}], ) print(r.content[0].text)
Anthropic requires max_tokens and puts the system prompt in a top-level system field.
Point any OpenAI/Anthropic client at the base URL above. Common setups:
| Tool | Format | Base URL |
|---|---|---|
| LibreChat | OpenAI | …/v1 |
| Open WebUI | OpenAI | …/v1 |
| Cursor | OpenAI | …/v1 |
| Continue | OpenAI / Anthropic | …/v1 or … |
| SillyTavern | OpenAI / Anthropic | …/v1 or … |
| liteLLM | OpenAI | …/v1 |
Open WebUI — Admin Panel → Connections → OpenAI API: Base URL https://sky.akumauduabelas.biz.id/v1, paste your key.
Cursor — Settings → Models: set OpenAI API Key + OpenAI Base URL to https://sky.akumauduabelas.biz.id/v1, then pick sky4/grok-4.5.