- Home
- Skills
- Supercent Io
- Skills Template
- Pollinations Ai
pollinations-ai_skill
- Shell
24
GitHub Stars
1
Bundled Files
2 months ago
Catalog Refreshed
4 months ago
First Indexed
Readme & install
Copy the install command, review bundled files from the catalogue, and read any extended description pulled from the listing source.
Installation
Preview and clipboard use veilstrat where the catalogue uses aiagentskills.
npx veilstrat add skill supercent-io/skills-template --skill pollinations-ai- SKILL.md10.9 KB
Overview
This skill lets you generate and save images using Pollinations.ai’s free, open URL-based API with no signup or API key. It supports custom parameters (width, height, model, seed), URL encoding, automatic file saving, and batch generation for prototypes, marketing, and creative work. The Python helper makes automation and metadata tracking simple.
How this skill works
The skill builds a URL like https://image.pollinations.ai/prompt/{encoded\_prompt} and issues an HTTP GET to retrieve an image. You can pass query parameters for width, height, model (flux, turbo, stable-diffusion), seed, nologo, and enhance. The Python function encodes the prompt, downloads the image, writes it to disk, and optionally logs metadata for reproducibility.
When to use it
- Quick prototyping and placeholder images
- Create marketing assets: hero images, banners, thumbnails
- Batch generation for A/B testing and creative exploration
- No-budget or proof-of-concept projects without API keys
- Automated workflows that need script-friendly, URL-based image generation
Best practices
- Compose specific prompts: include subject, style, lighting, mood, and quality modifiers
- Specify exact width and height to avoid cropping and platform mismatches
- Use a fixed seed for reproducible outputs when iterating
- Choose model by need: flux for quality, turbo for speed, stable-diffusion for balance
- Save prompt, seed, model, and dimensions as metadata for traceability
- URL-encode prompts to avoid malformed requests
Example use cases
- Generate a website hero image (1920x1080) with a single curl or Python call
- Produce product thumbnails (1024x1024) for app stores and marketplaces
- Create LinkedIn banners (1584x396) with a safe text area for overlays
- Batch-generate variations using different seeds for creative review and selection
- Automate social media content generation for campaigns with consistent parameters
FAQ
No. Pollinations.ai uses an open URL endpoint and does not require authentication or signup.
How do I get reproducible results?
Include a seed parameter with your prompt. The same prompt + seed + model + dimensions produces the same image.