Skip to main content
POST
Get company news (batch)

Authorizations

Authorization
string
header
required

Authenticate using one of two formats:

  • Organization/user token: Token <your-token>
  • Stytch JWT: Bearer <your-jwt>

Body

company_id
integer

Fetch news for a single company by internal ID. Takes highest precedence.

company_domain
string

Fetch news for a single company by domain (e.g. openai.com).

company_domains
string[]

List of company domains (up to 1,000).

news_type
enum<string>

Filter by news importance. Default: major.

  • major - major
  • all - all
Available options:
major,
all
page_size
integer

Number of results per page. Default: 10, max: 50.

page_after
string

Cursor for forward pagination.

page_before
string

Cursor for backward pagination.

created_at_start
string<date-time>

Filter news created on or after this datetime (ISO 8601).

created_at_end
string<date-time>

Filter news created on or before this datetime (ISO 8601).

created_at_gte
string<date-time>

Alias for created_at_start.

created_at_lte
string<date-time>

Alias for created_at_end.

updated_at_gte
string<date-time>

Filter news updated on or after this datetime (ISO 8601).

updated_at_lte
string<date-time>

Filter news updated on or before this datetime (ISO 8601).

release_date_start
string<date-time>

Filter news released on or after this datetime (ISO 8601).

release_date_end
string<date-time>

Filter news released on or before this datetime (ISO 8601).

require_thumbnails
boolean
default:false

When true, articles without thumbnails fall back to the company logo.

Response

Paginated list of company news items. Same shape as GET.

company_news
object[]
required
meta
object
required
pagination
object
required