How to Get JSON Data from API Using Node.js

This article guides you on how to retrieve JSON data from an API using the https module in Node.js, helping you better understand how to interact with web services.

In this article, we will use the Node.js https module to send a GET request to an API and handle the returned JSON data. The code snippet will illustrate how to fetch and process the data in a simple and detailed manner.

const https = require('https');

// API endpoint
const url = 'https://api.example.com/data';

// Send a GET request
https.get(url, (resp) => {
  let data = '';

  // Receive data in chunks
  resp.on('data', (chunk) => {
    data += chunk;
  });

  // End of data reception
  resp.on('end', () => {
    // Convert JSON string to object
    try {
      const jsonData = JSON.parse(data);
      console.log(jsonData);
    } catch (error) {
      console.error('Error parsing JSON:', error);
    }
  });

}).on("error", (err) => {
  console.log("Error: " + err.message);
});

Detailed explanation

  1. const https = require('https');: Import the https module to perform HTTP requests.
  2. const url = 'https://api.example.com/data';: Set the url variable to the address of the API you want to access.
  3. https.get(url, (resp) => { ... }): Send a GET request to the API, where resp represents the server's response.
  4. resp.on('data', (chunk) => { ... }): Listen for the 'data' event to receive chunks of data.
  5. data += chunk;: Concatenate each chunk into a complete string.
  6. resp.on('end', () => { ... }): Listen for the 'end' event to process the data once it's fully received.
  7. JSON.parse(data);: Convert the JSON string to an object for easier handling in Node.js.
  8. .on("error", (err) => { ... }): Handle errors that may occur during the GET request.

System Requirements

  • Node.js version: 10.x or later

How to install to run the Node.js code above

No additional libraries are required. Just install Node.js from the official Node.js website if you haven't already.

Tips

  • Always check the API documentation before use and read it carefully.
  • Use try...catch to handle errors when parsing JSON.
  • Practice regularly to master working with APIs in Node.js.


Related

How to Sign In with raw password when password stored in the database is hashed in Node.js

A guide on how to authenticate users signing in by comparing a raw password with the hashed password stored in the database. It demonstrates using `bcrypt` in Node.js to check if the raw password matches the hashed one.
Guide to Reading Excel Files Using Node.js

A comprehensive guide on how to read content from Excel files (.xlsx, .xls) using Node.js, utilizing the xlsx library with step-by-step installation and illustrative examples.
How to SELECT data from a MySQL database using Node.js

A guide on how to use Prepared Statements in Node.js to query data from a MySQL database with multiple parameters safely and effectively.
Guide to creating a multi-image upload form with Node.js

A step-by-step guide on how to create a multi-image upload form in Node.js using the `Multer` library for file handling and `Express` for server creation.
JSON Web Token (JWT) Authentication in Node.js

This article provides a guide on how to use JSON Web Tokens (JWT) for user authentication in a Node.js application. JWT is a secure and popular way to protect APIs by transmitting user authentication information between the server and the client.
Guide to speeding up Node.js applications with ThreadPool

A comprehensive guide on using ThreadPool to speed up Node.js applications, enhancing performance and multitasking capabilities. The article covers how to configure and use ThreadPool in Node.js.
How to automate website login using Selenium with Chrome in Node.js

A guide on how to use Selenium in Node.js to automate the login process for a website. The article will show how to set up the environment and write Node.js code to control Chrome.
Common Functions Used with Selenium Chrome in Node.js

This article lists common functions used when working with Selenium and Chrome in Node.js. These methods are essential for automating testing processes and interactions within the browser.
How to convert a Markdown string to HTML using Node.js

A detailed guide on how to convert a Markdown string to HTML in Node.js using the `marked` library.
Writing data to an Excel file using Node.js

A guide on how to write data to an Excel file using Node.js, employing the ExcelJS library for efficient and effective Excel file manipulation.

main.add_cart_success