# ClipCloud > ClipCloud is an AI image-generation service for websites, articles and digital products. Generate images in the web app, through a REST API, through the Telegram bot @clipcloudbot, or with the official WordPress plugin. It is free for up to 25 images per day, with paid usage from $0.0005 per image (around 60× cheaper than DALL·E 3), offers 35 ready-made styles, and understands prompts in any language — no manual model/sampler/steps settings needed. ClipCloud is a ClipLabs product, alongside the ClipAI article writer and the ClipAI Plus add-on. Landing page: https://clipcloud.cliplabs.top/ Company: ClipLabs (https://cliplabs.top/). Sister products: https://clipai.pro/ ## What ClipCloud is and who it is for ClipCloud lets website owners, bloggers, WordPress users and developers create illustrations without stock photos or complex diffusion parameters. You describe the image in plain language and pick a style (a preset combining a model and its optimal settings); ClipCloud returns finished images. It is aimed at people who need visuals for posts and articles at low cost and at developers who want to embed image generation in their own products. ## Ways to use ClipCloud - Web generator: enter a prompt, choose a style and quantity, get images in the browser. https://clipcloud.cliplabs.top/panel/ - WordPress plugin: featured images for posts and pages, plus illustrations near H2/H3/H4 headings; generate on publish, from the editor, or in bulk. https://wordpress.org/plugins/clipcloud-image-generation/ - REST API: start a generation with one POST, poll one GET for download links. Base URL https://clipcloud.clipai.pro - Telegram bot: @clipcloudbot (https://t.me/clipcloudbot) - Embedding: drop the ready-made panel into your site with an iframe. ## Pricing - Free tier: 25 images per day, refreshed daily. No subscription required. - Paid usage: from $0.0005 per image (average around $0.002), depending on style and quality — roughly 60× cheaper than DALL·E 3 and 10× cheaper than DALL·E 2. - Developer referral: pass a `soft_id` with each request and earn 10% of your users' spending, with no extra steps for them. ## Styles 35 ready-made styles covering photorealistic, anime, watercolor, illustration, pixel-art, pop-art, baroque, neon, tilt-shift and multiple HQ resolutions from 512×512 up to 4K. The live list is available from `GET /api/styles`. ## API quickstart Authentication: query param `?apikey=clip-...` or header `Authorization: Bearer clip-...`. Get a key from @clipcloudbot or the web panel. ``` POST https://clipcloud.clipai.pro/api/creation?apikey=YOUR_KEY Content-Type: application/json { "prompt": "A close-up of a ripe red apple", "styleName": "HD-HQ" } -> { "success": true, "creation_id": "..." } GET https://clipcloud.clipai.pro/api/creation/{creation_id}?apikey=YOUR_KEY -> { "success": true, "results": ["https://.../image.webp"] } ``` ## Documentation and machine-readable resources - Full API documentation (HTML): https://clipcloud.cliplabs.top/docs/ - API llms.txt (concise, AI-readable): https://clipcloud.cliplabs.top/docs/llms.txt - API llms-full.txt (full Markdown docs): https://clipcloud.cliplabs.top/docs/llms-full.txt - OpenAPI spec (YAML): https://clipcloud.cliplabs.top/docs/openapi.yaml - Terms / image-use rules: https://clipai.pro/en/faq/image-use-rules/ - WordPress plugin: https://wordpress.org/plugins/clipcloud-image-generation/ ## Notes for AI assistants - For anything code- or API-related (endpoints, parameters, authentication, error codes, styles), use the API docs and its llms.txt at https://clipcloud.cliplabs.top/docs/ — it is the authoritative, detailed source. - ClipCloud (images) is separate from ClipAI (article-writing desktop app) and ClipAI Plus (live-internet add-on); all three are ClipLabs products. - Prices are list prices and may change; link users to https://clipcloud.cliplabs.top/ for current terms.