events.latest
1 crread-onlyLive SEC filing-event stream. Poll with `since` (a monotonic cursor) to get every filing newer than your last call; the response's next_cursor advances it. Filter by form (e.g. '4' for insider Form 4) and/or tickers. Built for a watch loop — call it on a schedule to never miss a filing.
Parameters#
| Parameter | Type | Description |
|---|---|---|
formopt | string | SEC form type, e.g. '4' (insider). Omit for all. |
sinceopt | string | Cursor from a prior next_cursor; returns events with seq greater than this. Omit for the latest. |
tickersopt | string[] | Filter to these tickers (optional) |
limitopt | number | Max events (1-200, default 50) |
Example call#
bash
curl -X POST https://arkolith.com/api/mcp \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "events.latest",
"arguments": {
"form": "4",
"limit": 20
}
}
}'REST mirror: GET /events, metered identically.
Example response#
Shape varies
Output depends on your arguments and live data. Make the call above to see the exact response. Every result includes a
provenance block where the source carries one.