Intelligence
/insights
Returns curated intelligence globally or for exactly one resolved asset or non-asset subject. The unscoped response spans all supported asset classes and subjects. 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.
Example:50
Number of results skipped.
Example:0
Only items starting after this RFC3339 time.
Example:2026-08-01T00:00:00Z
Only items starting before this RFC3339 time.
Example:2026-08-07T00:00:00Z
Comma-separated tags.
Example:earnings,regulation
Comma-separated excluded tags.
Example:rumour
Comma-separated categories.
Example:company,macro
Comma-separated domains.
Example:equities,macro
Result ordering. Defaults to updated_at_desc.
start_time_ascstart_time_descupdated_at_ascupdated_at_desccreated_at_asccreated_at_descimportance_score_ascimportance_score_desc
Default:updated_at_desc
cURL Example
curl --request GET \
--url 'https://nebula-api.hiddensystems.ai/api/v1/public/insights' \
--header 'X-API-Key: YOUR_API_KEY'
Responses
Media type application/json
insights
array<object>
Curated intelligence items matching the supplied filters.
insights
Curated intelligence items matching the supplied filters.
insights[].category
Primary intelligence category when assigned.
insights[].domains
Market or subject domains attached to the record.
insights[].entities
array<object>
Assets and non-asset subjects linked to this record.
insights[].entities
Assets and non-asset subjects linked to this record.
insights[].entities[].entity_id
Canonical knowledge-graph identifier for the linked entity. Use /assets or /subjects to resolve request selectors.
insights[].entities[].entity_types
Knowledge-graph classifications for the linked entity.
insights[].entities[].is_direct
True when the record directly concerns this linked entity.
insights[].entities[].is_primary
True when this is the record's primary linked entity.
insights[].entities[].name
Human-readable name.
insights[].entities[].role
Relationship of the linked entity to the intelligence item.
insights[].headline
Concise intelligence headline.
insights[].importance_score
Relative importance score from 1 to 10.
insights[].insight_id
Stable identifier for the intelligence item.
insights[].sentiment_score
Signed sentiment score; positive is bullish and negative is bearish.
insights[].start_time
UTC time when the intelligence item or event starts.
insights[].summary
Evidence-grounded summary of the intelligence item.
insights[].tags
Searchable labels attached to the record.
insights[].updated_at
UTC time when the record was last updated.
{
"insights": [
{
"category": "earnings",
"domains": [
"equities",
"technology"
],
"entities": [
{
"entity_id": "eq:NVDA",
"entity_types": [
"equity"
],
"is_direct": true,
"is_primary": true,
"name": "NVIDIA Corporation",
"role": "primary"
}
],
"headline": "NVIDIA raises its quarterly revenue outlook",
"importance_score": 8,
"insight_id": 38421,
"sentiment_score": 61,
"start_time": "2026-08-20T20:00:00Z",
"summary": "Management raised guidance after stronger-than-expected data-centre demand.",
"tags": [
"earnings",
"data_centres"
],
"updated_at": "2026-08-07T14:35:00Z"
}
]
}