Questions tagged [rapidapi]
155 questions
25
votes
1 answer
How do I upload a file as part of a multipart request in Paw?
I am currently mocking out several endpoints in Paw, including one that would typicaly receive multipart form data as a combination of standard text input as well as a file.
If it were a form, it would look like this:
5
votes
1 answer
Attempts to access rapidAPI yahoo finance give me error 403 through swift
I am trying to use rapidAPI to access the Yahoo Finance API for a personal project. I registered for a free account and got an API key. Rapid API allows their users to copy and paste code to request data, so I took their demo code for accessing the…

Darrow Hartman
- 4,142
- 2
- 17
- 36
4
votes
4 answers
node:internal/errors:464 ErrorCaptureStackTrace(err);
When I was trying to add secure API keys in the .env file, I got this error:
node:internal/errors:464
ErrorCaptureStackTrace(err);
^
TypeError [ERR_HTTP_INVALID_HEADER_VALUE]: Invalid value "undefined" for header "X-RapidAPI-Host"
at…

Qianying Huang
- 61
- 1
- 1
- 3
4
votes
1 answer
Getting 405 error while running POST create session of RapidAPI Skyscanner flight search in PHP
I am trying to get location header from the response on POST create session, but getting 405 error. All other response I am getting except for the location header.
require_once 'vendor/autoload.php';
require_once…

fathima sheikh
- 41
- 2
4
votes
1 answer
RapidAPI response body shows as "undefined"
I'm using the webcams.travel API from RapidAPI (link to API doc) and I've set everything up using browserify, unirest, node, require, etc.
The API response is in json and the Response Header is being output, but the Response Body is supposed to give…

scummtomte
- 53
- 8
3
votes
1 answer
Unpacking nested data from Rapid API
pretty new to both stack overflow and python so my apologies if the formatting is wrong. Not sure if necessary but I am using VS Code.
I am pulling data from a covid-19 rapid api and it outputs the data (json) but doesn't give me the data I actually…

estRelief
- 31
- 2
3
votes
2 answers
How to make REST API deployed to heroku accessible only through rapidAPI
Salutations!
I have just completed my first REST API, deployed on heroku, and I decided it would be cool to make $0 a month through rapidAPI.
The rapidAPI testing dashboard passes the tests successfully - with one of their keys being a requirement…

Thanos Dodd
- 572
- 1
- 4
- 14
2
votes
1 answer
Trying to change image dynamically for every bodyPart item but getting same image for every bodyPart
I am working on fitness app using react js where there is a list of bodyparts. I wanted to have a seperate image for each body part but getting same image for all
BodyPart.js
import React,{useState} from 'react'
import { Stack, Typography } from…

Gauri
- 43
- 3
2
votes
0 answers
Provide API on rapidapi with file upload
I have an API (created with FastAPI) that takes an uploaded Word document and returns the content. I deployed the API on heroku. Below you find the code of the API with a test_client. The test_client returns the wanted data.
API code:
import…

Mazze
- 383
- 3
- 13
2
votes
1 answer
why am i not getting the data from Rapidapi
i want to use rapidapi to get some data using redux, but when i console.log the data i will be getting GET https://coinranking1.p.rapidapi.com/coins/coins 401 (Unauthorized). please what am i doing wrong, someone help me out
here is my code on my…

Emmanuel uzoezie
- 433
- 1
- 5
- 18
2
votes
1 answer
How to convert response data from rapidapi.com in c# objects
I have e response from https://rapidapi.com/ and I retrieve data like that in the web:
{1 item
"data":[1 item
0:{2 items
"screen_ID":"76"
"screen_data":{1 item
"icoData":{3 items
"data":[...
]3 items
…

Ben Johnson
- 753
- 1
- 9
- 18
2
votes
2 answers
How to use the free and public Rapid API and call the API in the flutter Application
For Example I have subscribed to one free and public API called "https://rapidapi.com/rapidapi/api/movie-database-imdb-alternative"
whose java code snippets are as folows
OkHttpClient client = new OkHttpClient();
Request request = new…

Srk2k14
- 59
- 9
2
votes
1 answer
react-native app and RapidAPI - AI Picture Colorizer
I'm working through this Udemy react-native course and finding it to be a bit outdated.
The course section 9 works with the RapidAPI AI Picture Colorizer to select a base64 encoded image. But it looks like the API was updated to no longer use…

Jacob Sherwood
- 181
- 1
- 2
- 13
2
votes
1 answer
Issue accessing RapidAPI with httr / R - Status: 401
I am trying to access a RapidAPI with the httr package in R as follows:
library(httr)
url <- "https://extract-news.p.rapidapi.com/v0/article"
queryString <- list(url =…

seb-29
- 51
- 2
2
votes
2 answers
How to get pretty API names with RapidAPI from OpenAPI spec
I'm creating an API using RapidAPI and when I upload an OpenAPI spec, the web UI API names are populated using the OpenAPI spec operationId which is often camelCase. How can I get the name to appear as human friendly while preserving the standard…

Grokify
- 15,092
- 6
- 60
- 81