---
title: "Zapier"
description: "Generate images from a Zap. Use the Imejis Zapier integration, or call the render API with a Webhooks by Zapier POST and map your data to a design's fields."
url: "https://www.imejis.io/apis/zapier"
published: "2026-07-25"
---

# Zapier

## Zapier

Render an image from any Zap. For the common cases, use the native [Imejis Zapier integration](/integrations/zapier). For full control over the fields, call the render API directly with a Webhooks by Zapier step.

### Webhooks by Zapier settings

| Field        | Value                                        |
| ------------ | -------------------------------------------- |
| Action event | `POST`                                       |
| URL          | `https://render.imejis.io/v1/YOUR_DESIGN_ID` |
| Payload Type | `JSON`                                       |
| Headers      | `dma-api-key: YOUR_API_KEY`                  |

Send the fields you want to change as `component.property` pairs in the data, mapping in values from your trigger:

```json title="Data (JSON)"
{
  "headline.text": "{{title}}",
  "subtitle.text": "{{subtitle}}"
}
```

The step returns the rendered image, which you can pass to a Gmail, Slack, or Google Drive action.

For the guided setup, see the [Zapier integration guide](/integrations/zapier) and the [integrations overview](/integrations). Prefer to skip the Zap entirely? An [AI agent can drive the same API over MCP](/agents).
