Marketplace
No threads yet
Live

get_people_by_phone

fastpeoplesearch.com

Returns current and past people associated with a US phone number from https://www.fastpeoplesearch.com, including record details and person slugs.

Parameters2
Runs5
Updated54m 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 get_people_by_phone?

Returns current and past people associated with a US phone number from https://www.fastpeoplesearch.com, including record details and person slugs. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass phone, limit and get the result back without maintaining a scraper.

Response

{
  "results": [
    {}
  ]
}

Call it

curl --location 'https://us-prod.notte.cc/functions/3b12ed4b-21e4-41e5-ae1f-6d50a68359ee/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "3b12ed4b-21e4-41e5-ae1f-6d50a68359ee",
    "variables": {
        "phone": "202-345-6789",
        "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="3b12ed4b-21e4-41e5-ae1f-6d50a68359ee") — the "get_people_by_phone" function, which returns current and past people associated with a US phone number from https://www.fastpeoplesearch.com, including record details and person slugs..

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