events
List events
Forward-dated corporate events extracted from filings — the results calendar.
GET
/v1/eventsList 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
AuthorizationstringheaderrequiredYour 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.
isinstringExact ISIN.
tickerstringExchange ticker. May match more than one ISIN.
event_typestringboard_meeting | earnings_results | dividend | agm | …
importance_minnumberOnly events at or above this importance.
Required range: 0 <= x <= 10
statusstringupcoming | past.
cursorstringOpaque pagination cursor.
limitintegerdefault:50Required range: 1 <= x <= 200
Response200 · application/json
dataV1Event[]requirednext_cursorstringPass as ?cursor= to fetch the next page. Null when the feed is exhausted.
has_morebooleanrequired