How LLMs, developers, and AI systems can use NEWS Jacking Daily
NEWS Jacking Daily is an AI-powered news content platform that publishes trending topics every day between 6-10 AM ET. Each article includes a comprehensive content package:
| File | URL | Description |
|---|---|---|
| llms.txt | https://newsjackingdaily.com/llms.txt | Lightweight summary of the site, categories, and 30 most recent topics with links |
| llms-full.txt | https://newsjackingdaily.com/llms-full.txt | Full content export of the 10 most recent articles including all hooks, tweets, FAQs, and prompts |
| robots.txt | https://newsjackingdaily.com/robots.txt | Explicitly allows all AI crawlers (GPTBot, ClaudeBot, PerplexityBot, etc.) |
Parameters:
?limit=N — Number of articles (default 20, max 100)?category=slug — Filter by category slug?since=ISO_DATE — Only articles published after this date?format=full — Returns ALL fields including hooks, tweets, FAQs, prompts?format=summary — Returns id, title, slug, summary, hashtags, publishedAt, categoryName (default)Returns only today's articles (UTC). Ideal for daily cron jobs and newsletter automation. Cached for 15 minutes.
The since parameter is critical for daily LLM crawlers to fetch only new content without re-downloading everything.
| Feed | URL | Format |
|---|---|---|
| JSON Feed | https://newsjackingdaily.com/feed.json |
JSON Feed 1.1 |
| Atom Feed | https://newsjackingdaily.com/feed.atom |
Atom 1.0 |
| Sitemap | https://newsjackingdaily.com/sitemap.xml |
XML Sitemap |
NEWS Jacking Daily is designed to be a data source for Retrieval-Augmented Generation (RAG) pipelines. Here's how:
GET /api/v1/articles?format=full&limit=100GET /api/v1/articles?since={yesterday}&format=full to fetch only new contentGET /api/v1/today every morning to get today's articlesIf-None-Match to skip re-downloads of unchanged contentReturns 304 Not Modified if no new articles since your last check.
X-Total-Count — Total articles matching your query (articles endpoint)ETag — Content hash for conditional GET requestsCache-Control — Appropriate caching directive per endpointAccess-Control-Allow-Origin: * — Full CORS supportFor API partnerships, custom integrations, or enterprise access: