Skip to content

pollinations/pollinations

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Pollinations.AI Logo

🆕 Latest News

  • 🔐 Auth Dashboard - New and live! Visit auth.pollinations.ai to manage your API tokens and referrer domains. Learn more.
  • 🏆 Tier System: Seed, Flower, Nectar—higher tiers unlock more features. Details
  • 🔍 Tier System: Seed, Flower, Nectar tiers. Higher tiers available during limited beta.
  • 💲 Support Us - You can now support us with our new Tip Us button. Optionally connect your Discord account to Ko-Fi to get premium Discord roles!
  • 🎵 Audio Generation - New text-to-speech and speech-to-text capabilities are now available! Try the openai-audio model - see our API documentation for details.
  • 🤖 AI Code Assistant - We're excited to announce MentatBot, the autonomous AI coding assistant that implements new features directly from GitHub issues! Simply create an issue describing what you'd like to see, and MentatBot will analyze and implement it. Learn more.
  • 🖼️ GPT Image - Introducing our new state-of-the-art text-to-image model, GPT Image, which generates high-resolution, contextually accurate visuals from any prompt. Learn more about OpenAI's latest image generation model here.

Pollinations.AI Logo

🌟 Introduction

Pollinations.AI is an open-source gen AI startup based in Berlin, providing the most easy-to-use, free text and image generation API available. No signups or API keys required. We prioritize your privacy with zero data storage and completely anonymous usage.

🚀 Key Features

  • 🔓 100% Open Source
  • 🆓 Free to use
  • 🔒 Simplicity and privacy: No logins, no keys, no data stored
  • 🖼️ Embed like any normal image or text
  • 🎵 Audio generation: Text-to-speech and speech-to-text capabilities
  • 🌍 Free AI image and text generation APIs
  • 🤝 Used by various open-source LLMs, bots, and communities
  • 🎣 Easy-to-use React hooks (React Hooks Examples)
  • 🤖 Autonomous Development: Features implemented by our MentatBot coding assistant through GitHub issues
Star History Chart

🚀 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 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:

Vibe Coding ✨

Project Description Creator
Berrry Computer (⭐ 0) Make tiny self-contained web apps with AI. Find a tweet with an interesting app... @vgrichina
Qwen-Agent (⭐ 10.0k) A framework for developing agentic LLM applications. -
Pollinations Task Master (⭐ 12) 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
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... @thomash
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. @thomash

Creative 🎨

