Search Signals - By Company Domain

Search News by Company Website, Trigger Code & News Published Date

post

Search for news articles based on company website domain(s) and Intellizence trigger code(s)

Authorizations
Header parameters
x-api-keystringRequired

Intellizence API key for authenticating the request.

Body
startDatestring · dateOptional

Start date for the news search in YYYY-MM-DD format. Date is news published date.

Example: 2025-06-01
endDatestring · dateOptional

End date for the news search in YYYY-MM-DD format. Date is news published date.

Example: 2025-07-07
companyDomainsstringOptional

Website Domain of the company for which news signal are required. Multiple domains can be passed as comma separated values or array.

Example: coreweave.com
triggerCodesstringOptional

Intellizence Trigger code(s) for filtering news. Multiple Trigger Code (s) can be passed as comma separated values or array.

Example: KW_518
limitintegerOptional

Number of news articles to be returned.

Example: 1
Responses
200
News search results
application/json
post
POST /api/v2/news/search HTTP/1.1
Host: api.intellizence.com
x-api-key: text
Content-Type: application/json
Accept: */*
Content-Length: 116

{
  "startDate": "2025-06-01",
  "endDate": "2025-07-07",
  "companyDomains": "coreweave.com",
  "triggerCodes": "KW_518",
  "limit": 1
}
200

News search results

{
  "status": 1,
  "message": "OK",
  "news": [
    {
      "hash": "ec44d01ff91285394b17078cb8da6da2",
      "title": "CoreWeave to acquire data center builder Core Scientific for $9B in stock",
      "desc": "Confirming recent rumors, cloud operator CoreWeave Inc. today announced plans to buy data center builder Core Scientific Inc. for $9 billion in stock. Shares of both companies declined on the news. Core Scientific launched in 2017 to build data centers optimized for cryptocurrency mining. It went public in 2022 through a merger with a special […] The post CoreWeave to acquire data center builder Core Scientific for $9B in stock appeared first on SiliconANGLE .",
      "url": "https://siliconangle.com/2025/07/07/coreweave-acquire-data-center-builder-core-scientific-9b-stock/",
      "publisher": "SiliconANGLE",
      "publishDate": "2025-07-07",
      "companies": [
        "CoreWeave Inc.",
        "Core Scientific Inc."
      ],
      "companyDomains": [
        "coreweave.com"
      ],
      "triggerCodes": [
        "KW_518"
      ],
      "triggerNames": [
        "merger & acquisition"
      ]
    }
  ]
}

Last updated