Post feeds (RSS/JSON)
Jomo exposes creator, project, and platform-wide feeds so readers and tools can subscribe to new published posts.
Available feeds
- Global RSS:
/feed.xml - Global JSON Feed:
/feed.json - Creator RSS:
/creators/:id/feed.xml - Creator JSON Feed:
/creators/:id/feed.json - Project RSS:
/projects/:slug/feed.xml - Project JSON Feed:
/projects/:slug/feed.json
Rules and behavior
- Feeds include published posts only.
- Items are sorted by publish date, newest first.
- Each feed is capped to recent entries for performance.
- Responses are cacheable with short-lived cache headers.
- Every feed response includes
ETagandLast-Modifiedheaders. - Conditional requests are supported via
If-None-MatchandIf-Modified-Since, returning304 Not Modifiedwhen unchanged.
Query options
?content=full(default) returns full post HTML in feed item content.?content=excerptreturns excerpt-only item content while preserving summaries.?lang=en-USoptionally sets feed language metadata for RSS and JSON Feed.
Autodiscovery
Jomo pages expose feed autodiscovery tags in HTML head so feed readers can detect feeds without manual URL entry.
Creator and project pages also include visible RSS and JSON feed subscribe buttons for direct discovery.
Integration notes
- Use RSS for maximum compatibility with existing feed readers.
- Use JSON Feed for app integrations and custom tooling.
- Use conditional requests to avoid re-downloading unchanged feeds.
- Prefer project feeds for campaign-specific update streams.
- Prefer creator feeds for full creator activity across projects.