Project Description Creator
MoneyPrinterTurbo (⭐ 38.0k) 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 (⭐ 12) 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 (⭐ 8) A Web interface to create thematic images from prompts, with multiple aspect... Ayushman Bhattach...
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) (⭐ 6) 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
Imagen (⭐ 3) A beautiful web interface for generating images using Pollinations.ai API with... @altkriz
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
🆕 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...
🆕 Imagine Draw AI 🎨 (⭐ 0) This AI image was created for free using ImagineDraw AI a powerful tool to... TechWithAiTelugu
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...
MrEgonAI An image generator powered by pollinations.ai and its image generation models.... @mregon
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! -
Image Gen - Uncensored Edition A powerful image generation assistant on HuggingChat. @DeFactOfficial
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
🇨🇳 Text2Image_audio 🇨🇳 (⭐ 0) 文生图与文生语音网站 - 一个初学者的AI编程项目,支持文本转图像和音频生成功能。(Text to Image and Text to Audio... @peyoba
🇨🇳 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...
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
🇮🇩 Generator Text AI 🇮🇩 (⭐ 1) Text-to-image generator using Pollinations, supporting Indonesian and English... @ayick13
Musify - AI Enhanced Music Streaming Musify is your AI-powered music buddy, making your jam sessions smarter and... @Sugamdeol
🇧🇷 Case Me 🇧🇷 A vending machine that creates customized phone cases with photos or other... anaboxmania@...
🤖 Zelos AI image generator It uses Pollinations for both prompt enhancing and image generation, it was a... Link
Own-AI An AI text-to-image generator. Sujal Goswami
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

Games 🎲

Project Description Creator
Mindcraft (⭐ 3.5k) A web-based Minecraft-inspired game where players can use natural language to... @mindcraft_team
Minecraft AI (Node.js) (⭐ 124) A Node.js implementation that uses Pollinations AI to control a Minecraft... @minecraft_ai_dev
Sirius Cybernetics Elevator Challenge (⭐ 42) A programming challenge that uses Pollinations AI to simulate... @sirius_dev
AI Character RP (Roblox) (⭐ 8) 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
AIStorium (⭐ 1) Service for generating dynamic stories. Generates stories, images and audio by... @artegoser
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...
Juego de Memorizar con Pollinations A memory game that uses Pollinations AI to generate unique image pairs for... @edudev_es
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...
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 (⭐ 26) Interactive storytelling platform powered by AI that creates endless narrative... @infinite_tales

Hack-&-Build 🛠️

Project Description Creator
tgpt (⭐ 2.7k) ChatGPT in terminal without requiring API keys. Uses Pollinations API endpoints... @aandrew-me
🛠️ AI Content Describer (⭐ 60) An extension for NVDA, the free and open-source screen reader for Microsoft... @cartertemm
Server Status Dashboards (⭐ 31) A monitoring tool for tracking and visualizing server performance metrics,... @devopper
Mimir AIP (⭐ 11) An AI integration platform for developers. @CiaranMcAleer
💻️ Windows Walker (⭐ 9) Windows Walker – What Copilot for Windows should have been. AI-powered Windows... @supershivam
CoNavic (⭐ 6) A free, open-source browser extension that brings the power of ChatGPT and... @mkantwala
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
Pollinations.AI Enhancer (⭐ 3) A frontend-based AI interface designed to deliver a smooth, multimodal, and... @fisven
🌱 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
FoodAnaly An AI application for food analysis that uses advanced artificial intelligence... liukang0120@...
Herramientas IA Tools designed with Pollinations.AI and the DescartesJS editor, including tools... @herramientas
Pollinations AI Free API This project provides a free API interface supporting various text and image... @freeapi
DominiSigns (⭐ 0) A WordPress block plugin that lets users create AI-generated images through the... @dominicva
🤖 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
Pollinations MCP Server (⭐ 42) A Model Context Protocol server that enables AI-assisted development through... @pinkpixel-dev
pollinations.ai Python SDK Official Python SDK for working with Pollinations' models. @pollinations-ai
MCPollinations A Model Context Protocol (MCP) server that enables AI assistants to generate... Pink Pixel
Herramientas IA (⭐ 24) Tools designed with Pollinations.AI and the DescartesJS editor, including tools... @juanrivera126
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

Chat 💬

Project Description Creator
gpt4free (⭐ 64.1k) The official gpt4free repository - various collection of powerful language... xtekky
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... -
🇨🇳 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
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
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
🤖 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

Social Bots 🤖

Project Description Creator
🤖 Pollinations Discord Bot (⭐ 156) Official Discord bot for Pollinations.ai that allows server members to generate... @pollinations
🤖 Raftar.xyz (⭐ 42) Raftar.xyz is an innovative social bot platform that uses Pollinations AI to... @raftar_official
🤖 🎮 Gacha Your Sassy All-in-One AI Discord Bot. A powerful, sassy, and slightly... _dr_misterio_
🤖 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
🤖 Pollinations Telegram Assistant An advanced Telegram bot that provides access to Pollinations AI services... @pollen_labs
🤖 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
🤖 pollinations-tg-bot 🇨🇳 Chinese language Telegram bot for Pollinations AI with specialized prompts for... @cn_ai_dev
🤖 Quick AI & Jolbak (⭐ 0) A multi-platform bot suite that integrates with Discord, Slack, and Microsoft... @jolbak_dev
AI Image Generator [ROBLOX] (⭐ 0) A Roblox experience that allows players to generate images using Pollinations... @roblox_ai_studio
🤖 SingodiyaTech bot A Telegram bot focused on technical illustrations and diagrams generated by... @singodiya_tech
🤖 Anyai A Discord bot and community for AI-driven content. @meow_18838

Learn 📚

Project Description Creator
Connect Pollinations with Open Web UI tutorial (⭐ 9) Step-by-step guide on integrating Pollinations APIs with Open Web UI for... @cloph-dsp
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
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...
TeekGenAI A platform providing free access to AI tools like image generation,... @teekgenai
MalaysiaPrompt 🇲🇾 A resource for discovering and sharing creative prompts, supporting the... -
Artistic Styles Book An interactive book showcasing 90+ artistic styles. Juan Gmo. Rivera
🇧🇷 Tutorial An in-depth Portuguese tutorial on using Pollinations AI. Janderson de Sales
Podcast #1500 Podcast project powered by pollinations, featuring dialogues among LLMs. First... @brain.diver
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 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 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.

🏢 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