people-property
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChinesePeople & 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. 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/
Access people and property search through x402-protected endpoints.
注意——在调用任何API前请仔细阅读。 enrichx402.com的接口与各服务商的原生API不同。所有路径均采用格式。您必须:https://enrichx402.com/api/{provider}/{action}
- 复制下方快速参考表中的准确URL,或者
- 运行
获取正确路径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
快速参考
| Task | Endpoint | Price | Description |
|---|---|---|---|
| Person search | | $0.44 | Find people by name/location |
| Property search | | $0.44 | Property and owner info |
| 任务 | 接口地址 | 费用 | 描述 |
|---|---|---|---|
| 人物搜索 | | 0.44美元 | 根据姓名/位置查找人物 |
| 房产搜索 | | 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:
- - First name (required)
firstName - - Last name (required)
lastName - - City name
city - - State abbreviation (US)
state - - ZIP code
zip - - Street address
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:
- - Street address (required)
address - - City name
city - - State abbreviation
state - - ZIP code
zip
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
人物搜索字段
- - Full legal name
name - - Estimated age range
ageRange - - Current residence
currentAddress - - Previous addresses
historicalAddresses - - Associated phone numbers
phoneNumbers - - Relatives and associates
associatedPeople
- - 法定全名
name - - 预估年龄范围
ageRange - - 当前住址
currentAddress - - 过往住址
historicalAddresses - - 关联电话号码
phoneNumbers - - 亲属与联系人
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
- - 标准化地址
address - - 房产所有者姓名
owner - - 房产类型
propertyType - - 建造年份(若有)
yearBuilt - /
bedrooms- 房产详情bathrooms - - 面积(若有)
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
mcp
x402.fetch(
url="https://enrichx402.com/api/whitepages/person-search",
method="POST",
body={"firstName": "Jane", "lastName": "Doe", "city": "Portland", "state": "OR"}
)- 确认用途合法(查看rules/privacy.md)
- (可选)检查余额:
x402.get_wallet_info - 发现接口(首次调用前必填):
x402.discover_api_endpoints(url="https://enrichx402.com") - 使用发现结果或快速参考表中的准确URL,结合已有细节进行搜索
- 验证结果是否匹配目标人物
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.
| 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
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
- 数据主要聚焦美国地区
- 结果取决于公开记录的可用性
- 部分个人的信息可能有限
- 近期搬家的个人可能显示旧地址
- 未包含未公开/私人号码