SkyShop (◕‿◕)

free token · grok only

OpenAI-compatible gateway for SkyShop. Free inference — not for resale.

base · https://sky.akumauduabelas.biz.id/v1

Announcement

Every 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.”

How to use the API

SkyShop is an OpenAI-compatible gateway. Use whichever client already speaks OpenAI — no adapters needed.

OpenAI-compatible

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
  }'

Python (openai SDK)

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)

Integrations

ToolFormatBase URL
Open WebUIOpenAI…/v1
CursorOpenAI…/v1
ContinueOpenAI…/v1
SillyTavernOpenAI…/v1
liteLLMOpenAI…/v1

Set base URL to https://sky.akumauduabelas.biz.id/v1, paste the API key, model sky4/grok-4.5.

free token · grok only · SkyShop t.me/agentxvan
Copied!