Hi Bubblers,
I’m creating an app that will skiptrace and using the Scrapeak API. I don’t have any problems using the docs params for Name Search, but the Address search is giving me the blues. I reached out to them and they say that they tested and it works fine. They suggest that may there is “parsing issue” on Bubble side of things.
Here are some snapshots of the workflow and the API Connector setup. Also, here is the instructions I’ve been following with a copy of their “response data”.
SEARCH BY ADDRESS
import requests
#/ Set your API key and query
api_key = “YOUR-API-KEY” # CHANGE WITH YOUR API KEY
address = “THE ADDRESS OF PERSON”
location = “CITY, STATE ZIPCODE”
#/ API endpoint
api_url = “https://app.scrapeak.com/v1/scrapers/people_search/search”
parameters = {“api_key”: api_key, “search_by”:“address”, “address”: address, “location”:location}
#/ Make the API request
response = requests.get(api_url, params=parameters)
response_content = response.text
print(response_content)
ADDRESS RESPONSE
{
“is_success”: true,
“data”: [
{
“fullName”: “John Smith”,
“location”: “Dover, MA”,
“coordinate_lat”: “42.232005”,
“coordinate_lng”: “-71.306082”,
“age”: “88”,
“currentHomeAddress”: “32 Miller Hat Rd, Dover MA 02030”,
“pastAddresses”: [
…
],
“phone”: [
…
],
“aka”: [
…
],
“relatives”: [
…
]
}
…
],
“message”: “Scraped successfully!”
}
Can anyone identify what I’m missing? I see that the fields are different that the sample response data. How would you set this up on the Bubble end if you were developing it for yourself?
Thanks in advance for your help!
K