Calendar events
/calendar-events
Returns market events globally or for exactly one resolved asset or non-asset subject. By default, the global response starts at the current UTC day; use time bounds to request history. Asset selectors support equities, commodities, indices, and crypto assets returned by GET /assets; commodity and index IDs use asset_class=equity. Parameter rules: asset_class requires asset_id. asset_id requires asset_class. subject_id and asset_class cannot be combined. subject_id and asset_id cannot be combined.
Parameters
Canonical identifier returned by /assets. Stock, commodity, and index IDs are normally ticker or market symbols and use asset_class=equity; crypto IDs are canonical crypto slugs. asset_class is mandatory whenever asset_id is present.
Example:NVDA
Namespace of asset_id, or the market class for endpoints with a class-scoped global view. Stocks, commodities, and indices use equity. Equity is the documented default only where the endpoint description states a default.
equitycrypto
Example:equity
Canonical non-asset identifier returned by /subjects. It cannot be combined with asset_id or asset_class.
Example:person:donald_trump
Maximum results returned.
Default:50
Number of results skipped.
Default:0
Only events starting after this RFC3339 time.
Example:2026-08-01T00:00:00Z
Only events starting before this RFC3339 time.
Example:2026-08-07T00:00:00Z
Comma-separated domains.
Example:equities,macro
Comma-separated event types.
Example:earnings,macro_release
Comma-separated event statuses.
Example:confirmed,scheduled
Minimum importance score. Defaults to 3; use 1 to include routine events.
Example:7
cURL Example
curl --request GET \
--url 'https://nebula-api.hiddensystems.ai/api/v1/public/calendar-events' \
--header 'X-API-Key: YOUR_API_KEY'
Responses
Media type application/json
calendar_events
array<object>
Calendar events matching the supplied filters.
calendar_events
Calendar events matching the supplied filters.
calendar_events[].calendar_event_id
Stable public identifier for the calendar event.
calendar_events[].confidence_score
Confidence score assigned by the event pipeline.
calendar_events[].created_at
UTC time when the record was created.
calendar_events[].domains
Market or subject domains attached to the record.
calendar_events[].end_time
UTC event end time when known.
calendar_events[].entities
array<object>
Assets and non-asset subjects linked to this record.
calendar_events[].entities
Assets and non-asset subjects linked to this record.
calendar_events[].entities[].confidence
Entity-link confidence when available.
calendar_events[].entities[].entity_id
Canonical knowledge-graph identifier for the linked entity. Use /assets or /subjects to resolve request selectors.
calendar_events[].entities[].is_primary
True when this is the record's primary linked entity.
calendar_events[].entities[].name
Human-readable name.
calendar_events[].entities[].role
Relationship of the linked entity to the calendar event.
calendar_events[].event_metadata
Event-type-specific structured metadata. Keys vary by event type.
calendar_events[].event_subtype
More specific event classification when available.
calendar_events[].event_type
High-level event classification.
calendar_events[].importance_score
Relative importance score from 1 to 10.
calendar_events[].long_term_impact_score
Estimated long-term market impact score.
calendar_events[].macro_impact_score
Estimated macroeconomic impact score.
calendar_events[].price_impact_score
Estimated direct price-impact score.
calendar_events[].short_term_impact_score
Estimated short-term market impact score.
calendar_events[].source_count
Number of sources supporting the event.
calendar_events[].sources
array<object>
Source records supporting the parent response.
calendar_events[].sources
Source records supporting the parent response.
calendar_events[].sources[].external_id
Identifier assigned by the external source.
calendar_events[].sources[].provider
Upstream data provider when available.
calendar_events[].sources[].published_at
UTC publication time.
calendar_events[].sources[].publisher
Original publisher when available.
calendar_events[].sources[].source
Source platform or feed.
calendar_events[].sources[].subtype
Source subtype.
calendar_events[].sources[].trusted
Whether the source is classified as trusted.
calendar_events[].sources[].url
Public source URL when available.
calendar_events[].start_time
UTC time when the intelligence item or event starts.
calendar_events[].status
Current lifecycle status of the event.
calendar_events[].summary
Evidence-grounded summary of the intelligence item.
calendar_events[].tags
Searchable labels attached to the record.
calendar_events[].tail_risk_impact_score
Estimated tail-risk impact score.
calendar_events[].time_precision
Precision of the published event time.
calendar_events[].title
Human-readable event title.
calendar_events[].trusted_source_count
Number of supporting sources marked trusted.
calendar_events[].updated_at
UTC time when the record was last updated.
{
"calendar_events": [
{
"calendar_event_id": "earnings:nvda:2026-q3",
"confidence_score": 96,
"created_at": "2026-08-06T10:00:00Z",
"domains": [
"equities",
"technology"
],
"end_time": "2026-08-20T21:00:00Z",
"entities": [
{
"confidence": 0.98,
"entity_id": "eq:NVDA",
"is_primary": true,
"name": "NVIDIA Corporation",
"role": "affected"
}
],
"event_metadata": {
"fiscal_quarter": "Q3",
"fiscal_year": 2026
},
"event_subtype": "quarterly_results",
"event_type": "earnings",
"importance_score": 8,
"long_term_impact_score": 7,
"macro_impact_score": 5,
"price_impact_score": 9,
"short_term_impact_score": 8,
"source_count": 4,
"sources": [
{
"external_id": "0001045810-26-000123",
"provider": "SEC EDGAR",
"published_at": "2026-08-07T14:30:00Z",
"publisher": "NVIDIA Corporation",
"source": "sec",
"subtype": "filing",
"trusted": true,
"url": "https://www.sec.gov/Archives/edgar/data/1045810/example.htm"
}
],
"start_time": "2026-08-20T20:00:00Z",
"status": "scheduled",
"summary": "Management raised guidance after stronger-than-expected data-centre demand.",
"tags": [
"earnings",
"data_centres"
],
"tail_risk_impact_score": 3,
"time_precision": "exact",
"title": "NVIDIA Q3 2026 earnings",
"trusted_source_count": 3,
"updated_at": "2026-08-07T14:35:00Z"
}
]
}