Send JSON data via POST to an API using JavaScript

A guide on how to send JSON data to an API using the POST method in JavaScript. The code uses the fetch method to perform the POST request and includes detailed explanations of each step.

Here is the JavaScript code using fetch to send JSON data to an API via POST:

const url = 'https://example.com/api';  // API URL
const data = {
  name: 'Nguyen Van A',
  email: '[email protected]',
  age: 30
};

// Send POST request
fetch(url, {
  method: 'POST',  // Using the POST method
  headers: {
    'Content-Type': 'application/json'  // Specifying the data format as JSON
  },
  body: JSON.stringify(data)  // Convert JavaScript object to JSON string
})
.then(response => response.json())  // Convert the response from API to JSON
.then(data => {
  console.log('Success:', data);  // Handle the successful result
})
.catch((error) => {
  console.error('Error:', error);  // Handle any errors
});

Detailed explanation:

  1. API URL:

    • const url = 'https://example.com/api';: This is the API URL where you will send the POST request.
  2. JSON data:

    • const data = {...};: The JavaScript object containing the data you want to send, like name, email, and age.
  3. fetch API:

    • fetch(url, { method: 'POST', headers: {...}, body: ... }): The fetch function is used to send an HTTP request. In this case, it is used to send a POST request to the API URL.
  4. Headers:

    • 'Content-Type': 'application/json': This header defines the data format as JSON.
  5. body:

    • body: JSON.stringify(data): Converts the JavaScript object into a JSON string to be sent in the request body.
  6. Handling response:

    • .then(response => response.json()): Converts the API's response into JSON format.
    • .then(data => ...): Processes the successful response data.
    • .catch(error => ...): Handles any errors that occur during the request.

JavaScript Version:

This code is compatible with JavaScript ES6 and above. The fetch method is supported in modern browsers such as Chrome, Firefox, Edge, and Safari.



Related

How to pass an array as a function parameter in JavaScript using the spread syntax

A guide on how to use the spread syntax (`...`) to pass an array as a parameter to a function in JavaScript. The article will show how to pass array elements as individual function arguments.
How to append HTML code to a div using insertAdjacentHTML in JavaScript

A guide on how to append HTML code to a `div` using the `insertAdjacentHTML` method in JavaScript. This method allows you to add content without replacing the existing content.
Appending HTML to a div using innerHTML in JavaScript

This article guides how to append HTML code to a `div` element using the `innerHTML` property in JavaScript. Readers will learn how to work with the DOM to add new HTML content to a specific `div`.
How to append HTML code to a div using appendChild in JavaScript

A guide on using `appendChild` to append HTML code to a `div` in JavaScript. This approach ensures DOM integrity and allows you to dynamically add HTML elements.
How to pass parameters to a setTimeout() method in JavaScript using arrow function

A guide on how to use `setTimeout()` with an arrow function to pass parameters to a function in JavaScript. This method is useful when you need to delay function execution while passing arguments to it.
Convert accented Unicode characters to non-accented in JavaScript

A guide on how to convert accented Unicode characters in the Vietnamese alphabet to non-accented letters using JavaScript's normalize method. This JavaScript code efficiently handles Vietnamese text processing.
JavaScript Program to Pass Parameter to a setTimeout() Method Using an Anonymous Function

A guide on how to pass parameters to the `setTimeout()` method using an anonymous function in JavaScript. This approach helps developers delay code execution while passing specific parameters.
How to pass an array as a function parameter in JavaScript using the apply() method

A guide on using the `apply()` method in JavaScript to pass an array as a function parameter. This method allows you to convert an array into individual arguments when calling a function.
Pass parameter to a setTimeout() method in JavaScript using a bind() method

A guide on how to pass a parameter to the `setTimeout()` method using the `bind()` method in JavaScript. This technique allows you to control the parameter passed to the delayed function call.
How to convert 3-digit color code to 6-digit color code using JavaScript

A guide on converting 3-digit color codes (#RGB) to 6-digit color codes (#RRGGBB) using JavaScript. This ensures consistent color representation in web pages.

main.add_cart_success