Questions tagged [rapidapi]
155 questions
1
vote
1 answer
Why does it say that I have an invalid API key with RapidAPI?
I just got started on learning how to use APIs. For my first project, I decided to use RapidAPI marketplace, but I'm having an issue.
I tried testing the API in postman, but it says I have an invalid API key for some reason even though I'm pretty…

StephenE
- 21
- 1
- 4
1
vote
1 answer
Trying to acceess data from fetched result from RapidAPI
I am very new to web programming, and I need a help.
I am using Node.js to fetch data using RapidAPI
The fetched result returns me with Parsed JSON format in array.
However, if I were to give an index, it's returning alphabet instead of item I…

user14581248
- 33
- 4
1
vote
2 answers
Missing RapidAPI application key (not missing)
I am using rapidAPI.
When I POST (Postman) I get the message:
{
"message": "Missing RapidAPI application key. Go to https://docs.rapidapi.com/docs/keys to learn how to get your API application key."
}
The Problem is, that I have an RapidAPI…

Julius
- 81
- 1
- 7
1
vote
1 answer
Rapidapi Api request with XMLHttpRequest
this is my second post, I hope to be luckier than last time end get some reply.
I’m trying to make a Rapidapi api request working with javascript ”XMLHttpRequest”
I must say that the api works perfectly with ios siri shortcut.
this is the code…

Franco Polato
- 81
- 3
1
vote
1 answer
access json with the rapidapi provided nsurlsession
I'm trying to use this weather api https://rapidapi.com/interzoid/api/us-weather-by-zip-code/endpoints in my xcode project with swift. They provide me with the code
import Foundation
let headers = [
"x-rapidapi-host":…

junqili
- 11
- 2
0
votes
0 answers
Error accessing the rapidAPI on deploying the app
I have subscribed to an API from RapidAPI. It worked fine locally, but after deploying the next application on to Vercel it's not working.
The code for API call:
export const compileCode= async ( payload )=>{
const options = {
method: 'POST',
…

useDeep
- 5
- 3
0
votes
0 answers
I'm building a website using the Edamam api from rapidapi. Back end looks great but no recipes appear on the front end
Good afternoon! I'm building a website that used Rapidapi: Edamam. I'm using HTML, CSS, JavaScript, and JavaScript: Jquery. My project URL: https://github.com/Sbiggs1985/Hack_sprint
My code looks great on the back end. The front end has the search…
0
votes
0 answers
RapidAPI integration with react app using Vite problem with Netlify
I am using vite, react, netlify and rapidapi for my project. All requests and functionalities were working perfectly when i was working on localhost and vscode. But when I deployed to the netlify, I ran into error which states e.slice is not a…

Lokesh Bhortake
- 1
- 1
0
votes
0 answers
Path to item in RapidAPI API
I'm trying to test the JetEngine plugin to get data from API's and display it on a wordpress site. But I'm stuck at the part where the API item path is configured:
JetEngine Item Path
The test API structure is as follows:
API data structure
The…

Melvin Pérez
- 1
- 1
0
votes
1 answer
I need help to get data from a Rapid API Public Holidays
I am trying to get the public holidays for my uwp application. I used this code
var client = new HttpClient();
var request = new HttpRequestMessage
{
Method = HttpMethod.Get,
RequestUri = new…

Kim
- 11
- 4
0
votes
0 answers
RapidAPI request failed 401
import axios from "axios";
const URL = 'https://youtube-v31.p.rapidapi.com';
const options = {
params: {
maxResults: 50,
},
headers: {
'X-RapidAPI-Key': process.env.REACT_APP_RAPID_API_KEY,
'X-RapidAPI-Host':…

Web_dev_Learner
- 1
- 1
0
votes
0 answers
SIMPLE TRANSLATION FROM ENGLISH TO INDONESION : ERROR -> { data: { detections: [ [Array] ] } }
{ data: { detections: [ [Array] ] } }
the code below gives the error above :
const readline = require('readline');
const axios = require('axios');
const promptMessage = "Enter an English sentence: ";
const translateSentence = async (sentence) =>…
0
votes
0 answers
Cannot read properties of undefined (reading '0') at http://localhost:3000/static/js/bundle.js:341:90
I am trying to make a youtube clone with the help of API from Rapid API and the name of the API is Youtube V3 . Link =…

Arpan Vijay
- 9
- 2
0
votes
0 answers
Receiving "Failed to retrieve projects error" after installing and logging into RapidAPI Client extension in VS Code
After installing and logging into the RapidAPI Client extension on VSCode I am receiving and error "Failed to retrieve projects error".
Screenshots attached: Error; login and sync confirm
I am unable to create a new project in VSCode that will sync…

Lucky
- 1
- 1
0
votes
1 answer
Uncaught TypeError: Cannot read properties of null (reading 'snippet')
am using an youtube api of rapidapi developing this project through javascript mastery youtube channel. am getting an error of null reading snippet. The below code is from VideoDetail component.
I am currently working on developing a YouTube clone…

Abhishek
- 21
- 1
- 2