JSON Make integrationAutomate JSON with Make.
Got data in JSON and need it readable, or need to send JSON to a tool that expects it? The JSON Make integration gives you 5 built-in modules that read, build and convert JSON inside a scenario. This page explains each one and walks you through a first scenario.
Verified Trustpilot reviews · AI, automation & growth agency
What can the JSON Make integration do for you?
The JSON Make integration is a set of built-in tools that work on data written in JSON, the text format many apps use to exchange information. Inside a scenario (the automation you build in Make, a chain of modules), they read JSON, write it, or convert it, without any account to link.
Turn a JSON reply into values you can map. When another app hands you a block of JSON text, Parse JSON splits it into separate values, so the next module can pick the customer name or the order total instead of one long string.
Send a whole list as one payload. An online store that pulls several orders from its shop app can pass them through Aggregate to JSON and get a single JSON text holding all of them, ready to hand to the next tool in one go.
Feed a system that only speaks XML. Convert JSON to XML takes your JSON and gives back the XML version, useful when an older partner tool refuses anything else.
What the app does not do: it has no trigger, so it never starts a scenario by itself, and it has no Make an API Call module. It only reshapes data that another module brings in. The same kind of step often exists as a node in n8n; the n8n vs Make comparison helps you pick a tool, and the Make training covers data mapping from the ground up. If a scenario breaks on messy JSON, start with Make troubleshooting.
Do you need to connect anything to use JSON in Make?
- 01
Add a JSON module
In your scenario, click the +, type JSON in the search box and pick the module you need. JSON is a built-in app, so it sits next to the other Make tools rather than behind a login.
- 02
Skip the connection step
Unlike most apps, JSON never shows Create a connection. The Make documentation states you do not need to establish a connection to use it, so there is no account to authorize and no key to paste.
- 03
Map data from the previous module
Fill the module fields with values coming from the module on its left. Click into a field and Make lists the data the previous modules produced, so you pick items instead of typing them.
Your first scenario with JSON in Make
GoalWhen another app returns a list of records, Make packs them into one JSON text with Aggregate to JSON.
- 01
Create the scenario
Open the Scenarios page, create a new scenario and click the + to add the first module. Since JSON has no trigger, this first module belongs to the app that holds your records.
- 02
Set up the source app
Pick the module of that app that returns your records and link its account if it asks. Each record it returns becomes a bundle, one item that travels from a module to the next.
- 03
Add Aggregate to JSON
Click the + on the right of the first module, search JSON and choose Aggregate to JSON. It gathers the bundles into one JSON text. No connection step appears here.
- 04
Test with Run once
Click Run once to execute the scenario one time. Then read the bundles each module received and check that the JSON text holds every record.
- 05
Schedule and switch on
Set the schedule on the first module, which runs every 15 minutes by default, then switch the scenario on. From here you can add the module that should receive your JSON text.
What each JSON module does
JSON gives you 5 modules. For each one: what it does for you, when to reach for it, and what to watch out for.
Aggregate to JSON
AggregatorCollects several bundles coming from earlier modules and returns them as one JSON text, so a whole batch of records travels as a single piece of data.
Convert JSON to XML
TransformerHands you an XML version of the JSON you feed it, which lets a scenario talk to software that reads XML and nothing else.
Create JSON
TransformerBuilds a fresh JSON text from values you place in the module, most of them mapped from earlier steps. You decide what goes in; nothing else does.
Parse JSON
TransformerReads a JSON text and breaks it into separate values Make understands, so later modules can map a single field instead of one long block of characters.
Transform to JSON
TransformerIn Make“Transforms any object to JSON.”
Takes any object a module hands you, such as a full contact record, and turns it into JSON text in one step, without rebuilding it piece by piece.
Need help automating JSON with Make?
A person reads every message.