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

# Sharing & exporting

> Publish analyses, share conversations, and export data from FlipsideAI

FlipsideAI makes it easy to share your work—whether it's a single chart, a full report, or an entire
conversation.

## Sharing artifacts

**Artifacts** are rich, formatted outputs with graphs, charts, and interactive elements. They're
designed to be shared.

### Publishing an artifact

<Steps>
  <Step title="Create an artifact">
    Ask FlipsideAI to generate a shareable output:

    * "Create a report on Aave vs Compound TVL"
    * "Build an interactive dashboard for Uniswap volumes"
  </Step>

  <Step title="Click 'Publish Artifact'">
    Once the artifact is generated, look for the **Publish Artifact** button
  </Step>

  <Step title="Copy the link">
    A public URL is generated—anyone with the link can view the artifact
  </Step>

  <Step title="Share">
    Post on Twitter, send to colleagues, or embed in presentations
  </Step>
</Steps>

### What gets shared

* **The artifact itself**: Charts, tables, formatted text
* **Not the conversation**: The underlying chat is not included
* **Static snapshot**: The artifact doesn't update automatically (it's a point-in-time export)

### Use cases

<AccordionGroup>
  <Accordion title="Twitter-ready visuals" icon="twitter">
    Generate a polished chart and publish it:

    ```text theme={null}
    "Create a Twitter-ready chart showing ETH DEX volumes across L2s.
    Use bold colors and a 16:9 aspect ratio."
    ```

    Publish the artifact, copy the link, tweet it.
  </Accordion>

  <Accordion title="Client reports" icon="file-chart-pie">
    Create a multi-section report:

    ```text theme={null}
    "Build a comprehensive report on Arbitrum DeFi activity in Q1 2024.
    Include TVL trends, user growth, and top protocols."
    ```

    Publish and share the link with clients.
  </Accordion>

  <Accordion title="Research findings" icon="flask">
    Document your analysis:

    ```text theme={null}
    "Generate a report summarizing my findings on stablecoin flows
    between Ethereum and L2s."
    ```

    Publish and reference it in papers, blog posts, or community discussions.
  </Accordion>
</AccordionGroup>

## Sharing conversations

Want to share the entire conversation, not just an artifact? Make the chat public.

### Making a chat public

<Steps>
  <Step title="Close artifacts">
    If any artifacts are open, close them to reveal the purple **Share** button in the top right
  </Step>

  <Step title="Click 'Share'">The Share button toggles the chat's visibility</Step>

  <Step title="Set to public">Confirm that you want to make the conversation public</Step>

  <Step title="Copy the link">
    Share the URL with anyone—they'll see the full conversation, including all artifacts
  </Step>
</Steps>

### What gets shared

* **The full conversation**: Every message, every query, every result
* **All artifacts**: Anyone can view artifacts generated in the chat
* **Queries and data**: People can expand Flipside Data boxes to see your SQL and results

### Use cases

