Pollinations.AI 的免费额度给到哪一步
Pollinations 提供一个 OpenAI 兼容的文本端点,基础用法不带 key 也能调用,官方 API 文档也没有公布 RPM 或 RPD。文档确实写明自 2025-03-31 起免费层的图片可能带水印,所以免费层的产出和付费层并不完全一样。
- 官方公布限额
- 有限流但未公布数值
- 免费形式
- 厂商免费额度
- 信用卡
- 不需要
- 协议
- 兼容 OpenAI,端点
https://text.pollinations.ai/openai - 生命周期
- 正常开放
- 来源核验日期
- 2026-07-25
这是社区运营的服务而不是商业服务商,可用性按尽力而为看待,不要把生产依赖压在上面。
Pollinations.AI 在这份清单里处于什么位置
本站详列的 25 家服务商里,属于厂商免费额度的有 15 家,Pollinations.AI 是其中之一。它不要求绑信用卡,25 家里有 23 家是这样。它没有公布固定的请求次数,25 家里有 16 家同样没有。
| 对比对象 | 官方公布限额 | 信用卡 | 端点 |
|---|---|---|---|
| Pollinations.AI(当前页) | 有限流但未公布数值 | 不需要 | text.pollinations.ai |
| Ollama Cloud | 有限流但未公布数值 | 不需要 | ollama.com |
| Google Gemini API | 按项目层级设定 | 不需要 | generativelanguage.googleapis.com |
| GroqCloud | 每分钟 30 次请求,每天 1000 次请求 | 不需要 | api.groq.com |
Pollinations.AI 标为免费的模型
openai—— 不属于本清单跨服务商跟踪的任何系列mistral—— Mistral,本站另有 3 家服务商也免费提供Community-hosted open models—— 不属于本清单跨服务商跟踪的任何系列
本站另有 3 家服务商也以免费条款提供 Mistral 系列,而且条款并不相同:Mistral La Plateforme、IBM watsonx.ai、Chutes。
怎么验一个 Pollinations.AI 的 key
CORS 预检允许任意源携带 Authorization 请求头,所以浏览器可以直接调用这个端点。这一结论是 2026-07-25 针对 https://text.pollinations.ai 实测得到的。
所以不用装任何东西,直接在浏览器检测页里就能验。如果你不愿意把 key 粘进网页,下面这条命令是等价的:
#!/usr/bin/env sh
set -eu
: "${POLLINATIONS_API_KEY:?Set POLLINATIONS_API_KEY to a key you created yourself at the provider console}"
# Prints the models this key can reach, then the HTTP status on its own line so
# 200, 401, and 429 stay distinguishable.
curl --silent --show-error \
--write-out '\nHTTP %{http_code}\n' \
--header "Authorization: Bearer $POLLINATIONS_API_KEY" \
'https://text.pollinations.ai/openai/models'
怎么用一个 Pollinations.AI 的 key
Pollinations.AI 在 https://text.pollinations.ai/openai 上提供 OpenAI chat completions 协议。把任何支持自定义 base URL 的客户端指过去,并让客户端从 POLLINATIONS_API_KEY 读取 key,这样 key 本身永远不会落进配置文件:
# Merge this snippet into ~/.codex/config.toml.
# Project-level config cannot select a custom model provider.
model = "openai"
model_provider = "pollinations"
[model_providers.pollinations]
name = "Pollinations.AI OpenAI-compatible gateway"
base_url = "https://text.pollinations.ai/openai"
env_key = "POLLINATIONS_API_KEY"
wire_api = "responses"
关于 Pollinations.AI 免费额度的常见问题
Pollinations.AI 需要绑信用卡吗?
不需要。本站有 23 家不用绑卡就能拿到免费访问,Pollinations.AI 是其中之一,所以试一下的成本只有注册本身。
Pollinations.AI 免费额度的限流是多少?
Pollinations.AI 没有公布单一的免费额度数字:它的限额形式是「有限流但未公布数值」。本清单在这里留空,而不是猜一个数。
Pollinations.AI 的 key 撞到限额会怎样?
端点返回 429。这只说明那一次请求被拒了,不说明还剩多少额度;只有服务商返回的 reset 响应头才能告诉你什么时候恢复。
Pollinations.AI 的免费额度会取消吗?
截至 2026-07-25,Pollinations.AI 自己的文档里没有这样的说法。这是社区运营的服务而不是商业服务商,可用性按尽力而为看待,不要把生产依赖压在上面。
Pollinations.AI 能配合 Codex、Cline 或 Continue 使用吗?
可以。Pollinations.AI 在 https://text.pollinations.ai/openai 上提供 OpenAI chat completions 协议,任何支持自定义 base URL 的客户端都能用。例外是 Claude Code,它讲的是 Anthropic 协议。
官方来源
- Pollinations API documentationhttps://github.com/pollinations/pollinations/blob/master/APIDOCS.md
- Pollinations project repositoryhttps://github.com/pollinations/pollinations
- Pollinations.AI homehttps://pollinations.ai/
以上每个数字都是 2026-07-25 从这些页面上读到的。如果某家只在控制台里给出限额,本清单就如实记下这件事,而不是填一个数字。收录标准和纠错流程见数据方法。