> ## Documentation Index
> Fetch the complete documentation index at: https://docs.dexi.net/llms.txt
> Use this file to discover all available pages before exploring further.

# Published Feeds

> Read a published Dexi feed as JSON or RSS — no authentication

Dexi users can publish curated, tag-filtered feeds of their notes. Feeds shared as **public** or **link-only** are readable by anyone who has the feed's UUID — no credentials; private feeds return `404` (existence is never confirmed). These are consumption endpoints for feed readers and site embeds, not a general read API.

## RSS

```
GET https://api.dexi.net/api/v2/publisher/feeds/{feed_id}/rss
```

Returns standard RSS 2.0 (`application/rss+xml`) — point any feed reader at it. This is the URL shown on a feed's public page at `app.dexi.net/feeds/{feed_id}`.

## JSON

```
GET https://api.dexi.net/api/v2/publisher/feeds/{feed_id}/public
```

```json Example response theme={null}
{
  "id": "d6a1b8c2-4e5f-4a7b-9c3d-1e2f3a4b5c6d",
  "title": "Signals in AI Infrastructure",
  "description": "What I'm reading on the picks-and-shovels layer.",
  "author": "Julian Gay",
  "rss_url": "https://api.dexi.net/api/v2/publisher/feeds/d6a1b8c2-4e5f-4a7b-9c3d-1e2f3a4b5c6d/rss",
  "entries": [
    {
      "id": "2982e9b4-19fe-40fd-9a69-e23d45e53b13",
      "title": "Attention Is All You Need",
      "text": "Reading notes on the transformer paper — the key insight is…",
      "updated": "2026-08-02T18:40:11+00:00"
    }
  ]
}
```

Entries are the publisher's notes matching the feed's tag filter, newest first. `updated` may be `null` on rare legacy notes.

## Errors

| Status | Meaning                                          |
| ------ | ------------------------------------------------ |
| `404`  | Unknown feed id, or a private feed you don't own |
