Token intelligence
/token/{id}/intelligence
Paginated curated intelligence for the token. Filter by time range, tags, and order.
Parameters
Token identifier. Accepts internal token_id (integer) or coingecko_id (string, e.g. bitcoin).
Example:bitcoin
Maximum number of items to return (default and max may vary by endpoint).
Example:50
Number of items to skip for pagination (use with limit).
Example:0
Return insights that start after this ISO 8601 date-time.
Example:2026-01-01T00:00:00Z
Return insights that start before this ISO 8601 date-time.
Example:2026-01-01T00:00:00Z
Return insights last updated after this ISO 8601 date-time.
Example:string
Return insights last updated before this ISO 8601 date-time.
Example:string
Filter insights by tags (comma-separated; include only insights with any of these tags).
Example:top_callers
Exclude insights that have any of these tags (comma-separated).
Example:string
Sort order for insights.
start_time_ascstart_time_descupdated_at_ascupdated_at_desccreated_at_asccreated_at_descimportance_score_ascimportance_score_desc
Example:start_time_asc
cURL Example
curl --request GET \
--url 'https://nebula-api.hiddensystems.ai/api/v1/public/token/bitcoin/intelligence' \
--header 'X-API-Key: YOUR_API_KEY'
Responses
Media type application/json
insights
array<object>
Paginated intelligence records related to the token.
insights
Paginated intelligence records related to the token.
insights[].accounts
array<object>
No description provided.
insights[].accounts
No description provided.
insights[].accounts[].author_id
Internal Nebula author identifier for this account.
insights[].accounts[].avatar_url
URL of the account’s avatar image.
insights[].accounts[].display_name
Display name of the author account.
insights[].accounts[].handle
No description provided.
insights[].accounts[].screen_name
Screen name or handle on the source platform.
insights[].accounts[].source
Origin/source of the insight data.
insights[].accounts[].source_user_id
Identifier for the author on the source platform.
insights[].category
No description provided.
insights[].headline
No description provided.
insights[].id
No description provided.
insights[].importance_score
Relative importance score for the insight (higher is more important).
insights[].primary_subject
object
No description provided.
insights[].primary_subject
No description provided.
insights[].primary_subject.account
object
No description provided.
insights[].primary_subject.account
No description provided.
insights[].primary_subject.account.author_id
Internal Nebula author identifier for this account.
insights[].primary_subject.account.avatar_url
URL of the account’s avatar image.
insights[].primary_subject.account.display_name
Display name of the author account.
insights[].primary_subject.account.handle
No description provided.
insights[].primary_subject.account.screen_name
Screen name or handle on the source platform.
insights[].primary_subject.account.source
Origin/source of the insight data.
insights[].primary_subject.account.source_user_id
Identifier for the author on the source platform.
insights[].primary_subject.project
object
No description provided.
insights[].primary_subject.project
No description provided.
insights[].primary_subject.project.handle
No description provided.
insights[].primary_subject.project.image_url
Project or token logo URL.
insights[].primary_subject.project.internal_id
Internal Nebula identifier for the account or project.
insights[].primary_subject.project.name
Display name.
insights[].primary_subject.project.symbol
Token symbol.
insights[].primary_subject.type
No description provided.
insights[].projects
array<object>
No description provided.
insights[].projects
No description provided.
insights[].projects[].handle
No description provided.
insights[].projects[].image_url
Project or token logo URL.
insights[].projects[].internal_id
Internal Nebula identifier for the account or project.
insights[].projects[].name
Display name.
insights[].projects[].symbol
Token symbol.
insights[].sentiment
No description provided.
insights[].start_time
When the insight became active or relevant (UTC).
insights[].summary
Summary output for the endpoint.
insights[].tags
Tag selectors applied to the request.
insights[].updated_at
Last time the insight record was updated (UTC).
{
"insights": [
{
"accounts": [
{
"author_id": 0,
"avatar_url": "string",
"display_name": "string",
"handle": "string",
"screen_name": "string",
"source": "string",
"source_user_id": "string"
}
],
"category": "string",
"headline": "string",
"id": 0,
"importance_score": 0,
"primary_subject": {
"account": {
"author_id": 0,
"avatar_url": "string",
"display_name": "string",
"handle": "string",
"screen_name": "string",
"source": "string",
"source_user_id": "string"
},
"project": {
"handle": "string",
"image_url": "string",
"internal_id": 0,
"name": "string",
"symbol": "string"
},
"type": "string"
},
"projects": [
{
"handle": "string",
"image_url": "string",
"internal_id": 0,
"name": "string",
"symbol": "string"
}
],
"sentiment": 0,
"start_time": "2026-01-15T12:00:00Z",
"summary": "string",
"tags": [
"string"
],
"updated_at": "2026-01-15T12:00:00Z"
}
]
}