Data Sources
22 sources configuredRSS Feed
12 sourcesREST API Access
All endpoints (except /api/health) require a Bearer token in the Authorization header.
# Example request
curl -H "Authorization: Bearer YOUR_API_SECRET_KEY" https://your-domain.manus.space/api/news
# With filters
curl -H "Authorization: Bearer YOUR_API_SECRET_KEY" "…/api/news?category=ai-agentic&pageSize=50"
GET/api/healthHealth check (no auth required)
GET/api/newsList articles — supports search, category, source, dateFrom, dateTo, cveId, page, pageSize, sortBy, sortDir
GET/api/news/:idSingle article by ID
GET/api/sourcesList all configured sources
GET/api/statsAggregated counts by category and source
GET/api/jobsScrape job history (add ?limit=N)
⚠Requests without a valid token receive HTTP 401 Unauthorized. Your
API_SECRET_KEY is managed in Settings → Secrets.