返回 Skill 列表
extension
分类: 开发与工程无需 API Key

people-property

通过x402使用Whitepages API搜索人员和财产。用途:- 根据姓名和位置查找人员 - 地址查询和验证 - 房产所有者信息 - 背景调查(出于正当目的)触发词:- “find person”、“lookup person”、“who lives at” - “property owner”、“property search”、“address lookup” - “person at address”、“contact info for”重要提示:这些端点包含个人信息。请负责任地使用,并且仅用于正当目的。有关指导,请参阅rules/privacy.md。使用agentcash.fetch访问Whitepages端点。每个端点每次调用费用为0.44美元。

person作者: jakexiaohubgithub

People & Property Search with Whitepages

Access people and property search through x402-protected endpoints.

Setup

See rules/getting-started.md for installation and wallet setup.

Important: This skill provides access to personal information. Review rules/privacy.md before use.

Quick Reference

| 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 |

Person Search

Search for a person by name and location:

agentcash.fetch(
  url="https://stableenrich.dev/api/whitepages/person-search",
  method="POST",
  body={
    "firstName": "John",
    "lastName": "Smith",
    "city": "Seattle",
    "state": "WA"
  }
)

Parameters:

  • firstName - First name (required)
  • lastName - Last name (required)
  • city - City name
  • state - State abbreviation (US)
  • zip - ZIP code
  • address - Street address

Returns:

  • Full name and age range
  • Current and previous addresses
  • Phone numbers
  • Associated people (relatives, associates)

More Specific Search

Include more details for better matches:

agentcash.fetch(
  url=".../whitepages/person-search",
  body={
    "firstName": "John",
    "lastName": "Smith",
    "address": "123 Main St",
    "city": "Seattle",
    "state": "WA",
    "zip": "98101"
  }
)

Property Search

Search for property information:

agentcash.fetch(
  url="https://stableenrich.dev/api/whitepages/property-search",
  method="POST",
  body={
    "address": "123 Main Street",
    "city": "Seattle",
    "state": "WA"
  }
)

Parameters:

  • address - Street address (required)
  • city - City name
  • state - State abbreviation
  • zip - ZIP code

Returns:

  • Property address (standardized)
  • Owner name
  • Property type (single family, condo, etc.)
  • Property details

Response Data

Person Search Fields

  • name - Full legal name
  • ageRange - Estimated age range
  • currentAddress - Current residence
  • historicalAddresses - Previous addresses
  • phoneNumbers - Associated phone numbers
  • associatedPeople - Relatives and associates

Property Search Fields

  • address - Standardized address
  • owner - Property owner name
  • propertyType - Type of property
  • yearBuilt - Construction year (if available)
  • bedrooms / bathrooms - Property details
  • squareFootage - Size (if available)

Workflows

Verify Contact Information

  • [ ] Confirm legitimate purpose (see rules/privacy.md)
  • [ ] (Optional) Check balance: agentcash.get_wallet_info
  • [ ] Search with available details
  • [ ] Verify results match expected person
agentcash.fetch(
  url="https://stableenrich.dev/api/whitepages/person-search",
  method="POST",
  body={"firstName": "Jane", "lastName": "Doe", "city": "Portland", "state": "OR"}
)

Property Research

  • [ ] (Optional) Check balance: agentcash.get_wallet_info
  • [ ] Search by address
  • [ ] Review owner and property details
agentcash.fetch(
  url="https://stableenrich.dev/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
agentcash.fetch(
  url="https://stableenrich.dev/api/whitepages/person-search",
  method="POST",
  body={"firstName": "Michael", "lastName": "Johnson", "state": "CA"}
)

Cost Considerations

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:

  • 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