What is JSON Feed Starter Generator?
JSON Feed is a modern feed format similar to RSS but in JSON. It is easier to parse for JavaScript apps and modern feed readers. It has a clear spec at jsonfeed.org and supports title, URL, description, items, and author fields.
Quick answer
JSON Feed is a modern machine-readable feed format in JSON that serves the same purpose as RSS. Publish feed.json alongside feed.xml to support both legacy and modern feed readers.
Limitations
- JSON Feed version 1.1 is generated. Future versions of the spec may introduce fields that this tool does not yet support.
- Fewer feed readers support JSON Feed compared to RSS. Many readers still rely on RSS for feed discovery and subscription.
- The feed is a static JSON file and must be manually updated when new entries are published. It does not auto-detect new content.
How to use this tool
- Enter the site title, URL, description, and author name for the feed channel.
- Add posts one per line using the format: title|url|date|content.
- Review the generated JSON and validate that all URLs are absolute.
- Save the file as feed.json at your site root and link it from the HTML head.
What you can use it for
- Create a JSON Feed for a static blog alongside an existing RSS feed.
- Build a machine-readable content API for your static site.
- Add a feed for JavaScript-based feed readers and microblogging clients that prefer JSON over XML.