Live
list_address_residents
fastpeoplesearch.comReturns current and past resident summaries for a street address from https://www.fastpeoplesearch.com, including names, locations, relatives, aliases, and person slugs.
Parameters3
Runs2
Updated53m ago
Operational2 runs · 100% succeeded
30 days ago90 days agoranfailednot checkedtoday
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is list_address_residents?
Returns current and past resident summaries for a street address from https://www.fastpeoplesearch.com, including names, locations, relatives, aliases, and person slugs. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass street_address, city_state_zip, limit and get the result back without maintaining a scraper.
Response
{
"results": [
{}
]
}Call it
curl --location 'https://us-prod.notte.cc/functions/378d82bf-2e90-408b-8cd6-e108f082cf96/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "378d82bf-2e90-408b-8cd6-e108f082cf96",
"variables": {
"street_address": "604 Carvel Grove Rd",
"city_state_zip": "Essex, MD 21221",
"limit": 10
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="378d82bf-2e90-408b-8cd6-e108f082cf96") — the "list_address_residents" function, which returns current and past resident summaries for a street address from https://www.fastpeoplesearch.com, including names, locations, relatives, aliases, and person slugs.. It takes street_address (str), city_state_zip (str), limit (int). Return the result as structured JSON.