How to Parse JSON in Make.com vs. n8n
Parsing JSON files in automation platforms can be tricky. Here's how to do it in both Make.com and n8n.
In Make.com, parsing JSON is straightforward:
For example, you can input a simple value like "2025" as test data.
Once you run this, Make.com will process your JSON. It will make all the data available as variables for subsequent modules.
In n8n, there's no dedicated "Parse JSON" module. But you have several options:
Others are having the same issue: https://community.n8n.io/t/json-parser-node/43525/5
You can use the Mock Data node:
This is closest to Make.com's approach:
You can simply copy JSON from Make.com and paste it directly into the Edit Fields node in n8n.
Q: Can I use code nodes in n8n for JSON parsing?
Q: Which method is better for large JSON files?
Q: Do I need to format my JSON differently between platforms?