! 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."

SkyShop

● ACTIVE
0
tok left · loading…
0%LEFT
— used— total
Total Quota
Used
Requests
Base URL

Available Models

Live list for public free key via /v1/models (ACL-filtered). Click copy to paste into clients.

Loading models…

How to use the API

SkyShop is an OpenAI-compatible and Anthropic-compatible gateway powered by grok2api. Use whichever your client already speaks — no adapters needed.

OpenAI format Anthropic format Tools calling Integrations

OpenAI-compatible

BASE https://sky.akumauduabelas.biz.id/v1
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
  }'

Python (openai SDK)

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)

JavaScript / TypeScript

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).

Anthropic-compatible

BASE https://sky.akumauduabelas.biz.id
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.

Integration with other tools

Point any OpenAI/Anthropic client at the base URL above. Common setups:

ToolFormatBase URL
LibreChatOpenAI…/v1
Open WebUIOpenAI…/v1
CursorOpenAI…/v1
ContinueOpenAI / Anthropic…/v1 or …
SillyTavernOpenAI / Anthropic…/v1 or …
liteLLMOpenAI…/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.

FREE TOKENGROK ONLYUPDATED JUST NOWNO RESELLING FREE TOKENGROK ONLYUPDATED JUST NOWNO RESELLING