news
InvokeGet latest news from the news xInfos API with AI analysis and scraping of various sources
No input schema provided. Expect bare JSON payload.
Output Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"success": {
"type": "boolean"
},
"data": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"title": {
"type": "string"
},
"content": {
"type": "string"
},
"source": {
"type": "string"
}
},
"required": [
"id",
"title",
"content",
"source"
],
"additionalProperties": false
}
}
},
"required": [
"success",
"data"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'http://xinfos-x402-backend-production.up.railway.app/entrypoints/news/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {}
}
'