通过一次调用从任意 URL 提取每一个页面 SEO 信号。返回 title、meta description、canonical URL、hreflang 替代、robots 指令、Open Graph 标签、Twitter Cards、所有 Schema.org JSON-LD 块、H1-H6 大纲、内外链计数、带 alt 覆盖率的图片计数,以及 0-100 SEO 评分。为批量而生:输入 10,000 URL,每页一行返回。适用于 SEO 审计、内容 QA、结构化数据验证和竞争分析。
# 通过 Apify API 启动运行 curl -X POST "https://api.apify.com/v2/acts/santamaria-automations~seo-metadata-extractor/runs?token=YOUR_TOKEN" \ -H "Content-Type: application/json" \ -d '{ "urls": [ "https://example.com/product-a", "https://example.com/blog/post-1", "https://example.com/about", "https://example.com/pricing", "https://example.com/contact" ], "extractJsonLd": true, "extractHeadings": true }' # 或通过 MCP 与 AI 代理配合使用: # https://mcp.apify.com?tools=santamaria-automations/seo-metadata-extractor
| 字段 | 类型 | 示例 |
|---|---|---|
| url | string | https://example.com/product-a |
| title | string | 产品 A:高级订阅 |
| meta_description | string | 订阅产品 A... |
| canonical_url | string | https://example.com/product-a |
| og_image | string | https://example.com/og-product-a.jpg |
| schema_types | array | ["Product","BreadcrumbList"] |
| h1_count | integer | 1 |
| image_alt_coverage | number | 0.94 |
| seo_score | integer | 87 |
| warnings | array | ["meta_description_too_short"] |