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. Use `npx agentcash fetch` for Whitepages endpoints. Both endpoints are $0.44 per call.
Install with Tessl CLI
npx tessl i github:Merit-Systems/agentcash-skills --skill people-property89
Does it follow best practices?
If you maintain this skill, you can automatically optimize it using the tessl CLI to improve its score:
npx tessl skill review --optimize ./path/to/skillValidation for skill structure
Access people and property search through x402-protected endpoints.
See rules/getting-started.md for installation and wallet setup.
Important: This skill provides access to personal information. Review rules/privacy.md before use.
| Task | Endpoint | Price | Description |
|---|---|---|---|
| Person search | https://stableenrich.dev/api/whitepages/person-search | $0.44 | Find people by name/location |
| Property search | https://stableenrich.dev/api/whitepages/property-search | $0.44 | Property and owner info |
Search for a person by name and location:
npx agentcash fetch https://stableenrich.dev/api/whitepages/person-search -m POST -b '{
"firstName": "John",
"lastName": "Smith",
"city": "Seattle",
"state": "WA"
}'Parameters:
firstName - First name (required)lastName - Last name (required)city - City namestate - State abbreviation (US)zip - ZIP codeaddress - Street addressReturns:
Include more details for better matches:
npx agentcash fetch https://stableenrich.dev/api/whitepages/person-search -m POST -b '{
"firstName": "John",
"lastName": "Smith",
"address": "123 Main St",
"city": "Seattle",
"state": "WA",
"zip": "98101"
}'Search for property information:
npx agentcash fetch https://stableenrich.dev/api/whitepages/property-search -m POST -b '{
"address": "123 Main Street",
"city": "Seattle",
"state": "WA"
}'Parameters:
address - Street address (required)city - City namestate - State abbreviationzip - ZIP codeReturns:
name - Full legal nameageRange - Estimated age rangecurrentAddress - Current residencehistoricalAddresses - Previous addressesphoneNumbers - Associated phone numbersassociatedPeople - Relatives and associatesaddress - Standardized addressowner - Property owner namepropertyType - Type of propertyyearBuilt - Construction year (if available)bedrooms / bathrooms - Property detailssquareFootage - Size (if available)npx agentcash wallet infonpx agentcash fetch https://stableenrich.dev/api/whitepages/person-search -m POST -b '{"firstName": "Jane", "lastName": "Doe", "city": "Portland", "state": "OR"}'npx agentcash wallet infonpx agentcash fetch https://stableenrich.dev/api/whitepages/property-search -m POST -b '{"address": "456 Oak Avenue", "city": "Austin", "state": "TX"}'npx agentcash fetch https://stableenrich.dev/api/whitepages/person-search -m POST -b '{"firstName": "Michael", "lastName": "Johnson", "state": "CA"}'At $0.44 per call, Whitepages is the most expensive endpoint in the x402 suite.
| Scenario | Cost |
|---|---|
| Single lookup | $0.44 |
| Verify address + person | $0.88 |
| Multiple candidates | $1.32+ |
Tips to reduce costs:
fe3e7ab
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.