Skip to main content
GET
Company news

Authorizations

X-API-KEY
string
header
default:pk_live_YOUR_KEY
required

Prometheus API key (pk_live_...), created on the Developers page in the terminal. Also accepted as Authorization: Bearer pk_live_....

Path Parameters

id
string
required

Ticker symbol (e.g. NVDA), numeric SEC CIK (zero-padding optional) or platform key (e.g. XDFM000002).

Query Parameters

after
integer<int64>

Poll: return items with id greater than this (newest first). Pass the previous response's latestId.

before
integer<int64>

Load older: return items with id lower than this. Pass the previous response's nextCursor.

changedSince
string<date-time>

ISO 8601; with after, also re-send items whose updatedAt is later (headline rewrites, re-tagging). Pass the previous response's serverTime.

limit
integer

1–200, default 100.

Response

OK

items
object[]
required

Newest first.

latestId
integer<int64> | null
required

Highest id in the response (never below the caller's after); poll with after=latestId.

nextCursor
integer<int64> | null
required

Lowest id in the response when more rows exist below it; page older with before=nextCursor. null when exhausted.

serverTime
string<date-time>
required

Database time at query; pass back as changedSince on the next poll.

cik
string
required

Resolved 10-character CIK or platform key.