people-property
Search for people and properties using Whitepages APIs via x402. USE FOR: - Finding people by name and location - Address lookups and verification - Property owner information - Background research (with legitimate purpose) TRIGGERS: - "find person", "lookup person", "who lives at" - "property owner", "property search", "address lookup" - "person at address", "contact info for" IMPORTANT: These endpoints contain personal information. Use responsibly and only for legitimate purposes. See rules/privacy.md for guidance. Both endpoints are $0.44 per call. IMPORTANT: Never guess endpoint paths. All paths follow the pattern https://enrichx402.com/api/{provider}/{action}. Use exact URLs from the Quick Reference table below or call x402.discover_api_endpoints first.
NPX Install
npx skill4agent add merit-systems/x402scan-skills people-propertyTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →People & Property Search with Whitepages
STOP — Read before making any API call. enrichx402.com endpoints are not the same as each provider's native API. All paths use the format. You MUST either:https://enrichx402.com/api/{provider}/{action}
- Copy exact URLs from the Quick Reference table below, OR
- Run
to get the correct pathsx402.discover_api_endpoints(url="https://enrichx402.com")Guessing paths will fail with 405 errors (wrong path) or 404 errors (missingprefix)./api/
Setup
Quick Reference
| Task | Endpoint | Price | Description |
|---|---|---|---|
| Person search | | $0.44 | Find people by name/location |
| Property search | | $0.44 | Property and owner info |
Person Search
x402.fetch(
url="https://enrichx402.com/api/whitepages/person-search",
method="POST",
body={
"firstName": "John",
"lastName": "Smith",
"city": "Seattle",
"state": "WA"
}
)- - First name (required)
firstName - - Last name (required)
lastName - - City name
city - - State abbreviation (US)
state - - ZIP code
zip - - Street address
address
- Full name and age range
- Current and previous addresses
- Phone numbers
- Associated people (relatives, associates)
More Specific Search
x402.fetch(
url=".../whitepages/person-search",
body={
"firstName": "John",
"lastName": "Smith",
"address": "123 Main St",
"city": "Seattle",
"state": "WA",
"zip": "98101"
}
)Property Search
x402.fetch(
url="https://enrichx402.com/api/whitepages/property-search",
method="POST",
body={
"address": "123 Main Street",
"city": "Seattle",
"state": "WA"
}
)- - Street address (required)
address - - City name
city - - State abbreviation
state - - ZIP code
zip
- Property address (standardized)
- Owner name
- Property type (single family, condo, etc.)
- Property details
Response Data
Person Search Fields
- - Full legal name
name - - Estimated age range
ageRange - - Current residence
currentAddress - - Previous addresses
historicalAddresses - - Associated phone numbers
phoneNumbers - - Relatives and associates
associatedPeople
Property Search Fields
- - Standardized address
address - - Property owner name
owner - - Type of property
propertyType - - Construction year (if available)
yearBuilt - /
bedrooms- Property detailsbathrooms - - Size (if available)
squareFootage
Workflows
Verify Contact Information
- Confirm legitimate purpose (see rules/privacy.md)
- (Optional) Check balance:
x402.get_wallet_info - Discover endpoints (required before first fetch):
x402.discover_api_endpoints(url="https://enrichx402.com") - Search with available details using exact URL from discovery or Quick Reference table above
- Verify results match expected person
x402.fetch(
url="https://enrichx402.com/api/whitepages/person-search",
method="POST",
body={"firstName": "Jane", "lastName": "Doe", "city": "Portland", "state": "OR"}
)Property Research
- (Optional) Check balance:
x402.get_wallet_info - Search by address
- Review owner and property details
x402.fetch(
url="https://enrichx402.com/api/whitepages/property-search",
method="POST",
body={"address": "456 Oak Avenue", "city": "Austin", "state": "TX"}
)Reconnect with Someone
- Confirm legitimate purpose
- Provide as much detail as possible for accuracy
- Review results for correct match
x402.fetch(
url="https://enrichx402.com/api/whitepages/person-search",
method="POST",
body={"firstName": "Michael", "lastName": "Johnson", "state": "CA"}
)Cost Considerations
| Scenario | Cost |
|---|---|
| Single lookup | $0.44 |
| Verify address + person | $0.88 |
| Multiple candidates | $1.32+ |
- Provide as much info as possible for accurate first-try results
- Use free sources first (LinkedIn, company websites)
- Use apollo, clado, firecrawl, WebSearch, WebFetch, to get data that will make the queries more accurate
- Only use for essential lookups
Limitations
- US-focused data
- Results depend on public records availability
- Some individuals may have limited information
- Recently moved individuals may show old addresses
- Unlisted/private numbers not included