OpenAI-compatible gateway for SkyShop. Free inference — not for resale.
base · https://sky.akumauduabelas.biz.id/v1Every API response now ends with a free-service footer.
SkyShop is free. We append a notice to each completion so nobody can resell this inference as a paid product.
“This service is provided by SkyShop. If you paid to use this inference, you have been scammed.”
SkyShop is an OpenAI-compatible gateway. Use whichever client already speaks OpenAI — no adapters needed.
https://sky.akumauduabelas.biz.id/v1
API key · sk-sky-a5f93def-bf2a40347e7a
model · sky4/grok-4.5
curl https://sky.akumauduabelas.biz.id/v1/chat/completions \
-H "Authorization: Bearer sk-sky-a5f93def-bf2a40347e7a" \
-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-a5f93def-bf2a40347e7a",
)
r = client.chat.completions.create(
model="sky4/grok-4.5",
messages=[{"role": "user", "content": "Hello!"}],
)
print(r.choices[0].message.content)
| Tool | Format | Base URL |
|---|---|---|
| Open WebUI | OpenAI | …/v1 |
| Cursor | OpenAI | …/v1 |
| Continue | OpenAI | …/v1 |
| SillyTavern | OpenAI | …/v1 |
| liteLLM | OpenAI | …/v1 |
Set base URL to https://sky.akumauduabelas.biz.id/v1, paste the API key, model sky4/grok-4.5.