Generate production-ready images from text. No templates. No design skills. Just describe what you want.
Not AI art — real React components, professional layouts, crisp text
$ curl -X POST api.rendrkit.dev/v1/generate \
-d '{"prompt": "Instagram post: Launch day!"}'
// Response in ~2s
{
"url": "https://cdn.rendrkit.dev/img/abc123.png"
}One API call. One image. Done.
From prompt to production image in three steps
Write a natural language prompt describing the image you need. Specify style, colors, text, layout — anything.
AI selects and composes React components into a pixel-perfect design. Real layout engine, real typography.
Get a CDN-hosted PNG URL instantly. Drop it into your app, social post, email, or anywhere else.
One API, unlimited creative possibilities
Instagram carousels, Twitter cards, LinkedIn banners
Blog posts, link previews, social sharing
Product cards, sale banners, promotional graphics
Newsletter headers, promotional email graphics
Eye-catching thumbnails with bold text overlays
Vertical format covers for Instagram & TikTok
Four ways to connect — pick what fits your stack
Claude Desktop, Cursor, Windsurf
// Add to your MCP config
{
"rendrkit": {
"command": "npx",
"args": ["@rendrkit/mcp"]
}
}Any language, any platform
POST /v1/generate
Host: api.rendrkit.dev
Authorization: Bearer rk_live_xxx
Content-Type: application/json
{"prompt": "..."}TypeScript / JavaScript
import { RendrKit } from '@rendrkit/sdk';
const rk = new RendrKit({
apiKey: process.env.RENDRKIT_KEY
});Function calling schema
{
"name": "generate_image",
"description": "Generate a design",
"parameters": {
"type": "object",
"properties": {
"prompt": { "type": "string" }
}
}
}A single API call in any language
curl -X POST https://api.rendrkit.dev/v1/generate \
-H "Authorization: Bearer rk_live_xxx" \
-H "Content-Type: application/json" \
-d '{"prompt": "Instagram post: Launch day! Dark theme, purple accent"}'Start free. Scale as you grow.