Quick Start
clawfeeder.ai is compatible with the OpenAI SDK. Just replace base_url and api_key to access 22 AI models. No other code changes needed — formats, parameters, and response structures are identical.
Base URL
https://api.clawfeeder.ai/v1API Key format
cf-xxxxxxxxxxxxxxxxGet Your API Key
Follow these steps to get your API Key — takes about 2 minutes.
- 1Register — sign up with your email address
- 2Verify phone — verify your phone number to activate
- 3Copy your API Key — go to Dashboard > API Keys to generate and copy it
Python Example
Install the openai library (pip install openai), then run the code below.
from openai import OpenAI client = OpenAI( api_key="cf-your-api-key", base_url="https://api.clawfeeder.ai/v1" ) response = client.chat.completions.create( model="claude-sonnet-4-6", messages=[{"role": "user", "content": "Hello!"}] ) print(response.choices[0].message.content)
Node.js / TypeScript Example
Install the openai package (npm install openai), then use the code below.
import OpenAI from "openai"; const client = new OpenAI({ apiKey: "cf-your-api-key", baseURL: "https://api.clawfeeder.ai/v1", }); const response = await client.chat.completions.create({ model: "claude-sonnet-4-6", messages: [{ role: "user", content: "Hello!" }], }); console.log(response.choices[0].message.content);
curl Example
Send requests directly with curl — no SDK required.
curl https://api.clawfeeder.ai/v1/chat/completions \ -H "Authorization: Bearer cf-your-api-key" \ -H "Content-Type: application/json" \ -d '{ "model": "deepseek-v3.2", "messages": [{"role": "user", "content": "Hello!"}] }'
Supported Models
A selection of key supported models. Use the model name directly in your request — no extra configuration needed.
| Model | Provider | Highlights |
|---|---|---|
| qwen3.5-flash | Alibaba | Ultra-low cost, fastest response |
| deepseek-v3.2 | DeepSeek | Chinese-optimized, ultra-low cost |
| minimax-m2.5 | MiniMax | Cost-efficient Chinese LLM |
| gemini-3.1-flash-lite | Google lightweight, 1M context | |
| qwen3.5-397b-a17b | Alibaba | Large-scale, cost-efficient |
| kimi-k2.5 | Moonshot AI | Long-context specialist |
| glm-5 | Zhipu AI | Zhipu AI flagship |
| qwen3-max | Alibaba | Alibaba top-tier reasoning |
| claude-haiku-4-5 | Anthropic | Fast & lightweight |
| gemini-3.1-pro-preview | Google flagship, 1M context | |
| gpt-5.2 | OpenAI | Balanced performance & cost |
| gpt-5.3-codex | OpenAI | Code-optimized |
| gpt-5.4 | OpenAI | Most powerful GPT |
| claude-sonnet-4-6 | Anthropic | Best for code & reasoning |
| claude-opus-4-6 | Anthropic | Deepest reasoning, highest quality |
See the pricing page for the full model list and credit costs.
Error Handling
clawfeeder.ai returns standard HTTP status codes, consistent with the OpenAI API.
| Status | Meaning |
|---|---|
| 401 | Invalid or expired API Key |
| 429 | Too many requests — reduce frequency |
| 402 | Insufficient credits — top up your account |
| 500 | Upstream model error — please retry |
Try clawfeeder.ai for free
7-day free trial · 300 credits · No card required