---
title: "Make"
description: "Generate images from a Make (Integromat) scenario. Call the Imejis render API with the HTTP module and map your data to a design's fields, no code required."
url: "https://www.imejis.io/apis/make"
published: "2026-07-25"
---

# Make

## Make (Integromat)

Render an image from any Make scenario with the built-in HTTP module. The module gets the finished image back directly, so there is nothing to poll.

### HTTP "Make a request" module settings

| Field          | Value                                          |
| -------------- | ---------------------------------------------- |
| URL            | `https://render.imejis.io/v1/YOUR_DESIGN_ID`   |
| Method         | `POST`                                         |
| Header         | `dma-api-key: YOUR_API_KEY`                    |
| Body type      | `Raw` / `application/json`                     |
| Parse response | Off (the response is a binary image, not JSON) |

Send the fields you want to change as `component.property` pairs in the request content, mapping in fields from earlier modules:

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

The module outputs the image as `data`, which you can pass straight into a Google Drive, email, or Slack module.

For a full walkthrough, see [image automation with Make](/blogs/integrations/make-integromat-image-automation) and the [integrations overview](/integrations). Want it fully hands-off? An [AI agent can drive the same API over MCP](/agents).
