Answers for "headers fetch post"

0

fetch post headers

method:"POST",
body:JSON.stringify(data),
 headers:{
      "content-type": "application/json"
  }
Posted by: Guest on July-06-2021
0

headers with fetch

headers = {
            'X-CoinAPI-Key': 'CB1D352F-23E7-4D64-97AC-FB5AEF4839FD'
        }
        fetch('https://rest.coinapi.io/v1/exchangerate/BTC', { headers })
            .then(response => response.json())
            .then(data => {
                console.log('Success:', data);
            })
Posted by: Guest on February-12-2022

Code answers related to "Javascript"

Browse Popular Code Answers by Language