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 ...
06:27
How to Parse JSON Data in JavaScript | Learn JSON.parse() to Read ...
02:32
Quick Guide: JavaScript JSON Parsing & Stringifying in 2 Minutes ...
03:08
Implement a JSON Parser in JS - YouTube
08:39
DON'T Use JSON.parse & JSON.stringify - 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.
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.
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.
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.
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.
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(
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.
Sigmacomputing
quickstarts.sigmacomputing.com › guide › tables_json_parsing › index.html
Parsing JSON Data in Seconds
For many business users, JSON can be frustrating because it typically requires a developer or ETL tool to flatten it into a more familiar columnar format. This adds time and requires technical expertise. Sigma provides a much better way: you can directly and easily parse JSON inside Sigma, without waiting for developer intervention.