Tools/Filings & watchlist

events.latest

1 crread-only

Live 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#

ParameterTypeDescription
formoptstringSEC form type, e.g. '4' (insider). Omit for all.
sinceoptstringCursor from a prior next_cursor; returns events with seq greater than this. Omit for the latest.
tickersoptstring[]Filter to these tickers (optional)
limitoptnumberMax 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.