跳转到主要内容

Documentation Index

Fetch the complete documentation index at: https://docs.topify.ai/llms.txt

Use this file to discover all available pages before exploring further.

概览端点返回项目 GEO 表现的按搜索词摘要 —— 可见度、情感分析、位置,以及哪些竞争对手与您的品牌一同出现。可用于构建仪表盘或排行榜视图。

获取概览

GET /projects/{project_id}/overview
返回项目中所有搜索词的聚合指标,并按搜索词列出竞争对手提及次数。

路径参数

参数类型描述
project_idstring (UUID)项目 ID

查询参数

参数类型默认值描述
duration_daysinteger7回溯天数
date_fromstring起始日期(YYYY-MM-DD
date_tostring结束日期(YYYY-MM-DD
prompt_typestringactiveactivesuggested 进行筛选
providersstring以逗号分隔的 AI 服务商筛选
curl "https://topify-customer-api-production.up.railway.app/api/public/v1/projects/{project_id}/overview?duration_days=7&prompt_type=active" \
  -H "X-API-Key: tk_live_..."

响应

{
  "success": true,
  "data": {
    "items": [
      {
        "prompt_id": "e5f6a7b8-...",
        "content": "What is the best project management tool?",
        "prompt_type": "active",
        "created_at": "2026-01-15T10:30:00+00:00",
        "topic_id": "t1u2v3w4-...",
        "topic_name": "Product comparisons",
        "visibility": 85.0,
        "sentiment": 72.0,
        "position": 2.3,
        "volume": 2400,
        "intent": "commercial",
        "cvr": 45.0,
        "competitors_mentioned": [
          {
            "competitor_id": "c1d2e3f4-...",
            "name": "Competitor A",
            "mention_count": 15,
            "icon_url": "https://logo.clearbit.com/competitor-a.com",
            "icon_urls": [
              "https://logo.clearbit.com/competitor-a.com",
              "https://www.google.com/s2/favicons?domain=competitor-a.com&sz=64"
            ]
          }
        ]
      }
    ]
  }
}

OverviewPromptItem 字段

字段类型可空描述
prompt_idstring (UUID)No搜索词 ID
contentstringNoAI 搜索查询文本
prompt_typestringNoactivependingsuggestedinactiveurl_recommended
created_atstring (ISO 8601)No搜索词创建时间
topic_idstring (UUID)Yes该搜索词所属的主题
topic_namestringYes主题显示名称
visibilityfloatNo日期范围内的品牌可见度百分比(0—100)
sentimentfloatNo日期范围内的平均品牌情感分析评分
positionfloatNo在回复中的平均品牌位置
volumeintegerYes此搜索词的预估 AI 搜索需求量
intentstringYesinformationalcommercialnavigationaltransactional
cvrfloatYes内容可见度率(百分比)
competitors_mentionedOverviewCompetitorMention[]No在此搜索词的回复中出现的竞争对手

OverviewCompetitorMention 字段

字段类型可空描述
competitor_idstring (UUID)No竞争对手 ID
namestringNo出现时所用的竞争对手品牌名称
mention_countintegerNo此搜索词回复中的总提及次数
icon_urlstringYes主要 logo URL
icon_urlsstring[]No多个 logo URL 来源

错误

状态详情原因
400prompt_type must be 'active' or 'suggested'无效的 prompt_type 查询参数