Skip to main content
GET
/
v2
/
companies
/
{linkedin_id}
/
news
Get news for a company
curl --request GET \
  --url https://api.tamtam.ai/api/v2/companies/{linkedin_id}/news \
  --header 'Authorization: <api-key>'
{
  "news": [
    {
      "key_points": [
        "<string>"
      ],
      "link": "<string>",
      "published_at": "2023-11-07T05:31:56Z",
      "title": "<string>",
      "relevance": {
        "is_relevant": true,
        "actionable_insights": [
          "<string>"
        ],
        "rationale": "<string>"
      }
    }
  ]
}

Authorizations

Authorization
string
header
required

Account API key passed in the Authorization header

Path Parameters

linkedin_id
string
required

LinkedIn numeric company ID. If you only have a name, domain or LinkedIn URL, resolve it first via Search for a company.

Example:

"104924588"

Query Parameters

since
string<date-time>

Return news published since this RFC3339 timestamp. Defaults to 30 days ago. Max lookback is 90 days.

Example:

"2025-05-01T00:00:00Z"

limit
integer<int32>
default:100

Maximum number of news items to return.

Required range: 1 <= x <= 200
Example:

100

relevant_only
boolean
default:false

If true, only return articles flagged as relevant to your account's sales opportunities.

Response

OK

news
object[] | null
required

News items for the company, ordered by publication date descending