> ## Documentation Index
> Fetch the complete documentation index at: https://docs.pubrio.com/llms.txt
> Use this file to discover all available pages before exploring further.

# 公司新闻洞察

> 在某个日期窗口内，针对一家公司聚合的新闻信号洞察：提及量、热门话题与来源、类别与市场细分，以及按周的时间序列。



## OpenAPI

````yaml cn-openapi POST /companies/news/insights
openapi: 3.0.0
info:
  description: >-
    Pubrio API 提供市场扩张情报——实时捕捉企业进入新市场的信号，以及其底层的公司与人员数据。可搜索、查找并丰富账户与联系人信息，并订阅覆盖
    200+ 市场、带类型与日期的动向信号。
  version: 1.0.0
  title: Pubrio OpenAPI
  termsOfService: https://pubrio.com/zh-CN/terms-of-service
  contact:
    email: king.lai@pubrio.com
    name: King Lai
    url: https://pubrio.com/zh-CN/get-in-touch
  license:
    name: Apache 2.0
    url: http://www.apache.org/licenses/LICENSE-2.0.html
servers:
  - url: https://api.pubrio.com
security:
  - pubrio_api_key: []
tags:
  - name: Profile
    description: 工作区配置信息和使用统计
  - name: Enrichment
    description: 通过详细的 B2B 数据丰富人员和公司记录
  - name: Lookalike
    description: 查找与指定公司相似的公司
  - name: Search
    description: 使用筛选条件搜索人员、公司、职位、新闻和广告
  - name: Lookup
    description: 查找特定人员、公司、职位、新闻、广告和技术的详细信息
  - name: LinkedIn
    description: 通过 LinkedIn 个人资料 URL 查找人员和公司数据
  - name: Redeem
    description: 兑换积分以解锁人员联系方式（单个和批量）
  - name: Channels
    description: 管理外展渠道模板（创建、更新、删除、列表）
  - name: Monitor
    description: 创建和管理数据监控，包括 Webhook、统计和处理
  - name: Filters
    description: 获取搜索参数的可用筛选值（技术、地点、垂直领域等）
  - name: API Keys
    description: 查看 API 密钥的请求日志和使用情况分析
  - name: Insights
    description: 公司的信号聚合洞察(招聘、新闻、广告)。
  - name: Export
    description: 批量数据导出(消耗积分)。
  - name: Expansion
    description: 公司市场扩张情报:信号、阶段、市场与导出。
externalDocs:
  description: Pubrio API 用于搜索、预览和增强联系人及账户信息。Pubrio 数据库提供丰富的 B2B 联系人和销售情报数据。
  url: https://docs.pubrio.com
paths:
  /companies/news/insights:
    post:
      tags:
        - Insights
      summary: 新闻洞察
      description: 在某个日期窗口内，针对一家公司聚合的新闻信号洞察：提及量、热门话题与来源、类别与市场细分，以及按周的时间序列。
      operationId: companies_news_insights
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - domain_search_id
              properties:
                domain_search_id:
                  $ref: '#/components/schemas/domain_search_id'
                date_from:
                  $ref: '#/components/schemas/date_from'
                date_to:
                  $ref: '#/components/schemas/date_to'
                profile_id:
                  $ref: '#/components/schemas/profile_id'
      responses:
        '200':
          description: 该公司在指定时间窗口内的新闻洞察分组。
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: object
                    description: 所请求公司在指定时间窗口内的洞察分组。
              example:
                data:
                  totals:
                    mentions: 42
                    sources: 9
                  mentions: 42
                  topics:
                    - key: funding
                      count: 6
                    - key: partnership
                      count: 4
                  sources:
                    - key: TechCrunch
                      count: 3
                  top_source:
                    key: TechCrunch
                    count: 3
                  weekly_series:
                    - week_start: '2026-02-09'
                      count: 5
                  category_breakdown:
                    - key: business
                      count: 18
                  market_breakdown:
                    - key: GB
                      count: 7
                  window_days: 90
components:
  schemas:
    domain_search_id:
      type: string
      format: uuid
      description: 用于公司检索操作的唯一标识符。
    date_from:
      type: string
      format: date
      example: '2026-01-01'
      description: 日期窗口的起始（ISO 8601，YYYY-MM-DD）。与 `date_to` 配合使用，以将结果限定到特定范围；两者都省略则使用默认窗口。
    date_to:
      type: string
      format: date
      example: '2026-03-31'
      description: 日期窗口的结束（ISO 8601，YYYY-MM-DD）。必须等于或晚于 `date_from`。
    profile_id:
      type: integer
      description: >-
        可选。发起请求的团队标识符。由于 API 密钥已包含您的工作区信息，此参数不再是必填项。如果提供，该 ID
        有助于将查找与特定团队（工作区）关联，实现数据检索和额度追踪。


        更多信息请参见团队标签下的 `user details` 端点。
  securitySchemes:
    pubrio_api_key:
      type: apiKey
      name: pubrio-api-key
      description: >-
        一个唯一的 API 令牌，用于标识您通过 API 执行的操作以及相应的权限和操作。您可以在
        [设置](https://dashboard.pubrio.com/#/settings/) 部分创建该令牌。
      in: header

````