people-property

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

People & Property Search with Whitepages

借助x402使用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
https://enrichx402.com/api/{provider}/{action}
. You MUST either:
  1. Copy exact URLs from the Quick Reference table below, OR
  2. Run
    x402.discover_api_endpoints(url="https://enrichx402.com")
    to get the correct paths
Guessing paths will fail with 405 errors (wrong path) or 404 errors (missing
/api/
prefix).
Access people and property search through x402-protected endpoints.
注意——在调用任何API前请仔细阅读。 enrichx402.com的接口与各服务商的原生API不同。所有路径均采用
https://enrichx402.com/api/{provider}/{action}
格式。您必须:
  1. 复制下方快速参考表中的准确URL,或者
  2. 运行
    x402.discover_api_endpoints(url="https://enrichx402.com")
    获取正确路径
猜测路径会导致调用失败,返回405错误(路径错误)或404错误(缺少
/api/
前缀)。
通过受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://enrichx402.com/api/whitepages/person-search
$0.44Find people by name/location
Property search
https://enrichx402.com/api/whitepages/property-search
$0.44Property and owner info
任务接口地址费用描述
人物搜索
https://enrichx402.com/api/whitepages/person-search
0.44美元根据姓名/位置查找人物
房产搜索
https://enrichx402.com/api/whitepages/property-search
0.44美元房产与所有者信息

Person Search

人物搜索

Search for a person by name and location:
mcp
x402.fetch(
  url="https://enrichx402.com/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)
根据姓名和位置搜索人物:
mcp
x402.fetch(
  url="https://enrichx402.com/api/whitepages/person-search",
  method="POST",
  body={
    "firstName": "John",
    "lastName": "Smith",
    "city": "Seattle",
    "state": "WA"
  }
)
参数:
  • firstName
    - 名字(必填)
  • lastName
    - 姓氏(必填)
  • city
    - 城市名称
  • state
    - 美国州缩写
  • zip
    - 邮政编码
  • address
    - 街道地址
返回结果:
  • 全名与年龄范围
  • 当前及过往地址
  • 电话号码
  • 关联人物(亲属、联系人)

More Specific Search

更精准的搜索

Include more details for better matches:
mcp
x402.fetch(
  url=".../whitepages/person-search",
  body={
    "firstName": "John",
    "lastName": "Smith",
    "address": "123 Main St",
    "city": "Seattle",
    "state": "WA",
    "zip": "98101"
  }
)
提供更多细节以获得更匹配的结果:
mcp
x402.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:
mcp
x402.fetch(
  url="https://enrichx402.com/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
搜索房产信息:
mcp
x402.fetch(
  url="https://enrichx402.com/api/whitepages/property-search",
  method="POST",
  body={
    "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

验证联系信息

  1. Confirm legitimate purpose (see rules/privacy.md)
  2. (Optional) Check balance:
    x402.get_wallet_info
  3. Discover endpoints (required before first fetch):
    x402.discover_api_endpoints(url="https://enrichx402.com")
  4. Search with available details using exact URL from discovery or Quick Reference table above
  5. Verify results match expected person
mcp
x402.fetch(
  url="https://enrichx402.com/api/whitepages/person-search",
  method="POST",
  body={"firstName": "Jane", "lastName": "Doe", "city": "Portland", "state": "OR"}
)
  1. 确认用途合法(查看rules/privacy.md
  2. (可选)检查余额:
    x402.get_wallet_info
  3. 发现接口(首次调用前必填):
    x402.discover_api_endpoints(url="https://enrichx402.com")
  4. 使用发现结果或快速参考表中的准确URL,结合已有细节进行搜索
  5. 验证结果是否匹配目标人物
mcp
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
mcp
x402.fetch(
  url="https://enrichx402.com/api/whitepages/property-search",
  method="POST",
  body={"address": "456 Oak Avenue", "city": "Austin", "state": "TX"}
)
  • (可选)检查余额:
    x402.get_wallet_info
  • 根据地址搜索
  • 查看所有者与房产详情
mcp
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
mcp
x402.fetch(
  url="https://enrichx402.com/api/whitepages/person-search",
  method="POST",
  body={"firstName": "Michael", "lastName": "Johnson", "state": "CA"}
)
  • 确认用途合法
  • 提供尽可能多的细节以确保准确性
  • 查看结果是否匹配正确人物
mcp
x402.fetch(
  url="https://enrichx402.com/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.
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
Whitepages是x402套件中费用最高的接口,每次调用0.44美元。
场景成本
单次查询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
  • 数据主要聚焦美国地区
  • 结果取决于公开记录的可用性
  • 部分个人的信息可能有限
  • 近期搬家的个人可能显示旧地址
  • 未包含未公开/私人号码