IdealSpot Employment, Salary, and Income

FREEMIUM
By IdealSpot Inc | Updated 25 days ago | Financial
Popularity

7 / 10

Latency

1,714ms

Service Level

80%

Health Check

N/A

Back to All Discussions

Getting "Internal Server Error"

Rapid account: Asif Iqbal
asif.iqbal
4 years ago

I need to get salaries so I copied PHP Curl code for “Get the Salary/Wage per Employee per Annum”, it works fine on rapid but it does not works on my side and getting error “Internal Server Error”, please guide.

Thanks
Asif

Rapid account: Kevincal
kevincal Commented 4 years ago

I’m using USA zipcode as a region to query house-hold income.
https://rapidapi.com/idealspot-inc-idealspot-inc-default/api/idealspot-geodata/endpoints

I set the JSON strng-encoded location = {
“type”:“region”,
“regiontype”: “zipcode”,
“region_id”: “78702”
}

import requests

url = “https://idealspot-geodata.p.rapidapi.com/api/v1/data/insights/household-income/query

querystring = {“version”:“v2”,“location”:"%7B %22type%22%3A%22region%22%2C %22regiontype%22%3A %22zipcode%22%2C %22region_id%22%3A %2278702%22 %7D"}

headers = {
‘x-rapidapi-host’: “idealspot-geodata.p.rapidapi.com”,
‘x-rapidapi-key’: “YOUR API KEY
}

response = requests.request(“GET”, url, headers=headers, params=querystring)

print(response.text)

Cheers,

Join in the discussion - add comment below:

Login / Signup to post new comments