For AI & LLMs

How LLMs, developers, and AI systems can use NEWS Jacking Daily

What Is 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:

  • AI-generated summary and trend analysis
  • 12 unique content hooks for any platform
  • 10 ready-to-post tweets
  • LinkedIn post prompts
  • TikTok script prompts
  • Newsletter section prompts
  • Facebook conversation starters
  • Meme generation prompts
  • Frequently Asked Questions (Q&A)
  • Hot takes and conversation topics
  • Video topic suggestions
  • Research prompts for Perplexity & ChatGPT

LLM-Friendly Files

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.)

API Endpoints

Articles API

curl "https://newsjackingdaily.com/api/v1/articles?format=summary&limit=20"

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)

Today's Articles

curl "https://newsjackingdaily.com/api/v1/today"

Returns only today's articles (UTC). Ideal for daily cron jobs and newsletter automation. Cached for 15 minutes.

Single Article

curl "https://newsjackingdaily.com/api/v1/articles/{slug}"

Categories & Tags

curl "https://newsjackingdaily.com/api/v1/categories"
curl "https://newsjackingdaily.com/api/v1/tags"

Fetch Only New Articles (Since Yesterday)

curl "https://newsjackingdaily.com/api/v1/articles?since=2026-03-13T00:00:00Z&format=full"

The since parameter is critical for daily LLM crawlers to fetch only new content without re-downloading everything.

Feeds

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

Building a RAG Pipeline

NEWS Jacking Daily is designed to be a data source for Retrieval-Augmented Generation (RAG) pipelines. Here's how:

  1. Initial Load: Fetch all articles with GET /api/v1/articles?format=full&limit=100
  2. Daily Sync: Use GET /api/v1/articles?since={yesterday}&format=full to fetch only new content
  3. Or: Use GET /api/v1/today every morning to get today's articles
  4. Embed: Each article's summary, hooks, tweets, and FAQs make excellent embedding chunks
  5. ETag Support: All endpoints return ETag headers. Use If-None-Match to skip re-downloads of unchanged content

Example: Daily Sync Script

curl -H "If-None-Match: \"previous-etag\"" "https://newsjackingdaily.com/api/v1/today"

Returns 304 Not Modified if no new articles since your last check.

Response Headers

  • X-Total-Count — Total articles matching your query (articles endpoint)
  • ETag — Content hash for conditional GET requests
  • Cache-Control — Appropriate caching directive per endpoint
  • Access-Control-Allow-Origin: * — Full CORS support

Contact

For API partnerships, custom integrations, or enterprise access: