AnyWho People Search Scraper
Pricing
from $1.00 / 1,000 results
AnyWho People Search Scraper
Find phone numbers, addresses, and age for US individuals by name or phone number using AnyWho.com.
Pricing
from $1.00 / 1,000 results
Rating
5.0
(17)
Developer
Crawler Bros
Maintained by CommunityActor stats
17
Bookmarked
3
Total users
2
Monthly active users
7 days ago
Last modified
Categories
Share
Find phone numbers, addresses, and age for US individuals using AnyWho.com. Given a name (with state) or a phone number, this actor searches AnyWho and returns structured contact records.
What This Actor Does
- Look up people by name + state (optionally with city) or by phone number
- Returns name, age, current address, phone numbers, and a direct AnyWho profile URL
- Supports bulk input — look up multiple people in a single run
- No proxy required — AnyWho is accessible from standard datacenter IPs
Input
| Field | Description | Default |
|---|---|---|
searches | List of people to look up. Each entry needs type (name or phone) and matching fields | Required |
maxResultsPerSearch | Maximum matched people to return per query (1–20) | 5 |
delayBetweenSearchesMs | Milliseconds to wait between queries in a bulk run | 3000 |
Search Query Examples
[{"type": "name", "name": "John Smith", "city": "Dallas", "state": "TX"},{"type": "name", "name": "Jane Doe", "state": "CA"},{"type": "phone", "phone": "2145551234"}]
Name search — name and state are required; city is optional but improves relevance.
Phone search — phone accepts 10-digit US numbers with or without country code/formatting.
Output
One record per matched person per input query. Fields appear only when data is available — no null values.
| Field | Description | Example |
|---|---|---|
inputQuery | The original search query | "John Smith, Dallas TX" |
name | Full name | "John Smith IV" |
age | Age | 61 |
currentAddress | Current address object | {"street": "5036 Hummingbird Ln", "city": "Plano", "state": "TX"} |
phones | All phone numbers | [{"number": "(214) 555-1234", "type": "mobile"}] |
phoneCount | Total phones found | 2 |
mobilePhones | Phones classified as mobile (when source provides type) | [{"number": "(214) 555-1234", "type": "mobile"}] |
landlinePhones | Phones classified as landline / home | [{"number": "(972) 555-9876", "type": "landline"}] |
relatives | Relatives of this person (when listed) | ["Jane Smith", "Bob Smith"] |
relativeCount | Number of relatives found | 2 |
associates | Known associates (when listed) | ["Mary Doe"] |
associateCount | Number of associates found | 1 |
sources | Sites that returned this person | ["anywho"] |
profileUrls | Profile page URL | {"anywho": "https://www.anywho.com/people/john+smith/texas/plano/a781523027536"} |
scrapedAt | Scrape timestamp (UTC) | "2026-04-26T10:00:00Z" |
Example Output Record
{"inputQuery": "John Smith, Dallas TX","name": "John Smith IV","age": 61,"currentAddress": {"street": "5036 Hummingbird Ln","city": "Plano","state": "TX"},"phones": [],"sources": ["anywho"],"profileUrls": {"anywho": "https://www.anywho.com/people/john+smith/texas/plano/a781523027536"},"scrapedAt": "2026-04-26T10:00:00Z"}
FAQ
Is this US-only? Yes. AnyWho covers US public records only.
How many results will I get?
Coverage depends on what AnyWho has indexed. Common names in major cities return multiple results; uncommon names or rural areas may return zero. maxResultsPerSearch caps the output per query.
Can I search multiple people at once?
Yes. The searches field accepts a list of any length. Queries run in sequence with a configurable delay between them.
What data is this based on? Public records aggregated by AnyWho. This actor does not access private databases.
Why might a search return no results? The person may not be listed on AnyWho, or the name/state combination may be too broad or too specific. Try without city if you included one, or verify the state abbreviation.