Questions tagged [rapidapi]
155 questions
0
votes
1 answer
create email with python
im working in a personal project that needs new email in the start, and i want create a new email with python also i don't want run a complicate smtp server(I don't know much about that yet) i want do something like temp mail with api, i'd tried…
0
votes
2 answers
How to figure out how to create objects relative to an api point using c#
I want to get data from API from https://rapidapi.com/coinlore/api/coinlore-cryptocurrency/
The result look like:
{2 items
"data":[...]100 items
"info":{...}2 items
}
When I see it this way, I'm not sure how to create objects.
I want to…

Ben Johnson
- 753
- 1
- 9
- 18
0
votes
1 answer
502 bad gateway errors as provider
I just added api on rapidapi, and whitelisted their IP addresses on cloudflare workers. I don't get 502 when visiting endpoint directly, but that happens when I do it with when testing endpoint in rapidapi dashboard. Cloudflare worker dashboard…

janat08
- 1,725
- 2
- 16
- 27
0
votes
1 answer
Issues with using the API R Code provided by RapidAPI
I'm trying to get the API R code of RapidAPI to work.
The code they provide is as follows (schematically):
library(httr)
GET(
url = rapidapi_url,
config = list(x-rapidapi-key = API_KEY,
x-rapidapi-host = HOST_URL,
…

Michael
- 59
- 7
0
votes
2 answers
Rapid Api- Skyscanner Flight Search gives 403 (Forbidden) error
I was using the free edition of that API for 20 days. There was no problem and status code was 200, I could fetch data . However, suddenly server started to response forbidden.
I have no idea what just happened, I tried to change my api key and…

Tolkienist Coder
- 79
- 9
0
votes
2 answers
API Request to RAPID API gives StatusCode: 401,
import { createApi, fetchBaseQuery } from '@reduxjs/toolkit/query/react';
const cryptoApiHeaders = {
'x-rapidapi-key': 'coinranking1.p.rapidapi.com',
'x-rapidapi-host': '935af67341msh072d3f07b71a1f8p1cb0b5jsn44961d90a001',
};
const baseUrl =…

Dev AD
- 13
- 3
0
votes
2 answers
How does coingecko api requests limit work? Getting too many requests error after second request
I am trying to get some data from coingecko. In the first request fetching list of 100 biggest currencies. In following requests I want to fetch some detailed info about the biggest currencies. Unfortunately already for the second request I am…

Emil Haas
- 484
- 3
- 17
0
votes
2 answers
RapidApi Testing returns `kutz-log-nil-tenantid`
On RapidAPI I have created a new API and added a simple GET endpoint (/version). Every call (from the Dashboard Test Endpoint feature and from the browser) returns
{"version":"kutz-log-nil-tenantid"}
Anyone experiencing the same? Did I miss some…

Beppe C
- 11,256
- 2
- 19
- 41
0
votes
1 answer
Parsing embedded arrays in RapidAPI (Swift)
I'm looking at this API for covid19 on RapidAPI. I Tested the endpoint and it showed this result:
[0:
"country":"Canada"
"provinces":[
0:{
"province":"Alberta"
"confirmed":754
"recovered":0
"deaths":9
"active":0
…
user16717743
0
votes
1 answer
Getting a {"status":100,"errormsg":"Failed to parse text in form param"} when making api call
I'm trying to make an api call using the below code
'''
MediaType mediaType = MediaType.parse("application/x-www-form-urlencoded");
//this is where the error is beign thrown
RequestBody body = RequestBody.create(mediaType,…
0
votes
1 answer
Flutter http.get is giving an Exception while fetching data from RapidApi
I have been creating an application and have been stuck at this problem for the last 2 days without any progress. While fetching the data from the internet the http.get request is giving me an exception. This is the Rapid API (IMDB) I am trying to…

Aloysius Samuel
- 1,004
- 6
- 11
0
votes
1 answer
Can't get response using REST API in Wordpress
UPDATE: Fix is in the answer!
Please help!
I want to use the Instgram api from RapidApi. This is what RapidAPI shows as the PHP snippet:

Raging Vids
- 121
- 1
- 8
0
votes
3 answers
Use RapidAPI's SkyScanner integration using httr
I am trying to use httr and the code snippet from rapidapi.com to use sky scanner API.This is the first time I am trying this.
My issue is that the code copied directly from the site is not working and this is because of a ' in the code.
How can I…

user4933
- 1,485
- 3
- 24
- 42
0
votes
1 answer
Searching for API that returns most popular movies/tv
So I'm developing a coding project on the side with othersto learn more about APIs. Currently we're hoping to tie something together that will let you search for a movie and return what platforms it's streaming on and what it costs.
Currently we've…
0
votes
2 answers
get 401 Unauthorized erro when using rapid api and here are the screenshot of api doc
and this is my code to call api :
apiBaseURL= ${environment.baseUrl}
constructor(private http: HttpClient) { }
getTeams() {
let authToken = {
"x-rapidapi-key": "ba0a665d73msh8c54a216ac1d6c5p1f80c4jsn312950ace3e0",
"x-rapidapi-host":…

amr hamdy
- 41
- 3