Integrations Overview
Connect RendShot to Zapier, n8n, Make, Windmill, Dify, Coze, GitHub Actions, and any HTTP-capable platform.
RendShot is a standard REST API. Any platform that can send an HTTP POST request can generate images.
Automation Platforms
| Platform | How it connects | Guide |
|---|---|---|
| n8n | HTTP Request node | Replace Puppeteer node with a single HTTP call |
| Zapier | Webhooks by Zapier action | Trigger image generation from any Zapier event |
| Make | HTTP module | Build visual workflows with image generation steps |
| Windmill | Python SDK or TypeScript fetch | Scripts and flows with auto-dependency management |
AI Agent Platforms
| Platform | How it connects | Guide |
|---|---|---|
| MCP Server | @rendshot/mcp package | Use RendShot tools in Claude, Cursor, VS Code |
| Dify | HTTP Request node | Add image generation to AI workflows and chatflows |
| Coze | Workflow HTTP node or custom plugin | Build AI bots with image generation capabilities |
CI/CD
| Platform | How it connects | Guide |
|---|---|---|
| GitHub Actions | curl in workflow YAML | Auto-generate OG images on every deploy |
Any HTTP Client
RendShot is a REST API. If your tool can make HTTP requests, it can generate images:
POST https://api.rendshot.ai/v1/image
Authorization: Bearer rs_live_...
Content-Type: application/json
{"html": "<div>Hello</div>", "width": 1200}See the API Reference for all endpoints and parameters.