JavaScript in Plain English

New JavaScript and Web Development content every day. Follow to join our 3.5M+ monthly readers.

Follow publication

All You Need to Know About the “Fetch API” in JavaScript

Mohith Gupta
JavaScript in Plain English
6 min readJul 19, 2021

--

What is the Fetch API?

let url = "https://reqres.in/api/users"
fetch( url , {options} )   
// url must be a string and an object with required options
fetch(url)
.then( response => console.log(response) )
fetch(url)
.then(response => response.json())
fetch(url)
.then(response => response.json())
.then(data => console.log(data))

Different methods in it :

fetch(url + "/2") // 2 is the id of that user
.then(res=>res.json())
fetch("https://reqres.in/api/users/2", { // full url can be written
method : 'DELETE',
}) // headers and body are not required
fetch(url, {
method : 'POST',
headers: {
'Content-type': 'application/json; charset=UTF-8'
},
// Indicates the content type as "json"(you can omit the charset)

body: JSON.stringify( {
first_name : "Adam",
} )
// we must provide body data in JSON string format
// hence we convert it with JSON.stringify()
})
.then(res=>res.json())
fetch("https://reqres.in/api/users/3", {
method : 'PUT',
headers: {
'Content-type': 'application/json; charset=UTF-8'
},
body:JSON.stringify({
first_name : "Kevin",
})
})
.then(res=>res.json())
buy me a coffee link

--

--

Published in JavaScript in Plain English

New JavaScript and Web Development content every day. Follow to join our 3.5M+ monthly readers.

Written by Mohith Gupta

A Better Person than Yesterday, I guess? In the process of Learning

Responses (2)