<AccordionGroup>
  <Accordion title="Tutorials and examples" icon="book-open">
    Walk others through your methodology:

    * Show how you structured a complex analysis
    * Demonstrate best practices for querying specific data
    * Create reusable templates for common questions
  </Accordion>

  <Accordion title="Collaboration with external partners" icon="handshake">
    Share a conversation with someone outside your [Team](/flipsideai/teams): - Get feedback on your
    approach - Allow them to fork and extend your analysis - Coordinate on joint research
  </Accordion>

  <Accordion title="Community contributions" icon="users">
    Publish your work to the broader crypto community:

    * Add to the [Prompt Library](https://science.flipsidecrypto.xyz/built-by-ai/)
    * Share insights on Twitter, Discord, or forums
    * Help others learn from your analyses
  </Accordion>
</AccordionGroup>

### Privacy considerations

<Warning>
  Once a chat is public, **anyone with the link** can view it. This includes:

  * All your prompts
  * All results and data
  * Any uploaded CSVs (if you used them)

  Don't share chats containing:

  * Confidential client information
  * Proprietary methodologies you want to keep private
  * Personal or sensitive data

  Use [Teams](/flipsideai/teams) for private collaboration instead.
</Warning>

## Exporting data

### CSV download

Every query result can be downloaded as CSV. See
[Working with data & results](/flipsideai/data-and-results#downloading-data) for details.

### MCP integration

Use the Model Context Protocol (MCP) to access Flipside data in external tools like Cursor, Claude
Desktop, or VS Code.

**Learn more:** [Flipside MCP documentation](/flipsideai/mcp-server)

### Snowflake data shares

For large-scale data access, use Flipside's Snowflake data shares to query raw blockchain data
directly.

**Learn more:** [Snowflake Data Shares](/snowflake-data-shares/overview)

## Teams vs public sharing

<Tabs>
  <Tab title="Private (Teams)">
    **Best for:**

    * Internal collaboration
    * Client work
    * Confidential analyses

    **Who can see it:**

    * Only team members

    **How to set up:**
    See [Teams documentation](/flipsideai/teams)
  </Tab>

  <Tab title="Public sharing">
    **Best for:**

    * Community contributions
    * Tutorials and examples
    * Marketing/promotion

    **Who can see it:**

    * Anyone with the link

    **How to set up:**
    Click the purple **Share** button (top right)
  </Tab>
</Tabs>

## Updating shared content

### Artifacts are static

Once published, artifacts **do not update automatically**. If the underlying data changes or you
refine the analysis:

1. Generate a new artifact
2. Publish the updated version
3. Share the new link

The old artifact remains accessible at its original URL.

### Conversations are dynamic

If you edit a public conversation (add new messages, delete old ones), those changes **are reflected
immediately** for anyone viewing the link.

To avoid confusion:

* **Final version**: Once you're happy with a conversation, stop editing it
* **Versioning**: If you need to make significant changes, fork the conversation and share the new
  version

## Best practices

<AccordionGroup>
  <Accordion title="Add context before sharing" icon="message">
    At the end of a conversation, add a summary message:

    ```text theme={null}
    "Summary: This analysis compares Aave and Compound TVL over Q1 2024.
    Key findings: [list findings]
    Methodology: [explain approach]
    Limitations: [note caveats]"
    ```

    This helps viewers understand what they're looking at.
  </Accordion>

  <Accordion title="Use descriptive titles" icon="heading">
    Rename chats before sharing:

    * ✅ "Arbitrum DEX volumes Q1 2024 - comparative analysis"
    * ❌ "New chat" or "Untitled"

    Clear titles make shared content discoverable and useful.
  </Accordion>

  <Accordion title="Test the link" icon="link">
    After publishing, open the link in an incognito window to verify: - Everything displays correctly

    * No private information is visible - Artifacts render properly
  </Accordion>

  <Accordion title="Combine artifacts with CSVs" icon="layer-group">
    For client deliverables:

    1. Publish a polished artifact (report or dashboard)
    2. Download the raw data as CSV
    3. Send both the artifact link and the CSV file

    Clients get visuals + access to underlying data.
  </Accordion>
</AccordionGroup>

## Embedding artifacts

Artifacts can be embedded in external sites (e.g., blog posts, dashboards, Notion pages) using
iframes.

**Example:**

```html theme={null}
<iframe src="https://flipsidecrypto.xyz/artifact/[artifact-id]" width="800" height="600"></iframe>
```

Adjust width and height as needed. The artifact will render as an interactive element on your page.

## Revoking access

### For public chats

Once a chat is public, you can make it private again:

1. Click the **Share** button
2. Toggle to **Private**

The link will no longer work for others. (Note: anyone who viewed it previously may have screenshots
or copies.)

### For artifacts

Artifacts cannot be "unpublished" once shared. The link remains active.

If you need to remove an artifact:

* Share the context with Flipside support
* Consider publishing a corrected version and directing people to the new link

## Next steps

<CardGroup cols={2}>
  <Card title="Teams" icon="users" href="/flipsideai/teams">
    Set up private collaboration workspaces
  </Card>

  <Card title="Reports & Artifacts" icon="file-chart-column" href="/flipsideai/reports-and-artifacts">
    Create polished, shareable outputs
  </Card>

  <Card title="Data & results" icon="database" href="/flipsideai/data-and-results">
    Download and export raw data
  </Card>

  <Card title="Rules" icon="sliders" href="/flipsideai/rules">
    Customize output style for consistent sharing
  </Card>
</CardGroup>
