AnyWho People Search Scraper avatar

AnyWho People Search Scraper

Pricing

from $1.00 / 1,000 results

Go to Apify Store
AnyWho People Search Scraper

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

Crawler Bros

Maintained by Community

Actor stats

17

Bookmarked

3

Total users

2

Monthly active users

7 days ago

Last modified

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

FieldDescriptionDefault
searchesList of people to look up. Each entry needs type (name or phone) and matching fieldsRequired
maxResultsPerSearchMaximum matched people to return per query (1–20)5
delayBetweenSearchesMsMilliseconds to wait between queries in a bulk run3000

Search Query Examples

[
{"type": "name", "name": "John Smith", "city": "Dallas", "state": "TX"},
{"type": "name", "name": "Jane Doe", "state": "CA"},
{"type": "phone", "phone": "2145551234"}
]

Name searchname and state are required; city is optional but improves relevance.

Phone searchphone 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.

FieldDescriptionExample
inputQueryThe original search query"John Smith, Dallas TX"
nameFull name"John Smith IV"
ageAge61
currentAddressCurrent address object{"street": "5036 Hummingbird Ln", "city": "Plano", "state": "TX"}
phonesAll phone numbers[{"number": "(214) 555-1234", "type": "mobile"}]
phoneCountTotal phones found2
mobilePhonesPhones classified as mobile (when source provides type)[{"number": "(214) 555-1234", "type": "mobile"}]
landlinePhonesPhones classified as landline / home[{"number": "(972) 555-9876", "type": "landline"}]
relativesRelatives of this person (when listed)["Jane Smith", "Bob Smith"]
relativeCountNumber of relatives found2
associatesKnown associates (when listed)["Mary Doe"]
associateCountNumber of associates found1
sourcesSites that returned this person["anywho"]
profileUrlsProfile page URL{"anywho": "https://www.anywho.com/people/john+smith/texas/plano/a781523027536"}
scrapedAtScrape 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.