Sharing & Exports
Share your conversations and export chat data
Share helpful AI conversations with others, or export your chat data for safekeeping and use elsewhere.
Sharing Conversations
Copy Response
The simplest way to share is copying a specific response:
- Hover over the AI message you want to share
- Click the Copy button
- Paste the text anywhere (email, Slack, document, etc.)
Copy as Markdown
For formatted responses (with code blocks, lists, etc.):
- Hover over the AI message
- Click the menu icon (three dots)
- Select "Copy as Markdown"
- The formatted text is copied to your clipboard
Share Link
Create a shareable link to a conversation:
Open the Chat
Navigate to the conversation you want to share.
Click Share
Click the share icon in the top right, or select "Share" from the menu.
Configure Sharing
Choose what to share:
- Full conversation - Everything in the chat
- From this point - Selected message and onwards
Copy Link
Click "Create Link" and copy the generated URL.
Shared links are view-only. Recipients can read the conversation but can't modify it or continue chatting.
Managing Shared Links
To see or revoke shared links:
- Go to Settings → History
- Click "Shared Links"
- View all active links and their access stats
- Click "Revoke" to disable a link
Exporting Conversations
Export Single Chat
Export as readable text with formatting:
- Open the chat
- Click menu → "Export as Markdown"
- Save the
.mdfile
Great for: Documentation, notes, sharing
Export as structured data:
- Open the chat
- Click menu → "Export as JSON"
- Save the
.jsonfile
Great for: Backups, importing elsewhere, data analysis
Export All History
Download everything at once:
Go to Settings
Open Settings → History.
Click Export All
Select "Export All Chats."
Wait for Processing
Large histories may take a moment to compile.
Download
Save the JSON file containing all your conversations.
What's Included in Exports
| Data | Markdown | JSON |
|---|---|---|
| Messages | Yes | Yes |
| Timestamps | No | Yes |
| Model Used | No | Yes |
| Attachments | Linked | Referenced |
| Canvas Content | Included | Included |
| Metadata | No | Yes |
Import Conversations
Import from Billix Export
Restore previously exported conversations:
- Go to Settings → History
- Click "Import"
- Select your exported JSON file
- Review and confirm the import
Import from Other Platforms
Billix can import conversations from:
- ChatGPT - Export from ChatGPT, then import the JSON
- Claude - Export from Claude.ai, then import
Imported conversations appear in your history with an "Imported" label. The original timestamps are preserved.
Using Exports
For Documentation
Export to Markdown for easy inclusion in documentation:
- Export the relevant chat as Markdown
- Copy sections into your docs
- Edit as needed for clarity
For Backups
Regularly export your history for safekeeping:
- Set a monthly reminder
- Export all chats as JSON
- Store in cloud storage (Google Drive, Dropbox, etc.)
For Analysis
Use JSON exports for data analysis:
import json
# Load exported chats
with open('billix_export.json') as f:
chats = json.load(f)
# Count messages
total_messages = sum(len(chat['messages']) for chat in chats)
print(f"Total messages: {total_messages}")Sharing to AI Platforms
Billix includes one-click sharing to other AI platforms:
Copy for ChatGPT
- Hover over a conversation section
- Click "Copy for ChatGPT"
- The context is formatted optimally for ChatGPT
Copy for Claude
- Hover over a conversation section
- Click "Copy for Claude"
- Paste directly into Claude.ai
These options format the conversation in a way that gives the other AI platform full context to continue helping you.
Privacy Considerations
When sharing conversations:
Review before sharing: Always check shared conversations for sensitive information like passwords, API keys, personal details, or confidential business information.
- Shared links are accessible to anyone with the link
- Exports contain your full conversation data
- Remove sensitive data before sharing externally
- Revoke links when they're no longer needed
Common Questions
Next Steps
- Learn about conversation history management
- Explore data privacy settings
- Set up Memory for persistent information
Was this page helpful? Let us know!
Report an issue