Skip to content

Latest commit

 

History

History
718 lines (582 loc) · 74.9 KB

File metadata and controls

718 lines (582 loc) · 74.9 KB
pollinations.ai

🚀 New Unified API — Now Live

We've launched https://gen.pollinations.ai — a single endpoint for all your AI generation needs. Text, images, audio, video — all in one place.

What's new

  • Unified endpoint — no more juggling between image.pollinations.ai and text.pollinations.ai
  • Pollen credits — simple pay-as-you-go system ($1 ≈ 1 Pollen)
  • All models, one place — Flux, GPT-5, Claude, Gemini, Seedream, and more
  • API keys — publishable keys for frontend, secret keys for backend

Get started at enter.pollinations.ai and check out the API docs

🆕 Latest News

  • 2025-12-07🎥 Video Generation Create videos from text or images using the new veo and seedance models. API Docs
  • 2025-12-07🎨 High-Res Upgrades seedream updated to v4.5 (2K resolution) and seedance upgraded to Pro-Fast for superior quality.
  • 2025-12-07📊 Richer Chat The Chat UI now renders data charts and supports video generation directly.
  • 2025-12-07🤖 New Models Added Amazon nova-micro and enabled web search for gemini-search and perplexity models.
  • 2025-11-29🎨 Nano Banana Pro New nanobanana-pro model (powered by Gemini 3 Pro) featuring 4K resolution support and built-in reasoning capabilities.
  • 2025-11-29🤖 Claude Opus 4.5 Access the powerful new Claude Opus 4.5 model via the text API using the model ID claude-xlarge. Check the API Docs.
  • 2025-11-29🛠️ Advanced API Control Added pass-through support for advanced parameters like logprobs, logit_bias, and stream_options for fine-grained generation control.
  • 2025-11-29📱 PolliPalmTop App A new Android app featuring AI chat, web search, and image generation has been added to the community showcase.
  • 2025-11-22🚀 Massive Model Update Added support for Kimi K2 Thinking, Gemini Large, DeepSeek V3.1, Grok 4 Fast, and GPT-5 Nano. Try them in the Text API.
  • 2025-11-22🎤 Multimodal Audio API Full support for OpenAI's Audio API features, including input_audio and mixed text/audio generation modalities.

pollinations.ai Logo

🌟 Introduction

pollinations.ai is an open-source gen AI platform based in Berlin, powering 500+ community projects with accessible text and image generation APIs. We build in the open and keep AI accessible to everyone—thanks to our amazing supporters.

🚀 Key Features

  • 🔓 100% Open Source — code, decisions, roadmap all public
  • 🤝 Community-Built — 500+ projects already using our APIs
  • 🔒 Privacy-Respecting — no accounts needed to get started
  • 🖼️ Embed like any normal image or text
  • 🎵 Audio generation: Text-to-speech and speech-to-text capabilities
  • 🌱 Supporter-Funded — daily Pollen keeps AI accessible for everyone
  • 🎣 Easy-to-use React hooks (React Hooks Examples)
Star History Chart

⚠️ Legacy Documentation Notice

This documentation refers to our legacy endpoints (image.pollinations.ai, text.pollinations.ai). We recommend using our new unified API at https://gen.pollinations.ai with the https://enter.pollinations.ai service.

📚 View Latest API Documentation

The legacy endpoints will be deprecated in the future.

🚀 Getting Started

Ask DeepWiki

Image Generation

  1. Visit https://pollinations.ai
  2. Type your description in the text box
  3. Click "Generate" and watch the magic happen!

Text Generation

  1. Visit https://text.pollinations.ai
  2. Start chatting with the AI

Audio Generation

  1. Use the openai-audio model with our API (explore voices at OpenAI.fm)
  2. Generate speech from text or transcribe audio to text

MCP Server for AI Assistants

Our MCP (Model Context Protocol) server enables AI assistants like Claude to generate images and audio directly. Learn more

Configuration

Add this to your MCP client configuration:

{
    "mcpServers": {
        "pollinations": {
            "command": "npx",
            "args": ["@pollinations/model-context-protocol"]
        }
    }
}

Run with npx (no installation required)

npx @pollinations/model-context-protocol

Community alternatives like MCPollinations and Sequa MCP Server are also available.

AI assistants can:

  • Generate images from text descriptions
  • Create text-to-speech audio with various voice options
  • Play audio responses through the system speakers
  • Access all pollinations.ai models and services
  • List available models, voices, and capabilities

For more advanced usage, check out our API documentation.

🖥️ How to Use

Web Interface

Our web interface is user-friendly and doesn't require any technical knowledge. Simply visit https://pollinations.ai and start creating!

API

Use our API directly in your browser or applications:

https://pollinations.ai/p/conceptual_isometric_world_of_pollinations_ai_surreal_hyperrealistic_digital_garden

Replace the description with your own, and you'll get a unique image based on your words!

🎨 Examples

Image Generation

Here's an example of a generated image:

Conceptual Isometric World

Python code to download the generated image:

import requests

def download_image(prompt):
    url = f"https://pollinations.ai/p/{prompt}"
    response = requests.get(url)
    with open('generated_image.jpg', 'wb') as file:
        file.write(response.content)
    print('Image downloaded!')

download_image("conceptual_isometric_world_of_pollinations_ai_surreal_hyperrealistic_digital_garden")

Text Generation

To generate text, use this URL:

https://text.pollinations.ai/What%20is%20artificial%20intelligence?

Audio Generation

To generate audio from text, use this URL:

https://text.pollinations.ai/Welcome%20to%20Pollinations?model=openai-audio&voice=nova

🛠️ Integration

React Hooks

We offer React hooks for easy integration. Example usage:

import React from 'react';
import { usePollinationsImage, usePollinationsText } from '@pollinations/react';
import ReactMarkdown from 'react-markdown';

const AIGeneratedContent = () => {
  const imageUrl = usePollinationsImage("Beautiful landscape of Paris with Eiffel Tower", { width: 800, height: 600, seed: 42 });
  const markdown = usePollinationsText("Write a brief travel guide for Paris, including top attractions and local cuisine in markdown", { seed: 42 });

  return (
    <div>
      <h2>AI-Generated Travel Guide</h2>
      <img src={imageUrl} alt="AI Generated" />
      {markdown ? (
        <ReactMarkdown>{markdown}</ReactMarkdown>
      ) : (
        <p>Loading markdown content...</p>
      )}
    </div>
  );
};

