Automation
Convert Markdown to images in Make
Use the built-in HTTP module in any Make scenario to turn Markdown into PNG, JPG, or PDF. Nothing to install, and it works on every Make plan that allows HTTP calls.
Why
What people build with it
Watch a Notion database or Google Sheet and publish a rendered card whenever a row changes.
Render a Markdown summary as a PDF and drop it into Google Drive or Dropbox on a schedule.
Turn AI-generated Markdown into an image mid-scenario, then route it to email, Slack, or a CMS.
Setup
Connecting Make
- 01
Create an API token under Profile → API tokens. It starts with mti_ and is shown only once.
- 02
Add the HTTP → Make a request module to your scenario.
- 03
Set the method to POST and the URL to the generate endpoint. Add a header named Authorization with the value Bearer followed by your token.
POST https://markdowntoimage.com/api/v1/images/generate
- 04
Set Body type to Raw, Content type to JSON, and paste this. The {{1.content}} reference maps to the output of an earlier module.
{ "markdown": "{{1.content}}", "format": "png", "width": 800 } - 05
Turn on Parse response so Make maps the JSON for you. The link is then available as data.imageUrl in later modules.
Every parameter — themes, fonts, code styles, page size for PDF — is listed in the API reference.