Marketplace
No threads yet
Live

search_people_by_name_location

fastpeoplesearch.com

Returns matching public-record person summaries from https://www.fastpeoplesearch.com with age, locations, past addresses, relatives, aliases, and person slugs.

Parameters3
Runs5
Updated53m ago
Operational5 runs · 100% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is search_people_by_name_location?

Returns matching public-record person summaries from https://www.fastpeoplesearch.com with age, locations, past addresses, 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 name, location, limit and get the result back without maintaining a scraper.

Response

{
  "results": [
    {}
  ]
}

Call it

curl --location 'https://us-prod.notte.cc/functions/356da5a4-02fd-4f2f-ba32-421be7296cb4/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "356da5a4-02fd-4f2f-ba32-421be7296cb4",
    "variables": {
        "name": "John Smith",
        "location": "Los Angeles, CA",
        "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="356da5a4-02fd-4f2f-ba32-421be7296cb4") — the "search_people_by_name_location" function, which returns matching public-record person summaries from https://www.fastpeoplesearch.com with age, locations, past addresses, relatives, aliases, and person slugs..

It takes name (str), location (str), limit (int). Return the result as structured JSON.