Questions tagged [rapidapi]
155 questions
-2
votes
1 answer
Is there a way to extract live price quotes from a flight ticket website?
I need to know the live prices of plane tickets to calculate the cheapest route. Does someone know a way to extract this data? (Without Skyscanner Flight search - this doesn’t work) I’m writing the program in Python.

Azertopl
- 1
- 1
-3
votes
2 answers
how do I access object "player" inside the array retrofit 2 / android studio
I would like to unmarshal a list of players from this nested json using retrofit 2 and Gson in android:
{
"api": {
"status": 200,
"message": "GET players/playerId/44",
"results": 1,
"filters": [
...
…

ismail M
- 195
- 1
- 7
-3
votes
1 answer
RapidApi Android
I am messing around with RapidAPI and i dont undertand the code they give.
Could someone give me a teardown? It says in order to access api i have to write the following code
Map body = new HashMap

David Calle
- 19
- 3
-4
votes
1 answer
SyntaxError: Unexpected end of JSON input in fetch api
if i do this->
fetch(
//something,
options
)
.then((response) => response.json() )
it gives me error 'SyntaxError: Unexpected end of JSON input in fetch api' but if i remove .json() after response like->
fetch(
…

user19562345
- 1
- 1
- 2