news
InvokeGet the latest curated crypto news by category. Returns the 10 most recent headlines with sentiment, context, and sources.
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"feed_categories": {
"type": "string",
"description": "Comma-separated list of feed categories. Available: ai, ai_agents, base, bitcoin, crypto, dats, defi, ethereum, hyperliquid, machine_learning, macro, perps, rwa, ripple, solana, tech"
},
"from_date": {
"description": "Start date (YYYY-MM-DD format)",
"type": "string"
},
"to_date": {
"description": "End date (YYYY-MM-DD format)",
"type": "string"
}
},
"required": [
"feed_categories"
],
"additionalProperties": false
}
Output Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"items": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"signal": {
"type": "string"
},
"sentiment": {
"type": "string"
},
"sentiment_value": {
"type": "number"
},
"timestamp": {
"type": "number"
},
"feed_categories": {
"type": "array",
"items": {
"type": "string"
}
},
"short_context": {
"type": "string"
},
"long_context": {
"type": "string"
},
"sources": {
"type": "array",
"items": {
"type": "string"
}
},
"author": {
"type": "string"
},
"tokens": {
"type": "array",
"items": {
"type": "string"
}
},
"tweet_url": {
"type": "string"
}
},
"required": [
"id",
"signal",
"sentiment",
"sentiment_value",
"timestamp",
"feed_categories",
"short_context",
"long_context",
"sources",
"author",
"tokens",
"tweet_url"
],
"additionalProperties": false
}
}
},
"required": [
"items"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://lucid.itsgloria.ai/entrypoints/news/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"feed_categories": "<Comma-separated list of feed categories. Available: ai, ai_agents, base, bitcoin, crypto, dats, defi, ethereum, hyperliquid, machine_learning, macro, perps, rwa, ripple, solana, tech>"
}
}
'