export default AIGeneratedContent;

Check out our Pollinations React Hooks for more details.

Architecture

graph LR
    Q[Bots - Discord, Telegram, WhatsApp] --> L1

    N[30+ Mobile and Web Apps] --> L1
    N --> L2

    A[pollinations.ai Web Frontend] --> L1
    A --> L2

    R[AI Agents - Qwen, Sillytavern, ...] --> L1

    AI[AI Assistants - Claude] --> MCP[MCP Server]
    MCP --> L1

    L1[Image CDN] --> CF[Cloudflare Worker with R2 Cache]
    L2[Text CDN] --> C

    CF --> B

    B[image-origin.pollinations.ai - AWS EC2 CPU] --> F[Azure OpenAI - Prompt Enhancing]
    B --> S[LlamaGuard - Safety Checker]
    F --> E[Translation Service - 1 GPU VM]
    E --> D[FLUX image generation model - 2-6 GPU VMs on AWS]

    C[text.pollinations.ai - AWS EC2 CPU] --> P[karma.yt - Realtime News]
    C --> SC[Scaleway API]
    C --> DS[Deepseek API]
    C --> G[Azure-hosted Serverless LLMs]
    C --> CFM[Cloudflare AI]
    SC --> MI[Mistral Models]
    SC --> QW[Qwen Models]
    SC --> LL[Llama Models]
    DS --> DM[Deepseek Models]
    G --> H[OpenAI]
    G --> K[Claude]
    CFM --> CFL[Llama & Deepseek Models]
Loading

Projects Using pollinations.ai

⭐ GitHub Star Counts: Projects with GitHub repositories include star counts to help you gauge their popularity.

🆕 NEW Tag: Projects are marked with the 🆕 emoji when they are recently added. This tag is automatically removed after 15 days from the submission date or if no date is specified.

Note: Some projects may be temporarily hidden from this list if they are currently broken or undergoing maintenance.

pollinations.ai is used in various projects, including:

Featured Apps 📱

Project Description Creator
CatGPT Meme Generator 🐱 (⭐ 5) Transform your questions into sassy cat wisdom! AI-powered meme generator that... @voodoohop
Elevator Challenge 🚀 (⭐ 4) React + Vite game inspired by Hitchhiker's Guide to the Galaxy. An interactive... @voodoohop
AI Dungeon Master 🐉 (⭐ 3) Interactive text-based RPG with AI-powered storytelling. Uses Pollinations text... @codevector-2003
🎭 Opposite Prompt Generator (⭐ 0) Transform any image prompt into its semantic opposite — flipping key attributes... @Ank17_Developer
Virtual Makeup Try-On 💄 (⭐ 0) AI-powered virtual makeup application tool. Uses Pollinations image generation... @anmolsah
Product Packaging Designer 📦 (⭐ 0) Design custom product packaging with AI assistance. Uses Pollinations image... @prateekverma145
Map to Isometric Converter 🗺️ (⭐ 0) Convert 2D maps and images into beautiful isometric 3D representations using... @AdityaTel89
Micro Pollinations AI 🔬 (⭐ 0) Lightweight, minimal Pollinations AI interface. A tiny but powerful frontend... @Jay-1409
Food Calorie Annotator 🍕 (⭐ 0) AI-powered food image analyzer that estimates calories and nutritional... @pollinations
Roblox NPC Creator 🎮 (⭐ 0) Create custom Roblox NPC characters with AI-generated descriptions and... @pollinations

Vibe Coding ✨

Project Description Creator
Berrry Computer (⭐ 0) Make tiny self-contained web apps with AI. Find a tweet with an interesting app... @vgrichina
websim-pollinations-ai (⭐ 0) A lightweight websim for creating web simulations with AI. Usage:... @voodoohop
Qwen-Agent (⭐ 11.5k) A framework for developing agentic LLM applications. -
Pollinations Task Master (⭐ 20) A task management system that uses AI to help break down and organize... @LousyBook94
SocialScribe (⭐ 1) An AI-powered Chrome extension that fixes grammar, rewrites text, and enhances... @sh20raj
Visiora - Image Generation using AI 🎨 (⭐ 0) A modern web application that transforms text prompts into stunning... @Kandariarjun07
PairFusion (⭐ 0) A real-time AI powered, scalable and feature-rich collaborative IDE built for... @auraticabhi
CraftUI An AI-powered tool that simplifies UI design by turning text prompts or images... @imhardikdesai
AI Code Generator A websim project that generates code from description, selected programming... @Miencraft2
VibeCoder A conversational coding environment that lets you create applications by... @Aashir__Shaikh
JCode Website Builder A website generator using Pollinations text API. @rtxpower
Pollinations.DIY A browser-based coding environment based on bolt.diy, featuring integrated... @voodoohop
NetSim websim.ai clone that's actually good @kennet678
Pollin-Coder A free AI-powered website builder that lets anyone create a clean site just by... @r3ap3redit
JustBuildThings A natural language programming interface that lets users create web... @buildmaster
Websim A web simulation tool that integrates Pollinations.ai. @voodoohop
Aqua Application Programming Interface This is an learning project for me to learn how to track users, backend check,... kiskreforev
🆕 🔍 Polli YT Search (⭐ 0) YouTube search engine that goes beyond titles—uses Pollinations to analyze... @Alfa
🆕 ✨ pollinations.ai Codex VS Code extension with AI-powered coding assistant. Features intelligent chat... @Murdered_again

Creative 🎨

