JSON Feed

Similar to RSS and Atom but in JSON, which is far easier to read and write than XML. And because of the lightness of JSON and simplicity of the JSON Feed format, it's more appealing for developers and designers.

 

Here’s a simple example:

{
    "version": "https://jsonfeed.org/version/1",
    "title": "My Example Feed",
    "home_page_url": "https://example.org/",
    "feed_url": "https://example.org/feed.json",
    "items": [
        {
            "id": "2",
            "content_text": "This is a second item.",
            "url": "https://example.org/second-item"
        },
        {
            "id": "1",
            "content_html": "<p>Hello, world!</p>",
            "url": "https://example.org/initial-post"
        }
    ]
}
  • Juan Villela
  • Jun 30 2017