people-property

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

People & Property Search with Whitepages

基于Whitepages的人物与房产搜索

Access people and property search through x402-protected endpoints.
通过受x402保护的接口访问人物与房产搜索功能。

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.
请查看rules/getting-started.md了解安装和钱包设置步骤。
重要提示:本技能可访问个人信息。使用前请阅读rules/privacy.md

Quick Reference

快速参考

TaskEndpointPriceDescription
Person search
https://stableenrich.dev/api/whitepages/person-search
$0.44Find people by name/location
Property search
https://stableenrich.dev/api/whitepages/property-search
$0.44Property and owner info
任务接口地址价格描述
人物搜索
https://stableenrich.dev/api/whitepages/person-search
$0.44根据姓名/地点查找人物
房产搜索
https://stableenrich.dev/api/whitepages/property-search
$0.44房产及所有者信息查询

Person Search

人物搜索

Search for a person by name and location:
bash
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 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)
根据姓名和地点搜索人物:
bash
npx agentcash fetch https://stableenrich.dev/api/whitepages/person-search -m POST -b '{
  "firstName": "John",
  "lastName": "Smith",
  "city": "Seattle",
  "state": "WA"
}'
参数说明:
  • firstName
    - 名字(必填)
  • lastName
    - 姓氏(必填)
  • city
    - 城市名称
  • state
    - 美国州缩写
  • zip
    - 邮政编码
  • address
    - 街道地址
返回内容:
  • 全名和年龄范围
  • 当前及过往地址
  • 电话号码
  • 关联人物(亲属、同事等)

More Specific Search

更精准的搜索

Include more details for better matches:
bash
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"
}'
提供更多细节以获得更匹配的结果:
bash
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"
}'

Property Search

房产搜索

Search for property information:
bash
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 name
  • state
    - State abbreviation
  • zip
    - ZIP code
Returns:
  • Property address (standardized)
  • Owner name
  • Property type (single family, condo, etc.)
  • Property details
搜索房产信息:
bash
npx agentcash fetch https://stableenrich.dev/api/whitepages/property-search -m POST -b '{
  "address": "123 Main Street",
  "city": "Seattle",
  "state": "WA"
}'
参数说明:
  • address
    - 街道地址(必填)
  • city
    - 城市名称
  • state
    - 州缩写
  • zip
    - 邮政编码
返回内容:
  • 标准化后的房产地址
  • 所有者姓名
  • 房产类型(独栋住宅、公寓等)
  • 房产详细信息

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
  • name
    - 法定全名
  • ageRange
    - 预估年龄范围
  • currentAddress
    - 当前住址
  • historicalAddresses
    - 过往住址
  • phoneNumbers
    - 关联电话号码
  • associatedPeople
    - 亲属及关联人物

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)
  • address
    - 标准化地址
  • owner
    - 房产所有者姓名
  • propertyType
    - 房产类型
  • yearBuilt
    - 建造年份(若有数据)
  • bedrooms
    /
    bathrooms
    - 房产细节
  • squareFootage
    - 面积(若有数据)

Workflows

工作流

Verify Contact Information

验证联系信息

  • Confirm legitimate purpose (see rules/privacy.md)
  • (Optional) Check balance:
    npx agentcash wallet info
  • Search with available details
  • Verify results match expected person
bash
npx agentcash fetch https://stableenrich.dev/api/whitepages/person-search -m POST -b '{"firstName": "Jane", "lastName": "Doe", "city": "Portland", "state": "OR"}'
  • 确认具备合法用途(详见rules/privacy.md
  • (可选)查看余额:
    npx agentcash wallet info
  • 使用已有信息进行搜索
  • 验证结果是否匹配目标人物
bash
npx agentcash fetch https://stableenrich.dev/api/whitepages/person-search -m POST -b '{"firstName": "Jane", "lastName": "Doe", "city": "Portland", "state": "OR"}'

Property Research

房产调研

  • (Optional) Check balance:
    npx agentcash wallet info
  • Search by address
  • Review owner and property details
bash
npx agentcash fetch https://stableenrich.dev/api/whitepages/property-search -m POST -b '{"address": "456 Oak Avenue", "city": "Austin", "state": "TX"}'
  • (可选)查看余额:
    npx agentcash wallet info
  • 根据地址进行搜索
  • 查看所有者及房产详细信息
bash
npx agentcash fetch https://stableenrich.dev/api/whitepages/property-search -m POST -b '{"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
bash
npx agentcash fetch https://stableenrich.dev/api/whitepages/person-search -m POST -b '{"firstName": "Michael", "lastName": "Johnson", "state": "CA"}'
  • 确认具备合法用途
  • 提供尽可能多的细节以保证准确性
  • 查看结果是否为正确匹配
bash
npx agentcash fetch https://stableenrich.dev/api/whitepages/person-search -m POST -b '{"firstName": "Michael", "lastName": "Johnson", "state": "CA"}'

Cost Considerations

成本考量

At $0.44 per call, Whitepages is the most expensive endpoint in the x402 suite.
ScenarioCost
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
每次调用费用为0.44美元,Whitepages是x402套件中费用最高的接口。
场景成本
单次查询$0.44
地址验证+人物搜索$0.88
多个候选结果$1.32+
降低成本的小贴士:
  • 提供尽可能多的信息,确保首次查询即得到准确结果
  • 先使用免费资源(如LinkedIn、公司官网)
  • 使用apollo、clado、firecrawl、WebSearch、WebFetch获取数据,使查询更精准
  • 仅在必要时使用本接口

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