> ## 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/Atom feed endpoint

> URL format and usage notes for Paperzilla project RSS/Atom feeds.

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="/api-reference/rss-atom-feed" />

The project feed URL is generated per user and project.

## URL format

```text theme={null}
GET /api/feed/atom/{projectId}?token={feedToken}
```

Example:

```text theme={null}
https://paperzilla.ai/api/feed/atom/123e4567-e89b-12d3-a456-426614174000?token=pzft_xxx
```

## Parameters

* `projectId`: project UUID
* `token`: personal feed token tied to your account

## How to obtain a URL

Use one of these:

* Project page button: **Copy RSS/Atom URL**
* CLI: `pz feed <project-id> --atom`

## Paper links

Each feed entry links to its Paperzilla paper page. From that page you can open the source landing page and, when available, a PDF. PubMed papers link onward to their PubMed record; a PDF is not guaranteed.

## Security notes

* Treat feed URLs as secrets.
* Anyone with the URL can read that feed.
* Do not publish personal tokenized URLs in public repos or docs.
