Install
openclaw skills install @colinhughes2121/openai-compatible-llm-gatewayOpenAI-compatible LLM gateway for AI agents — point your OpenAI client's base_url here and pay per call in USDC via x402 (Base or Solana) or a funded key. 17 models (GPT, Claude, Gemini, DeepSeek, Llama, Kimi, Qwen). No signup, no API key, no rate limits. The keyless pay-per-call alternative to OpenRouter and BlockRun.
openclaw skills install @colinhughes2121/openai-compatible-llm-gatewayDrop-in
base_urlfor any OpenAI client. 17 models, pay-per-call in USDC, no API key, no signup.
https://api.gocreativeai.com/v1
POST /v1/chat/completions — OpenAI-compatible chat completions. Send {model, messages}, get a standard chat.completion back. $0.02 / call. (Streaming not yet supported — set stream: false.)GET /v1/models — free. Lists every model the gateway routes to.GET /v1/ai/eco/{prompt} — cheapest, $0.005GET /v1/ai/ask/{prompt} — standard, $0.02GET /v1/ai/pro/{prompt} — frontier (Claude/GPT-5), $0.08GET /v1/ai/ultra/{prompt} — top reasoning (Opus), $0.25api_key (Authorization: Bearer gck_...).from openai import OpenAI
client = OpenAI(base_url="https://api.gocreativeai.com/v1", api_key="gck_<your-key>")
resp = client.chat.completions.create(
model="gpt-4o-mini",
messages=[{"role": "user", "content": "Summarize this in one line: ..."}],
)
print(resp.choices[0].message.content)
curl -X POST https://api.gocreativeai.com/v1/chat/completions \
-H "Authorization: Bearer gck_<your-key>" -H "Content-Type: application/json" \
-d '{"model":"gpt-4o-mini","messages":[{"role":"user","content":"hi"}]}'
17 models across tiers — GPT-5 / 5-mini / 5-nano, Claude Sonnet / Haiku / Opus, Gemini Flash / Pro, DeepSeek, Llama, Kimi, Qwen, GPT-OSS. Call GET /v1/models for the live list. Unknown model names map to a sensible default.
base_url for LLM and real-world data.