Drupal.org

The JSON Feed format is a pragmatic syndication format, like RSS and Atom, but with one big difference: it’s JSON instead of XML.

This module extends Views to provide a feed in the JSON Feed syndication format display plugin.

JSON Feed example feed output:

{
    "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"
        }
    ]
}

For details on the JSON Feed format, see the v1 spec.

Supporting organizations: 

Project information

Releases

2.0.2 Stable release covered by the Drupal Security Team released 13 June 2023

Works with Drupal: ^9 || ^10

Bug fix

Install:

Development version: 2.x-dev updated 22 Feb 2026 at 17:37 UTC

Read the original on drupal.org ↗