Trying to use a POST call on the Skyscanner API

253 Views Asked by At

All that I want to do at the moment is log the data that I'm trying to retrieve from the Sky Scanner API via a POST call but I'm getting error 500. Any ideas on what I'm doing wrong here?

Btw new programmer

Update: Error 400

const KEY = '123';

fetch("https://skyscanner-skyscanner-flight-search-v1.p.rapidapi.com/apiservices/pricing/v1.0", {
 "method": "POST",
 "headers": {
  "x-rapidapi-host": "skyscanner-skyscanner-flight-search-v1.p.rapidapi.com",
  "x-rapidapi-key": `${KEY}`,
  "content-type": "application/x-www-form-urlencoded"
 },
 body: new URLSearchParams({
  "inboundDate": "2019-11-10",
  "cabinClass": "business",
  "children": "0",
  "infants": "0",
  "country": "US",
  "currency": "USD",
  "locale": "en-US",
  "originPlace": "SFO-sky",
  "destinationPlace": "LHR-sky",
  "outboundDate": "2019-11-20",
  "adults": "1"
   })
})
.then(response => {
 console.log(response);
})
.catch(err => {
 console.log(err);
});

1

There are 1 best solutions below

0
On

You don't need to pass your API Key as a literal string.

Pass it something like this:

"x-rapidapi-key": KEY,

P.S. Use environmental variable to pass the API key as this is a sensitive credential.