跳转到主要内容
POST
/
companies
/
news
/
search
cURL
curl --request POST \
  --url https://api.pubrio.com/companies/news/search \
  --header 'Content-Type: application/json' \
  --header 'pubrio-api-key: <api-key>' \
  --data '{
  "locations": [
    "US",
    "SG",
    "CN"
  ],
  "company_locations": [
    "US",
    "SG",
    "CN"
  ],
  "companies": [
    "3c90c3cc-0d44-4b50-8888-8dd25736052a"
  ],
  "domains": [
    "pubrio.com"
  ],
  "linkedin_urls": [
    "https://www.linkedin.com/company/pubrio"
  ],
  "search_term": "pubrio",
  "categories": [
    "launches"
  ],
  "news_gallery_ids": [
    "3c90c3cc-0d44-4b50-8888-8dd25736052a"
  ],
  "published_dates": [
    "2025-01-01",
    "2025-01-10"
  ],
  "per_page": 25,
  "page": 1,
  "profile_id": 123
}'
{
  "data": {
    "pagination": {
      "page": 1,
      "per_page": 25,
      "total_entries": 351800,
      "total_pages": 14072,
      "is_timeout": false
    },
    "news": [
      {
        "news_id": "0b0f1c53-7a04-4a46-b5bc-3b17a7c4cfbd",
        "news_search_id": "4110b929-17cd-42aa-a159-906ead0c9b56",
        "domains": [
          "insead.edu",
          "digitalchina.com"
        ],
        "companies": [
          {
            "logo_url": "https://buckets.pubrio.com/company-logo/MjY5OTY5NDJpbnNlYWQuZWR1bGlua2VkaW5fcF9sb2dvMTU=.jpg",
            "domain_search_id": "dfbe6797-5311-46f9-9518-bf1a7c3d09bc",
            "country_code": "FR",
            "company_name": "Insead",
            "linkedin_name": "insead",
            "domain": "insead.edu"
          },
          {
            "logo_url": "https://buckets.pubrio.com/company-logo/NDA2NTQ5NTFkaWdpdGFsY2hpbmEuY29tbGlua2VkaW5fcF9sb2dvMTU=.jpg",
            "domain_search_id": "e13a9e24-a07d-4630-9b47-fceb778df74e",
            "country_code": "CN",
            "company_name": "Digital China",
            "linkedin_name": "digital-china",
            "domain": "digitalchina.com"
          }
        ],
        "news_galleries": [
          {
            "slug": "banking-financial-service",
            "news_gallery_id": "7c8ec9cc-66c5-4153-82da-9c8f356c6c99",
            "name": "Banking/Financial Service"
          }
        ],
        "locations": [
          "Singapore",
          "China"
        ],
        "last_modified": "2025-06-01T08:15:23.945Z",
        "image_url": null,
        "url": "http://enold.prnasia.com/p/asia-story-125304015-0.shtml",
        "published_at": "2025-06-01T08:00:00.000Z",
        "language": "id",
        "source": "prnasia.com",
        "category": "launches",
        "title": "Digital China's AI-driven transformation showcased at INSEAD",
        "summary": "Guo Wei, Chairman of Digital China, presented on AI-era corporate management at INSEAD 2025 Asia AI Conference, launching a case study on Digital China's AI transformation journey.",
        "news_category_name": "Launches"
      },
      "..."
    ]
  }
}

Authorizations

pubrio-api-key
string
header
required

一个唯一的 API 令牌,用于标识您通过 API 执行的操作以及相应的权限和操作。您可以在 设置 部分创建该令牌。

Body

application/json
profile_id
integer
required

发起请求的团队标识符。该ID有助于将查找与特定团队(工作区)关联,实现数据检索和额度追踪。

更多信息请参见团队标签下的 user details 端点。

locations
string[]

ISO 3166-1 alpha-2(cca2)用于筛选地区。更多信息请参见筛选器标签下的 location 端点。

Example:
["US", "SG", "CN"]
company_locations
string[]

公司总部所在地。更多信息请参见筛选器标签下的 location 端点。

Example:
["US", "SG", "CN"]
companies
string<uuid>[]

用于公司和人员检索操作的一组唯一标识符(domain_search_id)列表。

domains
string[]

用于公司和人员检索操作的公司域名列表。如果收到的地址为 www.pubrio.comhttps://docs.pubrio.com/,系统会自动转换为 pubrio.com 进行处理。

Example:
["pubrio.com"]
linkedin_urls
string[]

LinkedIn 公司主页的完整 URL。URL 需以 http 开头且包含 linkedin.com/company/

Example:
["https://www.linkedin.com/company/pubrio"]
search_term
string

用于筛选结果的关键词字符串。

Example:

"pubrio"

categories
string[]

category slugs 列表,用于搜索特定新闻类别。要获取 slug,请调用筛选器标签下的 news categories 端点。

Example:
["launches"]

news_gallery_id 列表,用于搜索特定新闻库。要获取ID,请调用筛选器标签下的 news galleries 端点。

published_dates
string[]

发布时间的时间范围。最大值为当天。

Example:
["2025-01-01", "2025-01-10"]
per_page
integer

每页应返回的搜索结果数量。限制每页结果数量可提升接口性能。

Example:

25

page
integer

要检索的数据页码。

Example:

1

Response

包含相关详细信息的成功响应。

data
object | null

响应信息取决于具体接口。