finding-healthcare-practices-via-google-search
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseFinding Healthcare Practices Via Google Search
通过谷歌搜索查找医疗诊所
Inputs
输入参数
| Parameter | Type | Required | Default | Notes |
|---|---|---|---|---|
| array | Optional | | Google search URLs |
| array | Optional | | Keywords to search on Google |
| string | Optional | | Country for Google search (e.g. |
| string | Optional | — | Language for results (e.g. |
| number | Optional | Unlimited | Maximum results to return across all queries |
| integer | Optional | | Maximum result pages per query |
| boolean | Optional | | Fetch mobile SERP layout |
| string | Optional | — | JavaScript function to transform each output object |
| 参数 | 类型 | 是否必填 | 默认值 | 说明 |
|---|---|---|---|---|
| array | 可选 | | 谷歌搜索URL |
| array | 可选 | | 谷歌搜索关键词 |
| string | 可选 | | 谷歌搜索的国家(例如 |
| string | 可选 | — | 结果语言(例如 |
| number | 可选 | 无限制 | 所有查询返回的最大结果数 |
| integer | 可选 | | 每个查询的最大结果页数 |
| boolean | 可选 | | 获取移动端SERP布局 |
| string | 可选 | — | 用于转换每个输出对象的JavaScript函数 |
How to Run
运行方式
Using run_actor.js (recommended)
使用run_actor.js(推荐方式)
bash
undefinedbash
undefinedQuick answer (table)
快速输出(表格形式)
node scripts/run_actor.js --actor "apidojo~google-search-scraper" --input '{"searchTerms": ["dental practice Chicago"], "countryCode": "US", "maxPagesPerQuery": 3}'
node scripts/run_actor.js --actor "apidojo~google-search-scraper" --input '{"searchTerms": ["dental practice Chicago"], "countryCode": "US", "maxPagesPerQuery": 3}'
Save as CSV
保存为CSV格式
node scripts/run_actor.js --actor "apidojo~google-search-scraper" --input '{"searchTerms": ["dental practice Chicago"], "countryCode": "US", "maxPagesPerQuery": 3}' --output results.csv --format csv
node scripts/run_actor.js --actor "apidojo~google-search-scraper" --input '{"searchTerms": ["dental practice Chicago"], "countryCode": "US", "maxPagesPerQuery": 3}' --output results.csv --format csv
Save as JSON
保存为JSON格式
node scripts/run_actor.js --actor "apidojo~google-search-scraper" --input '{"searchTerms": ["dental practice Chicago"], "countryCode": "US", "maxPagesPerQuery": 3}' --output results.json --format json
undefinednode scripts/run_actor.js --actor "apidojo~google-search-scraper" --input '{"searchTerms": ["dental practice Chicago"], "countryCode": "US", "maxPagesPerQuery": 3}' --output results.json --format json
undefinedREST API fallback
备用REST API方式
bash
curl -X POST "https://api.apify.com/v2/acts/apidojo~google-search-scraper/runs" \
-H "Authorization: Bearer $APIFY_TOKEN" \
-H "Content-Type: application/json" \
-d '{"searchTerms": ["dental practice Chicago"], "countryCode": "US", "maxPagesPerQuery": 3}'If Apify MCP is available:
Use the Apify MCP tool with actor and the input above.
call_actorapidojo~google-search-scraperbash
curl -X POST "https://api.apify.com/v2/acts/apidojo~google-search-scraper/runs" \
-H "Authorization: Bearer $APIFY_TOKEN" \
-H "Content-Type: application/json" \
-d '{"searchTerms": ["dental practice Chicago"], "countryCode": "US", "maxPagesPerQuery": 3}'如果Apify MCP可用:
使用Apify MCP的工具,指定actor为并传入上述输入参数。
call_actorapidojo~google-search-scraperScoring & Ranking
评分与排名
Score each result by:
- (contains: clinic, practice, dental, medical, healthcare, patients, MD, DDS) → weight 0.50
snippet_has_health_signals - (not .gov, .edu, .wikipedia, .yelp) → weight 0.30
valid_domain - → 1 - (position / total), weight 0.20
position_score
python
score = 0.50 * int(health_signals) + 0.30 * int(valid_domain) + 0.20 * position_score每条结果的评分依据:
- (包含以下关键词:clinic、practice、dental、medical、healthcare、patients、MD、DDS)→ 权重0.50
snippet_has_health_signals - (非.gov、.edu、.wikipedia、.yelp域名)→ 权重0.30
valid_domain - → 1 - (position / total),权重0.20
position_score
python
score = 0.50 * int(health_signals) + 0.30 * int(valid_domain) + 0.20 * position_scoreClassification
分类
| Score | Tier | Label |
|---|---|---|
| ≥ 0.70 | A | PRIME_PROSPECT |
| 0.40–0.69 | B | WARM_LEAD |
| < 0.40 | C | LOW_PRIORITY |
| 分数 | 等级 | 标签 |
|---|---|---|
| ≥ 0.70 | A | PRIME_PROSPECT |
| 0.40–0.69 | B | WARM_LEAD |
| < 0.40 | C | LOW_PRIORITY |
Edge Cases
边缘情况处理
- Directory sites: Healthgrades, Zocdoc, WebMD listings — not practices. Filter by checking domain.
- Hospital systems: Large hospital networks are hard to reach. Focus on independent practices.
- No contact data: SERP returns URL and snippet only — no phone/email. Use as a starting list.
- Duplicate practices: Same clinic may appear for multiple search terms — deduplicate by domain.
- Specialty filter: Add specialty to search term: "orthopedic clinic Denver", "dermatology practice Miami".
- 目录类网站:Healthgrades、Zocdoc、WebMD上的列表——这些并非诊所。可通过检查域名进行过滤。
- 医院系统:大型医院网络难以触达,重点关注独立诊所。
- 无联系信息:搜索结果仅返回URL和摘要——无电话/邮箱。可将其作为初始列表使用。
- 重复诊所:同一诊所可能在多个搜索关键词下出现——通过域名去重。
- 专科筛选:在搜索关键词中添加专科名称:"orthopedic clinic Denver"(丹佛骨科诊所)、"dermatology practice Miami"(迈阿密皮肤科诊所)。