LLM gateway & AI completion API for agents — call frontier models (Claude, GPT, DeepSeek) across cheap/pro/ultra tiers from one endpoint, pay-per-call in USD...
Coding
OpenAI-Compatible LLM Gateway
Try itOpenAI-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...
What it does
OpenAI-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.
The skill document
OpenAI-Compatible LLM Gateway
Drop-in
base_urlfor any OpenAI client. 17 models, pay-per-call in USDC, no API key, no signup.
When to use this
- You want frontier LLM completions (GPT, Claude, Gemini, DeepSeek, Llama, Kimi, Qwen) without managing provider keys or accounts.
- You want to pay per call in USDC (x402, Base or Solana) instead of a subscription — or fund a key and pay from balance.
- You need a drop-in OpenAI-compatible endpoint your existing tools/SDKs already speak.
Base URL
https://api.gocreativeai.com/v1
Endpoints
POST /v1/chat/completions— OpenAI-compatible chat completions. Send{model, messages}, get a standardchat.completionback. $0.02 / call. (Streaming not yet supported — setstream: false.)GET /v1/models— free. Lists every model the gateway routes to.- Tiered shortcuts (URL-encode the prompt in the path):
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.25
How to pay (no signup either way)
- x402 (pay-per-call): call the endpoint with an x402-enabled client; it returns HTTP 402 offering USDC on Base or Solana, your client pays, the call completes.
- Funded key: fund a key and pass it as the OpenAI
api_key(Authorization: Bearer gck_...).
Drop-in example (OpenAI SDK)
from openai import OpenAI
client = OpenAI(base_url="https://api.gocreativeai.com/v1", api_key="gck_")
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
curl -X POST https://api.gocreativeai.com/v1/chat/completions \
-H "Authorization: Bearer gck_" -H "Content-Type: application/json" \
-d '{"model":"gpt-4o-mini","messages":[{"role":"user","content":"hi"}]}'
Models
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.
Why this vs others
- Keyless + pay-per-call in USDC (Base + Solana) — no subscription, no account, no rate limits.
- Bundled with 350+ data & compliance tools on the same API (company enrichment, sanctions/KYB screening, SEC filings, crypto/DeFi, government data) — one
base_urlfor LLM and real-world data.
Related skills
One API and one credential for frontier and open-source LLMs, built into your Neon branch and powered by Databricks. Use when a user wants to call an LLM, add AI/chat/an agent to their app, route between model providers (OpenAI, Anthropic, Google/Gemini, Meta, Alibaba, DeepSeek), or avoid juggling separate provider API keys and accounts — especially when they already use Neon and want AI requests to branch with their project. Works with the OpenAI SDK, Anthropic SDK, google-genai, the Vercel AI SDK, and Mastra by changing only the base URL. Triggers include "call an LLM", "add AI to my app", "chat completion", "model routing", "LLM proxy/gateway", "one API for all models", "use Claude/GPT/Gemini", "AI SDK", "Mastra agent", "Neon AI Gateway", and "log/rate-limit AI calls".
Give your agent its own LLM gateway account. Signs up for ProxyLLM (an OpenAI-compatible gateway with fallback lanes, budgets, and request logs) autonomously...
Quota-aware LLM router that squeezes maximum usable AI out of free-tier API keys across Gemini, Mistral, OpenRouter, Kilo and Cerebras plus any OpenAI-compatible endpoint (including local Ollama/llama.cpp/vLLM). Probes every model on every key, measures real quality and real published rate limits, then routes each request to the cheapest model that can do the job — spending abundant capacity first and reserving scarce daily quota for when it is actually needed. Persists cooldowns to disk so a 429 discovered in one process is respected by the next. Use when an agent must make many LLM calls on free keys without hitting rate limits, when "all models failed", or when deciding which of several provider keys to use for a task.
开源大模型综合技能 - 覆盖国内外主流开源LLM的选型、部署、调优、API调用。国产: DeepSeek/Qwen/ChatGLM/Yi/MiniMax/Baichuan/Kimi。国际: Llama/Mistral/Gemma/Phi/Falcon/Granite/DBRX
Compare multiple LLM models (GPT-5, Claude Sonnet 4.5, Gemini 3, DeepSeek v4-pro, Grok 4, etc.) side-by-side in one parallel request via OATDA's unified AI g...