Questions tagged [skyscanner]

For questions about programming the API provided by Skyscanner which is a flight search engine that allows users to browse for flights via price and location. Additional tools such as fare graphs, allow users to compare flight prices of any given route over a month period, or the price of weekend flights from any given city.

Skyscanner is, according to its wikipedia page, a flights search engine that allows users to browse for flights via price and location. Additional tools such as fare graphs, allow users to compare flight prices of any given route over a month period, or the price of weekend flights from any given city.

60 questions
0
votes
1 answer

How do you know if a user has paid at affiliate website?

I have a question about the way of affiliation commission in websites. I understand that the websites like Skyscanner earn commission when their users have actually bought flight tickets at the flight company through their link. The question is,…
jdw
  • 19
  • 5
0
votes
2 answers

SkyScanner RapidAPI not providing return flight

For a personal project I am trying to make use of the Sky Scanner API, in GO, via RapidAPI. Here is the URL I am using to perform the API…
CJW
  • 710
  • 9
  • 26
0
votes
1 answer

Trying to use a POST call on the Skyscanner API

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 =…
Rob
  • 31
  • 4
0
votes
1 answer

How to repeat fetching data from a restful api until the body of the data has different status?

I'm building a an application to retrieve data from SkyScanner (with RapidApi). Basically i have to "open session" with the API and then get a Session Key to pull the results. - That's not a problem. When I get results, i need to check if the…
0
votes
3 answers

PHP waiting for response to change status

I'm trying to implement SkyScanner API... I need to call: "http://partners.api.skyscanner.net/apiservices/pricing/uk1/v1.0/ {SessionKey}?apiKey={apiKey} &pageIndex=0 &pageSize=10" so I write: $res1 =…
Aleks Per
  • 1,549
  • 7
  • 33
  • 68
0
votes
1 answer

Skyscanner API: Cannot create session via Flights Live Pricing

I'm exactly following this API guide via curl but yet keep getting this messages: {"ValidationErrors":[{"Message":"Rate limit has been exceeded: 0 PerMinute for PricingSession"}]} I'm new there and i'm sure i have never pulled before. Therefore,…
夏期劇場
  • 17,821
  • 44
  • 135
  • 217
0
votes
1 answer

Partially Empty Response While Using Alamofire and SkyScanner When Updating to Swift 3

I am updating an app to Swift 3 and having some trouble with Alamofire and .get requests. Using the code below, I am making a .get requests to obtain flight data from SkyScanner's api. For whatever reason, the return JSON value from the final .get…
EricMcg
  • 3
  • 4
0
votes
1 answer

Skyscanner API for all hotel locations using CURL

I am trying to fetch geo catalogue data from skyscanner api. I have read documentation http://business.skyscanner.net/portal/en-GB/Documentation/ApiOverview I have created api key. I am hitting api successfully and getting result same as on the…
umer safeer
  • 69
  • 2
  • 16
0
votes
2 answers

Find minimum in dictionary of lists after Skyscanner request?

I am new to Python and I am playing around with Skyscanner's Python API to practice wth Python and APIs. A response from Skyscanner's API has the structure of a dictionary made up of multiple lists which are in turn made of many dictionaries. See…
Max Payne
  • 387
  • 3
  • 17
0
votes
0 answers

Error code 410 when polling Skyscanner flight live prices

I am polling live prices from the Skyscanner API. Although I receive the session_key and although I am immediately polling the results I am getting a 410 (Gone) response header with an empty body. It used to work fine from my localhost environment…
tom_lehnert
  • 49
  • 1
  • 7
0
votes
0 answers

want to show skyscanner flight search widget results on same page

skyscanner flight search widget show search results on skyscanner's website ... how to show search result on my website in same page . i dont want to redirect on skyscanner's website for results . my code widget code is …
0
votes
1 answer

Angular Ionic POST 405 (Method Not Allowed), using Chrome

I managed to send a $http.post to skyscannerAPI: http://partners.api.skyscanner.net/apiservices/pricing/v1.0 However, I get the POST http://partners.api.skyscanner.net/apiservices/pricing/v1.0 405 (Method Not Allowed), I searched through Info…
user5787623
0
votes
2 answers

SkyScanner 415 Status Code when creating a session

I am trying to create a session on my Node JS application doing something like this: import * as request from 'request'; const apiKey = '123123123123123123'; const urlApi = 'http://partners.api.skyscanner.net/apiservices/pricing/v1.0?apikey=' +…
user3587624
  • 1,427
  • 5
  • 29
  • 60
0
votes
0 answers

PHP cURL not returning all results

I have a very strange problem. I am trying to return an array from a JSON GET request using the Skyscanner API. The Skyscanner URL I am generating and using in the cURL is:…
tom_lehnert
  • 49
  • 1
  • 7
0
votes
2 answers

Skyscanner Travel API / use private Apikey / return 429

I want use Travel Api in my Android app First Test Harness Demo API key (prtl6749387986743898559646983194) returns 200, success Creating the Session and Polling the Session However, while using the Dashboard private API key, it return 429 Too many…
Park
  • 5
  • 4