events

List events

Forward-dated corporate events extracted from filings — the results calendar.

GET/v1/events
List events
curl -sS -G https://api.cruxal.in/v1/events \
  -H "Authorization: Bearer $CRUXAL_API_KEY" \
  --data-urlencode "from=2026-08-17" \
  --data-urlencode "to=2026-08-17"
{
  "data": [
    {
      "id": 41822,
      "isin": "INE0LFV01018",
      "ticker": "SHANTIGOLD",
      "company_name": "Shanti Gold International Ltd",
      "event_type": "board_meeting",
      "scheduled_date": "2026-08-28",
      "importance": 7,
      "expected_direction": "positive",
      "conviction": 0.62,
      "agenda": [
        "Consider and approve Q1 FY27 results"
      ],
      "status": "upcoming"
    }
  ],
  "has_more": false
}

Authorization

Authorizationstringheaderrequired

Your API key as a bearer token: Bearer ck_live_…. Keys are server-side credentials and are never accepted in a query string.

Query parameters

fromstring<date>

Only events scheduled on or after this date.

tostring<date>

Only events scheduled on or before this date.

isinstring

Exact ISIN.

tickerstring

Exchange ticker. May match more than one ISIN.

event_typestring

board_meeting | earnings_results | dividend | agm | …

importance_minnumber

Only events at or above this importance.

Required range: 0 <= x <= 10

statusstring

upcoming | past.

cursorstring

Opaque pagination cursor.

limitintegerdefault:50

Required range: 1 <= x <= 200

Response200 · application/json

dataV1Event[]required
next_cursorstring

Pass as ?cursor= to fetch the next page. Null when the feed is exhausted.

has_morebooleanrequired