Project Description Creator
MoneyPrinterTurbo (⭐ 39.9k) Simply provide a topic or keyword for a video, and it will automatically... @harry0703
FoldaScan (⭐ 178) Use Natural Language to "Converse" with Your Codebase, Folda-Scan Smart Project... @0010skn
Elixpo-Art (⭐ 18) A digital art platform that combines AI image generation with traditional... @elixpo
Match-cut video ai (⭐ 17) This AI generates video from text in match-cut text style, uses pollinations... @r3ap3redit
POLLIPAPER A dynamic wallpaper app that uses Pollinations AI. @intolerant0ne
Elixpo Art Chrome Extension (⭐ 8) It uses the pollinations image endpoint to generate an image with boltning as... Ayushman Bhatacharya
Pollinations.ai Image Generation (for Frame) (⭐ 7) A Flutter application that listens for image generation prompts, requests... CitizenOneX
Imagen (⭐ 3) A beautiful web interface for generating images using Pollinations.ai API with... @altkriz
MASala (⭐ 3) Multi-Agent AI That Cooks Up Recipes Just for You ~ From fridge to feast,... @Naman009
CatGPT Meme Generator 🐱 (⭐ 2) Transform your questions into sassy cat wisdom! An AI-powered meme generator... @voodoohop
Dreamscape AI (⭐ 2) Dreamscape AI is a creative studio for generating, enhancing, and transforming... @sizzlebop
ViralFlow AI 🎬 (⭐ 0) Automated viral video generator using Gemini 2.5 for scripts/TTS and... @FabioArieiraBaia
SRT Translator CLI 🎬 (⭐ 0) A Python tool to translate SRT subtitle files using the Pollinations AI API... @smarques
🤖 ImaGenz 🎨 (⭐ 0) Free, instant AI content generation platform for creating stunning images and... @iamkavy47
AI Image-to-Prompt Generator 🎨 Professional AI Image-to-Prompt Generator with free unlimited prompts. Upload... @mehediprofilebd-alt
SpecAI 🎨 (⭐ 0) Interactive UI for Pollinations AI with custom resolution and seed options.... @spectre365
SHICoPIC™ 🎨 (⭐ 0) AI-powered creative image generation tool. Simple interface for creating images... @Shervinuri
Better Call Us: Autonomous AI Instagram System 📸 ([⭐ 0](No response)) A fully autonomous Instagram content automation system powered by... muzz404
Green Hope AI 🎨 Generate stunning thumbnails with AI, then take full control. Easily edit the... @Mustafiz82
Pollinations AI Samples 🎨 (⭐ 0) Comprehensive demonstration of Pollinations AI capabilities including creative... @nyr-github
Inkly AI 🎨 (⭐ 0) Platform providing text-to-image and image-to-image generation with image... @Auspicious14
Craftura AI 🎨 Freemium image generating SaaS where users can generate AI images via... @TusharSoni014
AISTONE 🎨 (⭐ 0) Based on advanced pollinations.ai technology, supports FLUX, Turbo, Kontext for... @peyoba
PrisimIG 🎨 (⭐ 0) Seamless AI-generated imagery with pollinations.ai. An intuitive web... @CloudCompile
Imagine Draw AI 🎨 (⭐ 0) Free AI image generator for creating unlimited images with text prompts. No... @techwithai-telugu
Ai Studio 🎨 (⭐ 0) React application for AI image generation with model selection, image... @sabbirhossainc
Gainzr AI 🎨 Web-based AI image generator for creating high-quality images from text prompts... @bwava
Dreamator-AI 💫 Transform your imagination into reality using Pollinations API. Clean and... @its3li
YooAI 🎨 All-in-one AI creation platform integrating AI-Writer, AI-Video, and free image... yoo_ai@outlo...
🖥️ Image Generator by Quilix 🖼️ (⭐ 0) A beautiful desktop application for generating AI images using pollinations.ai... @quil1x
Imagen - AI Image Generator 🎨 (⭐ 0) A beautiful, open-source web interface for generating AI images using the... @altkriz
mayaAI 🇪🇸 Maya ia es una inteligencia artificial para generar imagenes usando... @moimoyyyy-sys
GenImage 🎨 Text to image generation tool @artydev
Anime Comic Movie 🎬 An ambitious anime comic movie project using Pollinations' Kontext and Flux... @sebastianpw
DirPixel 🎨 (⭐ 0) Sometimes creators need to replace multiple images in a directory with new... @techcow2
Prompt2Image 🎨 Prompt2Image is a Visual Studio Code extension that brings AI-powered image... @MaazS07
StoryWeaver AI 📚 (⭐ 0) A real-time, collaborative storyboarding application that empowers users to... @Karannn3011
Mixbash.com 🛠️ Mixbash is a better UI layer to use SOTA AI models hosted on Pollinations, Fal,... @jiajasper
🇧🇷 🇧🇷 CapyUniverse - CapyIMG (⭐ 0) Ferramenta simples para criar imagens com IA diretamente no navegador. O... @faelscarpato
🇹🇷 CVRON AI - Free İmage Generator Resim Oluşturma İşlemleri İçin Pollinations API yi kullanmakta (Uses... @cr7
🇨🇳 🇨🇳 AI Image Generator Create Amazing Images with AI. Generate stunning images from text descriptions... cf12436
aitoolbox.software 🛠️ (⭐ 0) An open-source collection of AI-powered tools to boost your productivity and... @huamanraj
Evolve AI 🤖 (⭐ 0) Evolve AI is an intelligent assistant platform that brings together a variety... @chandankumarm55
What is this? ❔ (⭐ 0) A fun AI-powered object identification tool that helps you identify mysterious... @sizzlebop
🇷🇺 Aimpress AIMpress is a web-based image generation platform that allows users to create... support@aimp...
Vizbo 📱 Vizbo is a mobile app for AI powered vision board creation. visbo.app@gm...
EzPromptla EzPromptla is an advanced visual prompt builder and creative partner designed... mohamadizuan...
Argent Script AI Voice Generator - Generate text to audio for free and without limits,... Link
Unfoldtech Easily generate new images inspired by the Pexels website with embedded IPTC... kengkreingkr...
Celebrity AI Image Generator (⭐ 0) An AI-powered celebrity image generator that uses Pollinations.ai and a1.art... @Colin-Zero
Coloring AI 🎨 An intelligent web-based coloring assistant that turns black-and-white sketches... 962900862@qq...
JSON Pollinations API A Deno Deploy API wrapper for Pollinations that provides JSON-formatted... @apersonwhomakess...
Image Creator Create images with multi-language prompts, the language will be automatically... Link
Avatar GenStudio A system for creating custom characters that uses the Pollinations API for... @nic-wq
StoryBolt (⭐ 0) Generate stories with enticing narratives and beautiful illustrations. Users... @gumbasil
CalcuBite AI CalcuBite AI is a smart tool that analyzes food from images to provide calorie... @sugamdeol
🇮🇩 Generator AI Image 🇮🇩 Advanced AI Image Generator adalah platform inovatif yang memungkinkan Anda... @kenthirai
NailsGen Create beautiful nail art designs with AI. Generate unique nail art designs... lipengliang2...
ImageGen AI Image Generate high-quality AI images for any purpose. Features a variety of models... Link
🇮🇩 RuangRiung AI Image 🇮🇩 (⭐ 0) RuangRiung AI Image Generator is ideal for digital artists, designers, or... @ruangriung
PollinateAI (⭐ 0) PollinateAI is an image generation platform that aims to ease the stress of... @Auspicious14
FlowGPT Generate images on-demand with ChatGPT! -
Foodie AI An AI application for food analysis that uses advanced artificial intelligence... @Aashir__Shaikh
AIMinistries A collection of free AI tools including AI chat, writing tools, image... @tolerantone
The Promised Pen A free, feature-rich novel writing application that helps writers organize... @soryn.san
🇨🇳 Aiphoto智能绘画 🇨🇳 AI艺术工坊 - 智能绘画生成器。这是一个基于AI的绘画生成工具,可以根据用户输入的中文描述自动生成相应的图片。(An AI art workshop -... @qiyimg
🖥️ AI YouTube Shorts Generator Python desktop app that automates YouTube Shorts creation with AI-generated... @Sami-Alsahabany
🤖 Emojiall AI Drawing Platform A platform focused on allowing users to draw pictures according to their own... @James-Qi
PixPal PixPal is a free AI assistant that can analyze, edit, and generate images,... @andreas_11
🇪🇸 🇪🇸 Generador de presentaciones con imágenes y texto V2 Una herramienta configurable que permite crear presentaciones con 3 a 20... @juanrivera126
🇪🇸 Yo el director Web para crear peliculas y contenido para youtube, usando Pollinations (Web... @henryecamposs
Imagemate AI Imagemate AI is a powerful image generation app designed to turn your... @Shanto-Islam
B&W SVG Generator Uses Flux (through pollinations) and potrace to create B&W Vector files @pointsguy118
TurboReel A fast AI video generation service for social media content, leveraging... @turbo_reels
Anime Character Generator A dedicated AI tool for generating high-quality, unique anime-style characters.... @AnimeArtDevs
AI PPT Maker An AI-powered presentation generator that creates PowerPoint slides from text... @ppt_monster
Promptgenerator.art FREE Art Prompt Generator that helps you turn simple ideas into structured... info@promptg...
🤖 ☬SHΞNΞRATOR 🎨 (⭐ 0) AI image and text generator with dual functionality. Features both image... Link
Image Generation Playground (⭐ 0) Transform your ideas into a visual masterpiece. Part of the UltimaX... @hadadarjt
Prompt Vision 🎨 (⭐ 0) Create and share AI-generated images with the community. Features intelligent... @jagrut-bhole
Pollinations Gallery 🖼️ (⭐ 0) Curated gallery of AI-generated artwork powered by Pollinations. Explore,... @leofy18
AI Stickers Generator 🎨 Turn text prompts into unique AI-generated stickers instantly. Perfect for... @KristijanPill
StickerHub 🎨 AI-powered sticker generation platform. Create and download custom stickers... @StickerHub
GPTAI.host 🛠️ Completely free AI toolkit offering unlimited text, image, and audio... @carlseo
🤖 LINE Blessing Images Bot 🇹🇼 Create and share personalized AI blessing images directly in LINE. Choose from... @nickyeh611
Pollinator Android App An open-source Android app for text-to-image generation. @gaurav_87680
StorySight (⭐ 14) An AI tool that generates illustrations for stories and articles using... @story_viz
Magerun AI 🎨 ([⭐ 0](No response)) A creative image generation site that improves your prompts using AI before... finicklagat
FoilAI 🌨 AI image generator in beta stage. Web-based text-to-image generator powered by... @aryanshrai3
Scribe 📄 (⭐ 0) Feature-rich Markdown editor for content creators, developers, and writers.... @nadinev6
AI Answers Forms 📝 Chrome extension that helps get answers to questions on Google Forms using AI.... @Maniii97
🤖 Zelos AI image generator It uses Pollinations for both prompt enhancing and image generation, it was a... Link
Versemind 🪶 ([⭐ 0](No response)) An AI poetry tool that analyzes a user’s tone, mood, and writing style to craft... dk-cleanedit
Own-AI An AI text-to-image generator. Sujal Goswami
PollinVerse 🚀 ([⭐ 0](No response)) A rapid AI development and prototyping platform powered by pollinations.ai.... VearyTry
Pollinations.ai Model Comparison (⭐ 0) An interactive tool designed to compare outputs from various large language... Link
🇨🇳 IMyself AI 🇨🇳 我们提供高质量的AI生成服务,包括图像生成、文本生成、音频生成和语音转文本服务, 让您轻松创建各种创意内容。 (We provide high-quality... Shadownc
🇧🇷 Thelas.ia Thelas.ia is a Social Media Content Creation Tool that generates corporative,... studiostein
SAGE (⭐ 0) SAGE (Storyboard Animation Generation Environment) is an open-source multimedia... sebastianpw
🇧🇷 ViralFlow AI (⭐ 0) An automated generator of viral videos that uses the pollinations.ai API to... FabioArieiraBaia
🤖 Gemini ai telegram-bot Gemini ai telegram-bot: a Telegram bot offering chat (text, voice, images)... mosavy
LineSketch AI LineSketch AI is a minimalist web app that turns ideas into clean... ArslanDevelop
Ecoverse AI (⭐ 0) Ecoverse is an AI-powered waste-recognition platform that helps users instantly... achyuth0
🇧🇷 Cinepoca Cinepoca serves as a fully AI-driven hub for movie enthusiasts. Our project... victorchiq
Flowgen A high-performance, web-based AI image generation studio built on the Puter.js... alinaaa20708-ops
Flux AI 🇹🇼 (⭐ 0) Cloudflare Workers' intelligent adaptive AI image generation platform kinai9661
🆕 🤖 Robatika — AI Chat Platform Robatika is a rapidly growing AI chat platform that provides users with... Robatika
🆕 🛠️ NextGenTools AI-powered workflow for stock photography. Generate images, vectorize them, and... @roni123332
🆕 📚 AI Story Illustrator Interactive storybook creator where you write scenes and get AI-generated... @KAmaL-senpai
🆕 🎨 ChimeraStudio (⭐ 0) Lightweight browser-based sandbox for testing Pollinations API capabilities.... @migueland94
🆕 🤖 🎨 imgs_ai_bot A multifunctional Telegram bot for generating images using artificial... @lwakis
🆕 ✨ Storycraft Pro Create illustrated stories with consistent characters, narrated audio, and... @souravk11318
🆕 🎨 Sugen Browser-based AI art studio using Puter.js and Pollinations.ai. Features... @red444ytchess-jpg
🆕 🤖 🎨 BinaryPH RSS AI WordPress plugin that transforms RSS feed items into complete blog posts using... @amin-IT
🆕 🎨 Imagly AI Free AI image generator that creates realistic photos, digital artwork, fantasy... @imaglyai
🆕 🕰️ CHRONOS - Time Machine (⭐ 0) Immersive time-travel experience where users select any location on a 3D globe... @yvr98
🆕 🎬 Viral Flow Browser-based video production platform using Pollinations for visual... @fabioarieira
🆕 🎬 PolliVision (⭐ 0) Chat-based AI video generator using Pollinations APIs. Type a scene description... @FabioArieiraBaia
🆕 🎄 Northpolelibrary Create personalized Christmas stories for children in minutes. Enter a child's... @bzddbz
🆕 🇧🇷 📚 IA-Books: AI Ebook Generator (⭐ 0) Professional ebook creation platform with AI. Auto-generates book covers and... @FabioArieiraBaia
🆕 ⛽ TuffMeter (⭐ 0) Humorous AI tool that analyzes uploaded videos to rate your aura. Based on... @VearyTry
🆕 🇧🇷 🎨 Nosde Space All-in-one AI platform for creating images, videos, text, and audio. Features... @unknow_junior
🆕 🎨 Imgoo AI image generator with creative controls including aspect ratio, guidance... @redythacker-cyber

Games 🎲

Project Description Creator
AI Character RP (Roblox) (⭐ 10) A Roblox game that lets players interact with AI characters powered by... @roblox_ai_dev
Minecraft AI (Python) (⭐ 7) A Python implementation that uses Pollinations AI to control a Minecraft... @Amagash
🇨🇳 🇨🇳 云渺仙途:凡尘篇 (⭐ 7) 《云渺仙途:凡尘篇》是一个由AI驱动的文字修仙沙盒游戏 (An AI-driven text cultivation sandbox game... @ZhjGo
DreamHer (⭐ 2) Interactive web app that transforms your imagination of a 'dream girl' into a... @_Creation22
Sirius Cybernetics Elevator Challenge (⭐ 1) A programming challenge that uses Pollinations AI to simulate... @sirius_dev
AIStorium (⭐ 1) Service for generating dynamic stories. Generates stories, images and audio by... @artegoser
Quiz Application 🎯 (⭐ 0) Interactive quiz application with AI-powered question generation and image... @jaykmarBCET
Chaos Canvas 🎲 Crowdsourced creativity experiment where each player adds just one or two words... @eat-sleep-code
RoastMaster AI No detailed description available, but likely a creative/entertainment tool (AI... -
Pollinations AI Game (⭐ 0) A Hitchhiker's Guide to the Galaxy themed LLM-based elevator game. @game
Favorite Puzzles A jigsaw puzzles game for Android, iOS, and web that uses Pollinations feed as... contact@radb...
Abyss Ascending A generative cosmic ocean adventure - text-based RPG with AI-driven... @interzone
Deep Saga An immersive role-playing game with AI-generated worlds, characters, and quests... @saga_studios
Infinite World – AI Game An exploration game with procedurally generated environments and creatures... @infinite_world_dev
A Mita (Roblox) A Roblox game about interacting with AI with different personalities. Features... @thespecificdev
🕰️ Time Travel Selfie Portal Upload your selfie, background is automatically removed. Choose a historical... @Argyrisk21
Convince the Weird Maid to Let You Leave the House (Roblox) A Roblox game where a weird maid traps you inside her house. Your goal is to... @wBrowsqq
Aiko AI: With You Til The End (Roblox) A psychological escape room game where you're trapped by Aiko, an AI with a... @youssefelsafi
RETIME - FABRIC OF REALITY A text-based, blind friendly fantasy adventure game powered by Pollinations AI.... @TheSingleAlgeria...
🧩 AI Word Search AI-powered Android app that generates unlimited, personalized word search... hello@island...
Devil Summoner WIP Procedural driven text prompts develop characters as you explore the city. Down... @lenankamp
roastmyselfie.app AI Personality Analyzer - Get roasted and psychoanalyzed.. just from one... @andres_11
Watch TV with neko (Roblox) Roblox game where you can talk with AI catgirls 🐾 or just have fun, talking... Link
Infinite Tales (⭐ 29) Interactive storytelling platform powered by AI that creates endless narrative... @infinite_tales
Godville Heroic Moment (⭐ 0) Firefox-only browser extension that adds a Heroic Moment block to your Godville... migueland94
🆕 🎮 Nikke-DB Story/Roleplaying Generator (⭐ 0) Interactive story and roleplay generator for Goddess of Victory: NIKKE.... @rhystic1
🆕 🎮 Nikke-DB Story/Roleplaying Generator (⭐ 0) Interactive story and roleplay generator for Goddess of Victory: NIKKE.... @rhystic1
🆕 🎮 ii's Stupid Menu (⭐ 0) A mod menu for Gorilla Tag featuring 1600+ mods and an AI Assistant powered by... @iiDk-the-actual
🆕 🎮 DnD Character Sheet Helper (⭐ 0) A fun tool for creating D&D character sheets with AI-generated character... @ArcadianComp
🆕 🎮 Kinexus (⭐ 0) Zero-code tool for creating choice-based cinematic narrative games and... @tin2tin
🆕 🎮 Kinexus (⭐ 0) Zero-code tool for creating choice-based narrative games and interactive... @tin2tin

Hack-&-Build 🛠️

Project Description Creator
tgpt (⭐ 2.9k) ChatGPT in terminal without requiring API keys. Uses Pollinations API endpoints... @aandrew-me
🛠️ AI Content Describer (⭐ 59) An extension for NVDA, the free and open-source screen reader for Microsoft... @cartertemm
💻️ Windows Walker (⭐ 14) Windows Walker – What Copilot for Windows should have been. AI-powered Windows... @supershivam
Mimir AIP (⭐ 11) An AI integration platform for developers. @CiaranMcAleer
CoNavic (⭐ 8) A free, open-source browser extension that brings the power of ChatGPT and... @mkantwala
pollinations.ai Enhancer (⭐ 6) A frontend-based AI interface designed to deliver a smooth, multimodal, and... @fisven
Server Status Dashboards (⭐ 6) A monitoring tool for tracking and visualizing server performance metrics,... @devopper
unpkg.ai (⭐ 5) AI-powered ESM module generation service that creates JavaScript modules... @vgrichina
WordPress AI Vision Block (⭐ 5) A custom WordPress Gutenberg block that allows you to generate images using the... mahmood-asadi
DominiSigns (⭐ 4) Avatar Translator for Dominican Sign Language that uses artificial intelligence... @cmunozdev
🌱 Strain Navigator (⭐ 1) A collection of tools to help Growers, Breeders & Seed Bankers. Free & Open... @Tolerable
YankoviC (⭐ 1) A programming language interpreter written in JavaScript that emulates C/C++... @Sweaterdog
VisionText (VS Code Extension) 👁️ (⭐ 0) VS Code extension to transform images into text descriptions and generate AI... @techcow2
Pollinations PR Summarizer 🛠️ (⭐ 0) GitHub Action that automatically analyzes pull requests using Pollinations Text... @CloudCompile
Blossom-ai (Python SDK) 🐍 (⭐ 0) Python SDK for Pollinations AI. Simple and easy-to-use wrapper for accessing... @PrimeevolutionZ
🤖 Herramientas IA 🛠️ Comprehensive collection of 120+ AI tools and educational applications powered... @Juanrivera126
BeeCoder 🌈 (⭐ 0) Enables VSCode Copilot to connect to Pollinations, bringing AI-powered code... @cemalgnlts
MCP-B 🌐 (⭐ 0) Browser-based Model Context Protocol that enables AI agents to interact with... @MiguelsPizza
MultiAgent 🤖 (⭐ 0) Advanced multi-agent system for solving complex tasks using specialized AI... @LKosoj
🖥️ Pollinations MCP Server (Official) (⭐ 0) Official Model Context Protocol server for Pollinations AI services. Generate... @pollinations
FoodAnaly An AI application for food analysis that uses advanced artificial intelligence... liukang0120@...
Pollinations AI Free API This project provides a free API interface supporting various text and image... @freeapi
🤖 DynaSpark API (⭐ 0) The DynaSpark API provides simple yet powerful AI capabilities for text... @Th3-C0der
Querynator5000 (⭐ 0) Modern AI-first SQL interface for exploring and manipulating databases with... @SuperShivam5000
UltimaX Intelligence CLI Extension of the UltimaX Intelligence project based on Pollinations Python SDK. @hadadarjt
AI Agent Portal (⭐ 0) A next-generation development environment that leverages a sophisticated... @raymerjacque
PDF-to-Speech 🔊 (⭐ 0) Convert any PDF document into natural-sounding audio using Pollinations AI TTS.... @Ak-Yadav
pollinations.ai Python SDK Official Python SDK for working with Pollinations' models. @pollinations-ai
MCPollinations (Community) (⭐ 32) Community-maintained Model Context Protocol server with advanced features like... @pinkpixel-dev
pollinations_ai Dart/Flutter package for Pollinations API. @Meenapintu
pollinations NPM Module JavaScript/Node.js SDK for Pollinations API. -
pypollinations Comprehensive Python wrapper for Pollinations AI API. @KTS-o7
@pollinations/react React hooks for easy integration of Pollinations' features. @pollinations
Polli API Dashboard Dashboard for managing/interacting with Pollinations API. -
🇨🇳 imggen.top 🇨🇳 Create stunning AI-generated images in seconds with our free AI image... lipengliang2...
🇨🇳 Quicker Pollinations AI This project provides a free API interface supporting various text and image... Link
🆕 🛠️ Content Auto Manager (⭐ 0) WordPress plugin for automated AI content production. Features scheduled task... @pptt121212

Chat 💬

Project Description Creator
G4F Chat UI (⭐ 65.1k) The official G4F Chat UI for Pollinations with Image & Video Generation... @hlohaus
LobeChat (⭐ 21.0k) An open-source, extensible chat UI framework supporting multiple models and... @lobehub
SillyTavern (⭐ 14.7k) An LLM frontend for power users. Pollinations permits it to generate text and... -
🖥️ LLMS (⭐ 88) LLMS is a Kotlin Multiplatform application that brings the power of AI to... @yassineAbou
🇨🇳 FreeAI 🇨🇳 (⭐ 44) An AI application platform based on pollinations.ai API, providing free and... @Azad-sl
DynaSpark AI (⭐ 20) A versatile AI assistant with advanced image and text generation capabilities. Th3-C0der
OkeyMeta (⭐ 10) OkeyMeta is an AI Playground that allows you to chat with different AI models,... @okeymeta
LLM7.io (⭐ 7) A free and open AI platform providing advanced multimodal capabilities,... @chigwell
toai.chat (⭐ 2) An AI-client-free project dedicated to enabling AI interaction using only curl,... @Veallym0n
EvilChat 🔥🤖 (⭐ 2) An uncensored AI chat interface with dark, sleek design, smooth animations,... @altkriz
🤖 🇮🇩 Rizqi O Chatbot 🇮🇩 (⭐ 1) Rizqi O Chatbot adalah proyek berbasis Pollinations yang menggabungkan tiga... @ray23-bit
Comeback AI (⭐ 1) AI-powered clapback machine that transforms mean comments into witty comebacks... @sizzlebop
🆕 Pookie AI 💕 (⭐ 0) AI-powered conversational platform for creating customizable virtual characters... @shantoislamdev
Nuvole AI 🍎 Apple Shortcut for iOS/iPadOS with 9 AI models from Pollinations. Features... @.mikl.
WorksparkAI [BETA] 💼 Modern ChatGPT alternative with document processing, PDF reading, image... @obezbolen67
iTouch 💭 (⭐ 0) Chat where images and texts integrate. A poetic journey to where inspiration... @jordanpeteroliver
Petfuse Image Generator 🐾 Chat and generate images with custom seed control. Features a public gallery... @yasmeenanti08-cr...
🖥️ PrisimAI 💬 (⭐ 0) A lightweight, browser-based AI chat application designed to run seamlessly as... @CloudCompile
VOHU AI 🇮🇷 VOHU AI is an Iranian AI that, in collaboration with pollinations.ai, offers... info@vohuapp.ir
Strapick Chat (⭐ 0) A minimalistic chat UI for pollinations AI. @mmojocoder
Chad GPT AI Text, Image, and Audio Generator powered by Pollinations AI API. A... Link
チャットGPT 日本語 🇯🇵 チャットGPT 日本語無料版 (Free Japanese version of ChatGPT) Link
EasyGen AI-powered tool that generates Mermaid diagrams and flowcharts from... @Ellweb3
🤖 Botzy AI 🇵🇰 A free, unlimited, multilingual AI chatbot designed for Pakistani users.... @zakrya6665
Island (⭐ 0) Island AI is a free, modern ChatGPT alternative featuring smart multimodal... @techcow2
UltimaX Intelligence (⭐ 0) UltimaX Intelligence is a free AI platform that unifies multiple premium AI... @hadadarjt
🤖 VOID.AI (⭐ 0) A humanlike AI mentor, productivity partner, and emotionally intelligent... @Ajay-Dhakad
J.A.R.V.I.S. Just a Rather Very Intelligent System - an advanced AI language model inspired... @hadadarjt
Ai drafterplus A ChatGPT-like interface with multiple AI models. Completely free and saves... @dexvisser_
Unity AI Lab A specialized uncensored LLM model built on Mistral Large, focused on... -
Neurix 🇷🇺 A website offering easy and free access to various neural networks, with... @Igroshka
Echo AI A chat interface for AI interactions and conversations. Unknown
DreamBig - Generative AI Playground Interactive AI playground with chat, image generation, and voice responses for... @opzzxsprinta._999
Pal Chat An iOS app that integrates with all LLMs including Pollinations AI models in... Link
Pollinations AI Playground An AI application platform based on pollinations.ai API, providing free and... @playground
Image Gen - Uncensored Edition An uncensored image generation tool that allows for creative freedom without... @flowgpt
🇨🇳 pollinations.ai 中文 我们提供高质量的AI生成服务,包括图像生成、文本生成、音频生成和语音转文本服务, 让您轻松创建各种创意内容。 (We provide high-quality... @pollinations
Anisurge A free anime streaming app with a public chat feature that allows users to chat... @iotserver24
🖥️ AI Chat A Windows desktop application that brings multiple AI models together in one... @narendradwivedi
🤖 Free AI Chatbot & Image Generator (⭐ 0) A web application offering both conversation with AI and image generation... @aidevs
DeepSeek Prompt DeepSeek Prompt is a front-end application for managing and optimizing AI... lipengliang2...
AI Dream Girl Studio AI Dream Girl Studio is a content creation pipeline built around... Link
NeonSpark AI ✨ NeonSpark AI is a web app that offers AI-powered chat and image generation... developer.as...
PolliPalmTop 📱 Android app dedicated to Pollinations with AI chat, web search, and image... @BiG L
Xibe-chat-cli 💬 (⭐ 0) AI chat and image generation directly in your terminal with a rich text UI.... @R3AP3Redit
Fikiri Chat AI 💬 Multi-model AI chat platform with seamless LLM switching via Pollinations API.... @brianmativo
PollinationsFreeAI 🆓 (⭐ 0) Free AI platform leveraging Pollinations for text and image generation. No... @Poli-Chat
Samaritan AI 🤖 Intelligent AI assistant platform powered by Pollinations. Offers a polished UI... @mdarman4002
🇮🇩 ReThink AI 🇮🇩 High-performance AI platform tailored for Indonesia, blending a custom-trained... @Djongoks
Noir Ink Tattoo Studio 🎨 (⭐ 0) A monochrome tattoo studio featuring AI-powered design generation, booking... @Jairedddy
Artificial Intelligence Orcho 📱 Mobile AI app for Android with chat and image generation. Get smart chat... @ricardoxd
🤖 DebAI 🤖 Compact and free Telegram bot powered by Pollinations AI. Under development... @FROLIAN-cell
VX Project 💬 (⭐ 0) VorteX Resources - A free and powerful platform for game server development... @lfni
🤖 PixPax A user-friendly chatbot that lets you analyze images, remix existing images or... @andreas_11
🤖 Mirexa AI Chat A state-of-the-art AI chatbot that seamlessly integrates multiple LLMs with... @withthatway
AI Chat A simple and elegant chat interface for interacting with various AI models... @jolav
KoboldAI Lite A lightweight version of KoboldAI that uses Pollinations for text generation,... @kobold_dev
🤖 Jenny AI AI chatbot and character creation platform with tts and sst it also has image... Link
Goalani Voice-enabled AI fitness coach. Using only your voice, you can communicate with... goalani.app@...
Pollinations Chat Pollinations' integrated AI for text and images, totally free and unlimited. @adrianoprogramer
LiteAI A free, fast, and anonymous AI chat and image generation platform with no login... LiteAI Team
🤖 UR Imagine & Chat AI A versatile AI platform offering both image generation and chat... @ur_imagine
MindFlow (⭐ 0) # MindFlow\n\n> Capture thoughts, find clarity. An AI-powered second brain... Aegis-plus
Synapse (⭐ 0) An AI-powered chat application built with Vite and React, enabling multi-model... Aegis-plus
HelpChatGPT HelpChatGPT is a free web platform that provides access to ChatGPT-like models... viaea
Debootai Next-gen AI chat playground with file/image uploads, real-time web search,... Chess-Base
SimplifyMind AI (ELI5) A modern one-page web app that turns any complex question into a simple,... CompaDeveloper
🆕 🍎 AI Food Guide and Track Calories (⭐ 0) AI-powered nutrition assistant that helps identify foods and track daily... @newnol
🆕 ✨ ToneShift AI Rewrite any text into different emotional tones while preserving meaning.... @UstaDeveloper
🆕 ✨ ToneShift AI Instantly rewrite any text into different emotional tones while preserving... @UstaDeveloper
🆕 🤖 💬 Chat AI Arabic Telegram bot serving as a versatile AI assistant. Answers questions,... @Alhmam
🆕 🤖 SaturnAI 🪐 Web-based AI chat app focused on clean UI and smooth user experience. Features... @xdativo
🆕 💬 Yerty AI A calm, friendly AI chat companion focused on everyday thinking, writing, and... @losingdivine

Social Bots 🤖

Project Description Creator
🤖 Pollinations Discord Bot (⭐ 17) AI Image Generation Discord Bot using Pollinations.ai. Written in Python with... @zingy
🤖 TeleChars AI 🤖 🇪🇸 Plataforma de creación de personajes con IA para Telegram. Soporta STM, LTM, y... @MarcosFRG
🤖 ExodusAI 🤖 AI-powered chatbot and image generator platform on WhatsApp. Integrated with... @FIkriBotDev
🤖 🎮 Gacha Your Sassy All-in-One AI Discord Bot. A powerful, sassy, and slightly... _dr_misterio_
Pollix AI Pollix AI is your multilingual AI assistant for fast replies, image... @bladedev
🤖 Aura Chat Bot A chat bot integrating Pollinations API for text and image generation. @Py-Phoenix-PJS
🤖 🤖 ImageEditer AI Art Studio - A feature-rich Telegram bot that creates art from text prompts,... @dr_misterio
🤖 GPT_Project GPT_Project Telegram AI Chatbot - A professional productivity tool that's... @lordon4x
🤖 Pollinations WhatsApp Group A WhatsApp group bot that allows members to generate AI content through simple... @whatsapp_ai_dev
🤖 ioswbot 🤖 Free, unlimited Telegram bot with ChatGPT 5, Gemini 2.5 Flash Lite Search, GPT... @swtomas
🤖 Telegram AI Chars 🤖 Plataforma en PHP para la creación de personajes (bots) con personalidad,... @MarcosFRG
🤖 Swapna Shastra Dream Decoder 💤✨ AI-powered Telegram bot that interprets dreams using ancient Indian Swapna... @ShashankNagaraj
🆕 🤖 Lily – AI Discord Companion Lily is a next-generation conversational AI bot for Discord designed to feel... CloudCompile
🆕 🤖 🎨 Aqua AI Generator Free Discord AI image generator bot supporting up to 8 models, including 4 from... @shaqkao1206
🆕 🤖 NullVector (⭐ 0) Discord AI assistant with smart model routing. Evaluates each message to select... @CloudCompile, @f...
🆕 🤖 🤖 TeleChars AI Plataforma para crear personajes IA personalizados en Telegram. Configura... @marcosfrgames08

Learn 📚

Project Description Creator
Connect Pollinations with Open Web UI tutorial (⭐ 11) Step-by-step guide on integrating Pollinations APIs with Open Web UI for... @cloph-dsp
Interactive GeoMap 🗺️ AI-powered geography insights using text.pollinations.ai API. Click anywhere on... @argyrisAEK
PromptsHub 📝 Dynamic platform for organizing, curating, and sharing effective AI prompts.... @pickplugins
Prompt Explorer A mobile app that combines AI prompt discovery with image generation using... ismail.azdad...
StoryMagic: Interactive Kids Stories Interactive and educational tool for generating kids' stories. -
Riffle A powerful tool designed to make reading English books more enjoyable and... gsx123@gmail...
OkeyAI (⭐ 0) An LLM created by Africans to understand and have cultural awareness of African... @okeymeta
Whizzy AI An educational AI platform for students featuring AI-powered study assistance,... @vaibhavcoding69
SearchGPT ChatGPT with real-time web search & URL reading capability. Part of the UltimaX... @hadadarjt
🇧🇷 EduGen AI 🇧🇷 E uma ia voltada para professores e queria a IA pollinations.ai para criar... mlspfc360@gm...
🆕 🤖 🤖 Discord Bot Tutorial Comprehensive tutorial for building Discord bots with Pollinations.ai. Covers... @Tolerable
AI儿童故事 🇨🇳 基于此项目 构建有趣的孩子故事书应用演示 (Based on this project, build an interesting children's... MZ
pollinations.ai AI/Teens talk Session 2: ai/teens worldwide conference exploring the forces shaping AI today,... @thomash_pollinat...
MalaysiaPrompt 🇲🇾 A resource for discovering and sharing creative prompts, supporting the... -
Artistic Styles Book An interactive book showcasing 90+ artistic styles. Juan Gmo. Rivera
🆕 📚 Word Master (⭐ 0) Django app for mastering foreign vocabulary with AI-powered features. Create... @rudotcom
Proyecto Descartes Educational initiative integrating Pollinations AI into STEM. Juan Gmo. Rivera

Have you created a project using pollinations.ai? Submit it through our project submission form to get it listed here! We use a structured GitHub issue template (labeled as APPS) to make the submission process easy and organized.

🔮 Future Developments

We're constantly exploring new ways to push the boundaries of AI-driven content creation. Some areas we're excited about include:

  • Digital Twins: Creating interactive AI-driven avatars
  • Music Video Generation: Combining AI-generated visuals with music for unique video experiences
  • Real-time AI-driven Visual Experiences: Projects like our Dreamachine, which create immersive, personalized visual journeys

🌍 Our Vision

pollinations.ai envisions a future where AI technology is:

  • Open & Accessible: We believe AI should be available to everyone, not locked behind paywalls or restricted access

  • Transparent & Ethical: Our open-source approach ensures transparency in how our models work and behave

  • Community-Driven: We're building a platform where developers, creators, and AI enthusiasts can collaborate and innovate

  • Interconnected: We're creating an ecosystem where AI services can seamlessly work together, fostering innovation through composability

  • Evolving: We embrace the rapid evolution of AI technology while maintaining our commitment to openness and accessibility

We're committed to developing AI technology that serves humanity while respecting ethical boundaries and promoting responsible innovation. Join us in shaping the future of AI.

🤝 Community and Development

We believe in community-driven development. You can contribute to pollinations.ai in several ways:

  1. Coding Assistant: The easiest way to contribute! Just create a GitHub issue describing the feature you'd like to see implemented. The MentatBot AI assistant will analyze and implement it directly! No coding required - just describe what you want.

  2. Project Submissions: Have you built something with pollinations.ai? Use our project submission template (labeled as APPS) to share it with the community and get it featured in our README.

  3. Feature Requests & Bug Reports: Have an idea or found a bug? Open an issue and let us know. Our team and the MentatBot assistant will review it.

  4. Community Engagement: Join our vibrant Discord community to:

    • Share your creations
    • Get support and help others
    • Collaborate with fellow AI enthusiasts
    • Discuss feature ideas before creating issues

For any questions or support, please visit our Discord channel or create an issue on our GitHub repository.

🗂️ Project Structure

Our codebase is organized into several key folders, each serving a specific purpose in the pollinations.ai ecosystem:

This structure encompasses the frontend website, backend services for image and text generation, and integrations like the Discord bot and MCP server, providing a comprehensive framework for the pollinations.ai platform.

For development setup and environment management, see DEVELOP.md.

🏢 Supported By

pollinations.ai is proud to be supported by:

Supported Companies

📜 License

pollinations.ai is open-source software licensed under the MIT license.


Made with ❤️ by the pollinations.ai team

Contributors