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

# Feedback board

> Embed a public board of your product's feedback on any site with one script tag.

A feedback board is a public, embeddable snapshot of your feedback log. From the dashboard's
Feedback page, filter to a domain (plus any search, project, key, or date filters), then click
**Export board**. Every matching entry is frozen into a published board, and the dialog hands you
one script tag. Boards are available on business accounts.

## Add the script tag

Paste the tag from the export dialog wherever the board should appear:

```html theme={null}
<script src="https://tryproduck.com/sdk/board.js" data-board="YOUR_BOARD_ID" defer></script>
```

The board renders in place of the script tag by default. To control placement, add an empty
container anywhere on the page:

```html theme={null}
<div data-produck-board></div>
<script src="https://tryproduck.com/sdk/board.js" data-board="YOUR_BOARD_ID" defer></script>
```

| Attribute     | Required    | Description                                                                                                                          |
| ------------- | ----------- | ------------------------------------------------------------------------------------------------------------------------------------ |
| `src`         | yes         | The hosted embed: `https://tryproduck.com/sdk/board.js`. Load it from this URL so you always get updates.                            |
| `data-board`  | yes         | The board id from the export dialog.                                                                                                 |
| `data-target` | optional    | A CSS selector for the container to render into. Falls back to `[data-produck-board]`, then to rendering in place of the script tag. |
| `defer`       | recommended | Loads the embed without blocking your page render.                                                                                   |

No API key is needed — the board id is the only credential, and only published boards are served.

## What appears on a board

Each entry shows its title, description (or the first written annotation, capped at 280
characters), the page path it was left on, and the date. Submitter names and emails, audio,
screenshots, and session replays never appear. Spam never appears.

## Snapshot semantics

A board is frozen at export time: feedback that arrives later — even matching the same filters —
does not appear on an existing board. Click **Export board** again for a fresh snapshot (each
export mints a new board id and tag). If a domain claim is revoked, that domain's entries drop off
every published board immediately.
