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

# Share individual artifacts

> Send a single diagram or code-diff without the whole video.

## What's an artifact?

Every scene in a pull story — architecture diagram, sequence diagram, file impact view, code diff, blast-radius map — is saved as a standalone **artifact**. Each has its own URL, its own download, its own share link.

This is useful when you want to reference *just the auth-flow diagram* in a design doc, or *just the migration diff* in a code review comment.

## Get the artifact URL

Open any pull story, hover an artifact, click the **share icon**. The link goes to:

```
https://pullstory.com/a/{owner}/{repo}/{number}/{artifactId}
```

For brief-generated stories, links use the story ID:

```
https://pullstory.com/a/s/{storyId}/{artifactId}
```

<Frame>
  <img src="https://pullstory.com/brand/artifact-share.png" alt="Artifact share UI" />
</Frame>

## Download formats

| Type           | Formats                                      |
| -------------- | -------------------------------------------- |
| `diagram`      | SVG                                          |
| `code-diff`    | JSON (with syntax-highlighted tokens), patch |
| `file-impact`  | JSON                                         |
| `callout-card` | JSON                                         |
| `blast-radius` | SVG                                          |
| `ship-check`   | JSON                                         |

## Embed a single artifact

```html theme={null}
<iframe
  src="https://pullstory.com/a/s/brief_0123abcd4567ef89/artifact_01hq..."
  width="100%"
  height="480"
  frameborder="0"
/>
```

## Keeping links stable

Artifact IDs are stable for a generated story. If you generate a new story from a different brief, it will have its own artifact links.
