← Back to Docs

Data Export

Export your Threadline account data as a machine-readable JSON file. Available on all plans, including Free.

How to Export

  1. Sign in to your Threadline dashboard
  2. Go to Settings → Privacy & Data
  3. Click "Generate Export"
  4. Your browser downloads the JSON immediately
  5. We also email a download link that expires after 24 hours

What's Included

Data TypeFormatDetails
ProfileJSONName, email, bio, plan, preferences, reputation
CommentsJSON arrayYour comments (plaintext), timestamps, page URLs (up to 5,000)
VotesJSON arrayUpvotes and downvotes you cast
ReactionsJSON arrayEmoji reactions you gave
NotificationsJSON arrayIn-app notification history
SubscriptionsJSON arrayBilling subscriptions and TIP email subscriptions
Sites & teamJSONOwned sites, memberships, invites, favorites, follows, blocks, reports
Referrals & adsJSONReferral activity and advertiser campaigns when present

API

Authenticated session endpoints:

{
  "exported_at": "2026-09-08T21:00:00.000Z",
  "export_version": 3,
  "expires_in_hours": 24,
  "user": { "id": "...", "display_name": "alice", "email": "alice@example.com", "plan": "pro" },
  "comments": [{ "id": "...", "content": "Hello", "thread_url": "https://example.com/post" }],
  "votes": [{ "comment_id": "...", "vote_type": "up" }],
  "reactions": [{ "comment_id": "...", "reaction_type": "insightful" }],
  "notifications": [{ "type": "reply", "is_read": true }],
  "subscriptions": [{ "plan": "pro", "status": "active" }],
  "tip_subscriptions": [{ "email": "alice@example.com", "status": "active" }]
}

No lock-in: Export is designed for portability. See TIP data portability.