pollinations.ai × OpenClaw

Use 25+ AI models as your OpenClaw brain through a single API. Free models with web search, vision & reasoning — connect your account and start building in 30 seconds.

OpenClaw Builders Night Berlin
Feb 12, 2026 · Antler Berlin
Where it started: OpenClaw Builders Night
This integration was born at the OpenClaw Builders Night hackathon in Berlin. See the event that kicked it off.
1
Get your API key
Free credits included — connect to get started:
or paste your key manually: enter.pollinations.ai

2
Set up OpenClaw
Install OpenClaw, then run the setup script:
curl -fsSL https://openclaw.ai/install.sh | bash
Run the setup script:
curl -fsSL https://raw.githubusercontent.com/pollinations/pollinations/main/apps/openclaw/setup-pollinations.sh \ | bash -s -- YOUR_API_KEY
  • 🔑 Saves API key to ~/.openclaw/openclaw.json
  • 🤖 Adds 10 OpenClaw models: 7 free — OpenClaw, Kimi K2.5, DeepSeek, DeepSeek Pro, GLM, Gemini + Search, Claude Haiku — plus 3 paid: Kimi K2.6, Claude Large, Gemini Large
  • 🔍 Also enables Perplexity Fast for the web_search tool via pollinations.ai (preserves existing if already set)
Or paste this into ~/.openclaw/openclaw.json:
{ "env": { "POLLINATIONS_API_KEY": "YOUR_API_KEY" }, "agents": { "defaults": { "model": { "primary": "pollinations/kimi", "fallbacks": ["pollinations/deepseek", "pollinations/glm"] }, "models": { "pollinations/kimi": { "alias": "Kimi K2.5" }, "pollinations/kimi-k2.6": { "alias": "Kimi K2.6" }, "pollinations/deepseek": { "alias": "DeepSeek V4 Flash" }, "pollinations/deepseek-pro": { "alias": "DeepSeek V4 Pro" }, "pollinations/glm": { "alias": "GLM 5.1" }, "pollinations/gemini-search": { "alias": "Gemini + Search" }, "pollinations/claude-fast": { "alias": "Claude Haiku 4.5" }, "pollinations/claude-large": { "alias": "Claude Opus 4.6" }, "pollinations/gemini-large": { "alias": "Gemini 3 Pro" } } } }, "models": { "mode": "merge", "providers": { "pollinations": { "baseUrl": "https://gen.pollinations.ai/v1", "apiKey": "${POLLINATIONS_API_KEY}", "api": "openai-completions", "models": [ { "id": "kimi", "name": "Kimi K2.5", "reasoning": true, "input": ["text","image"], "contextWindow": 256000 }, { "id": "kimi-k2.6", "name": "Kimi K2.6 (Paid)", "reasoning": true, "input": ["text","image"], "contextWindow": 262000 }, { "id": "deepseek", "name": "DeepSeek V4 Flash", "input": ["text"], "contextWindow": 1000000 }, { "id": "deepseek-pro", "name": "DeepSeek V4 Pro", "input": ["text"], "contextWindow": 65536 }, { "id": "glm", "name": "GLM 5.1", "input": ["text"], "contextWindow": 128000 }, { "id": "gemini-search", "name": "Gemini + Search", "input": ["text","image"], "contextWindow": 128000 }, { "id": "claude-fast", "name": "Claude Haiku 4.5", "input": ["text","image"], "contextWindow": 200000 }, { "id": "claude-large", "name": "Claude Opus 4.6 (Paid)", "input": ["text","image"], "contextWindow": 200000 }, { "id": "gemini-large", "name": "Gemini 3 Pro (Paid)", "reasoning": true, "input": ["text","image"], "contextWindow": 1000000 } ] } } }, "tools": { "web": { "search": { "provider": "perplexity", "perplexity": { "baseUrl": "https://gen.pollinations.ai/v1", "apiKey": "${POLLINATIONS_API_KEY}", "model": "perplexity-fast" } } } }, "gateway": { "mode": "local" } }
Paste this into your agent chat — it will configure Pollinations as a provider:

Add pollinations.ai as a model provider. Run this command:

curl -fsSL https://raw.githubusercontent.com/pollinations/pollinations/main/apps/openclaw/setup-pollinations.sh | bash -s -- YOUR_API_KEY

The script will restart the gateway automatically. After that, switch to the new provider with: /model pollinations/kimi

Which model should I use?

Kimi K2.6 paid
pollinations/kimi-k2.6
Moonshot's flagship agentic model. 262K context, vision, reasoning. Strongest open-weight option for long, tool-heavy sessions.
Gemini + Search web search
pollinations/gemini-search
Google Gemini with always-on web search. Vision support. Look up docs, APIs, recent changes.
DeepSeek V3.2 reasoning
pollinations/deepseek
Strong reasoning & tool calling. Good alternative to Kimi for hard problems.
GLM 5
pollinations/glm
Z.ai — coding, reasoning, agentic workflows. Competitive with Kimi.
Claude Haiku 4.5
pollinations/claude-fast
Anthropic — fast with good reasoning. Claude quality, lower cost.
Claude Opus 4.6
pollinations/claude-large
Anthropic's most capable model. Vision, tools, deep reasoning.
Gemini 3 Pro
pollinations/gemini-large
Google's flagship with vision, audio & video understanding.

Switch models anytime: /model pollinations/kimi

Image, video & audio

Community-built pollinations.ai skill by @isaacgounton — gives your agent multi-modal generation.

/skill install isaacgounton/pollinations

This adds image generation (Flux, GPT Image, Imagen 4), video (Veo 3.1, Seedance), text-to-speech (13 voices), and vision analysis to your agent. Separate from the LLM provider setup above.