ok here is the solution
the most important part is your data structure in JSON module
i copied the json format from my HTTP Output then inserted it in JSON module data structure
and now everything is ok.
i did it with all of my other API calls also and now all of them working
thx for everyone’s… Answer from alireza_soleimanikha on community.make.com
MDN Web Docs
developer.mozilla.org › en-US › docs › Web › JavaScript › Reference › Global_Objects › JSON › parse
JSON.parse() - JavaScript | MDN
The JSON.parse() static method parses a JSON string, constructing the JavaScript value or object described by the string. An optional reviver function can be provided to perform a transformation on the resulting object before it is returned.
Json Parser Online
json.parser.online.fr
Json Parser Online
Analyze your JSON string as you type with an online Javascript parser, featuring tree view and syntax highlighting. Processing is done locally: no data send to server.
Videos
06:25
How to Parse JSON Data in JavaScript | Convert JSON Strings to ...
02:32
Quick Guide: JavaScript JSON Parsing & Stringifying in 2 Minutes ...
06:27
How to Parse JSON Data in JavaScript | Learn JSON.parse() to Read ...
03:08
Implement a JSON Parser in JS - YouTube
W3Schools
w3schools.com › jS › js_json_parse.asp
JSON.parse()
A common use of JSON is to exchange data to/from a web server. When receiving data from a web server, the data is always a string. Parse the data with JSON.parse(), and the data becomes a JavaScript object.
Make Community
community.make.com › questions
Parse json - Questions - Make Community
January 23, 2024 - If you do not want your HTTP module to parse the JSON directly (perhaps because you need to manipulate the input in some way), then you use a Parse JSON module to convert the text returned from the HTTP module into a JSON object · Make is capable of more complex manipulation if you need it.
JSON for Modern C++
json.nlohmann.me › api › basic_json › parse
parse - JSON for Modern C++
The example below demonstrates the parse() function with and without callback function. #include <iostream> #include <iomanip> #include <sstream> #include <nlohmann/json.hpp> using json = nlohmann::json; int main() { // a JSON text auto text = R"( { "Image": { "Width": 800, "Height": 600, "Title": "View from 15th Floor", "Thumbnail": { "Url": "http://www.example.com/image/481989943", "Height": 125, "Width": 100 }, "Animated" : false, "IDs": [116, 943, 234, 38793] } } )"; // fill a stream with JSON text std::stringstream ss; ss << text; // parse and serialize JSON json j_complete = json::parse(
Snowflake Documentation
docs.snowflake.com › en › sql-reference › functions › parse_json
PARSE_JSON | Snowflake Documentation
Interprets an input string as a JSON document, producing a VARIANT value. You can use the PARSE_JSON function when you have input data in JSON format. This function can convert data from JSON format to ARRAY or OBJECT data and store that data directly in a VARIANT value.
Alteryx
help.alteryx.com › current › en › designer › tools › developer › json-parse-tool.html
JSON Parse Tool
Use JSON Parse to separate JavaScript Object Notation (JSON) text into a table schema for downstream processing.
Top answer 1 of 4
6
A Javascript object is a data type in Javascript - it's have property and value pair as you define in your first example.
Copyvar ab = {"name":"abcd", "details":{"address":"pqrst", "Phone":1234567890}};
Now What is Json : A JSON string is a data interchange format - it is nothing more than a bunch of characters formatted a particular way (in order for different programs to communicate with each other)
Copyvar pq = '{"name":"abcd", "details":{"address":"pqrst", "Phone":1234567890}}';
so it's is a String With json Format.
and at last JSON.parse() Returns the Object corresponding to the given JSON text.
2 of 4
6
Here is my explanation with a jsfiddle.
Copy//this is already a valid javascript object
//no need for you to use JSON.parse()
var obj1 = {"name":"abcd", "details":"1234"};
console.log(obj1);
//assume you want to pass a json* in your code with an ajax request
//you will receive a string formatted like a javascript object
var str1 = '{"name":"abcd", "details":"1234"}';
console.log(str1);
//in your code you probably want to treat it as an object
//so in order to do so you will use JSON.parse(), which will
//parse the string into a javascript object
var obj2 = JSON.parse(str1);
console.log(obj2);
JSON, or JavaScript Object Notation, is a minimal, readable format for structuring data. It is used primarily to transmit data between a server and web application, as an alternative to XML.
Microsoft Learn
learn.microsoft.com › en-us › kusto › query › parse-json-function
parse_json() function - Kusto | Microsoft Learn
March 30, 2025 - Interprets a string as a JSON value and returns the value as dynamic. If possible, the value is converted into relevant data types. For strict parsing with no data type conversion, use extract() or extract_json() functions.
Jsongrid
jsongrid.com › json-parser
Json Parser Online - All-in-One Solution
Json Parser is the online tool to parse Json. Json could be very complex sometimes. If it's not formatted, it's really hard to understand the entire tree structure of it.
ServiceNow Community
servicenow.com › community › developer-blog › json-parsing › ba-p › 2279166
JSON Parsing - ServiceNow Community
December 7, 2025 - JSON.stringify will take JavaScript object and convert it into JSON string meaning it will serialize the data. so that JSON.Parse can accept it as an input.
Google
docs.cloud.google.com › bigquery › json functions
JSON functions | BigQuery | Google Cloud Documentation
Converts a JSON number to a SQL FLOAT64 value.