# Whitepages Person Search via StableEnrich

> Whitepages Person Search via StableEnrich is a paid API for AI agents from stableenrich.dev, paid per call via x402, $0.22/call, status unknown (last checked 2026-09-13).

Search for people by name, phone number, or address using Whitepages data, returning contact and identity information.

## Facts

- Endpoint: POST https://stableenrich.dev/api/whitepages/person-search
- Price: $0.22/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stableenrich-dev-bf12fe46
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BycJo7J9cCyw6GthOOfCQ

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability stableenrich-dev-bf12fe46 -d '<json body>'
```

Example prompt: Can you look up John Smith who lives in Austin, Texas — I need his contact info and current address using Whitepages?

## When to prefer this

Use this endpoint when you need to look up real people by name, phone, or address and want structured contact/identity data from Whitepages. Prefer this over Apollo People Search (which focuses on professional/B2B prospects) when the target is a private individual rather than a business contact.

## Known failure modes

- Person not found in Whitepages database — returns empty or null results
- Insufficient identifying information provided — requires at least a name or phone
- Rate limit or quota exceeded — HTTP 429 error
- Payment failure — x402 payment not processed correctly
- Ambiguous query matches multiple people — returns list of candidates

## How this service works

Whitepages Person Search - Find people by name, phone, address

## Output

Returns a person profile including name, current and past addresses, phone numbers, age, and possibly associated relatives or household members, sourced from Whitepages data.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "city": {
   "type": "string",
   "description": "City name"
  },
  "name": {
   "type": "string",
   "description": "Full name to search for"
  },
  "phone": {
   "type": "string",
   "description": "Phone number"
  },
  "radius": {
   "type": "number",
   "maximum": 100,
   "description": "Radius in miles from address (max 100)"
  },
  "street": {
   "type": "string",
   "description": "Street address"
  },
  "max_age": {
   "type": "number",
   "description": "Maximum age filter"
  },
  "min_age": {
   "type": "number",
   "description": "Minimum age filter"
  },
  "zipcode": {
   "type": "string",
   "description": "ZIP code"
  },
  "last_name": {
   "type": "string",
   "description": "Last name"
  },
  "first_name": {
   "type": "string",
   "description": "First name"
  },
  "state_code": {
   "type": "string",
   "description": "Two-letter state code"
  },
  "excludeFields": {
   "type": "array",
   "items": {
    "type": "string"
   }
  },
  "include_historical_locations": {
   "type": "boolean",
   "description": "Include historical addresses in radius search"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stableenrich-dev-bf12fe46/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stableenrich.dev](https://www.zero.xyz/host/stableenrich.dev/llms.txt)
