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

# RSS and Atom feeds

> Copy and use your secure Paperzilla RSS/Atom feed URL in external feed readers.

export const AiAgents = ({path}) => <Tip>
    <b>AI agents</b>: This page is available as <a href={path + '.md'}>markdown</a>. See also the <a href="/llms.txt">docs index</a> and <a href="/llms-full.txt">full docs</a>.
  </Tip>;

<AiAgents path="/guides/feeds" />

Every project supports a secure RSS/Atom feed URL.

## Get your feed URL

From the project page:

1. Click **Copy RSS/Atom URL**.
2. Paste the URL into your feed reader.

From the CLI:

```bash theme={null}
pz feed <project-id> --atom
```

## Use in feed readers

The URL works with common readers such as:

* Feedly
* NetNewsWire
* Vienna RSS
* Any reader that accepts Atom or RSS URLs

## Security model

The URL includes a personal token in the query string.

* Treat the URL like a secret.
* Anyone with the URL can read that project feed.
* Use private sharing practices when storing or sending it.

## Feed URL format

Paperzilla generates URLs in this form:

```text theme={null}
https://paperzilla.ai/api/feed/atom/<project-id>?token=<personal-token>
```

See [API reference: RSS/Atom feed endpoint](/api-reference/rss-atom-feed).
