├── .gitattributes └── readme.md /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | readme.md merge=union 3 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 | # How to export personal data? 2 | 3 | While working on [Bionic](https://github.com/bionic-dev/bionic), we had to download a lot of GDPR exports from different services. Most of the time, services make it quite hard to find the actual export button. In some cases, you can never get to the button from the product interface, the link would be hidden somewhere in the help center. So, we decided to a compile a list of export links for popular services. 4 | 5 | Contributions are welcome! 6 | 7 | ## Contents 8 | 9 | - [General](#general) 10 | - [Apple](#apple) 11 | - [Google](#google) 12 | - [OpenAI](#openai) 13 | - [Education](#education) 14 | - [Duolingo](#duolingo) 15 | - [Shopping](#shopping) 16 | - [Amazon](#amazon) 17 | - [DoorDash](#doordash) 18 | - [eBay](#ebay) 19 | - [GrubHub](#grubhub) 20 | - [Social Networks](#social-networks) 21 | - [Discord](#discord) 22 | - [Facebook](#facebook) 23 | - [Google](#google) 24 | - [Instagram](#instagram) 25 | - [Reddit](#reddit) 26 | - [Snapchat](#snapchat) 27 | - [Telegram](#telegram) 28 | - [TikTok](#tiktok) 29 | - [Tinder](#tinder) 30 | - [Tumblr](#tumblr) 31 | - [X/Twitter](#x/twitter) 32 | - [Media](#media) 33 | - [Netflix](#netflix) 34 | - [Spotify](#spotify) 35 | - [Health and Fitness](#health-and-fitness) 36 | - [Fitbit](#fitbit) 37 | - [Samsung Health](#samsung-health) 38 | - [Travel](#travel) 39 | - [Airbnb](#airbnb) 40 | - [Lyft](#lyft) 41 | - [Uber](#uber) 42 | - [Yelp](#yelp) 43 | 44 | ## General 45 | 46 | ### Apple 47 | 48 | https://privacy.apple.com/ => "Get a copy of your data" 49 | 50 | ### Google 51 | 52 | Also includes YouTube, Gmail, and other Google-owned products. 53 | 54 | https://takeout.google.com/ 55 | 56 | ### OpenAI 57 | 58 | https://chat.openai.com/#settings/DataControls 59 | 60 | ## Education 61 | 62 | ### Duolingo 63 | 64 | https://drive-thru.duolingo.com/ 65 | 66 | ## Shopping 67 | 68 | ### Amazon 69 | 70 | https://www.amazon.com/gp/privacycentral/dsar/preview.html 71 | 72 | ### DoorDash 73 | 74 | https://www.doordash.com/consumer/privacy/manage_account/ 75 | 76 | ### eBay 77 | 78 | https://www.sarweb.ebay.com/sar 79 | 80 | ### GrubHub 81 | 82 | https://www.grubhub.com/help/privacy/manage-your-data 83 | 84 | ## Social Networks 85 | 86 | ### Discord 87 | 88 | https://discord.com/app => "User Settings" (Cog icon in bottom left) => Privacy & Safety => "Request all of my Data" 89 | 90 | ### Facebook 91 | 92 | https://www.facebook.com/dyi 93 | 94 | ### Instagram 95 | 96 | https://www.instagram.com/download/request/ 97 | 98 | ### Reddit 99 | 100 | https://www.reddit.com/settings/data-request 101 | 102 | ### Snapchat 103 | 104 | https://accounts.snapchat.com/accounts/downloadmydata 105 | 106 | ### Telegram 107 | 108 | Desktop App (https://desktop.telegram.org/ only): Settings => Advanced => Export Telegram data 109 | 110 | ### TikTok 111 | 112 | Mobile App: Settings => Privacy => Personalization & Data 113 | Web: https://www.tiktok.com/setting/download-your-data 114 | 115 | ### Tinder 116 | 117 | https://account.gotinder.com/data 118 | 119 | ### Tumblr 120 | 121 | https://www.tumblr.com/settings/blog/ => "Export" 122 | 123 | ### X/Twitter 124 | 125 | https://twitter.com/settings/download_your_data 126 | 127 | ## Media 128 | 129 | ### Netflix 130 | 131 | https://www.netflix.com/account/getmyinfo 132 | 133 | ### Spotify 134 | 135 | https://www.spotify.com/us/account/privacy/ 136 | 137 | ## Travel 138 | 139 | ### Airbnb 140 | 141 | https://www.airbnb.com/privacy/manage-your-data 142 | 143 | ### Lyft 144 | 145 | https://account.lyft.com/privacy/data 146 | 147 | ### Uber 148 | 149 | Includes Uber ridesharing, Postmates, and Uber Eats 150 | 151 | https://myprivacy.uber.com/privacy/exploreyourdata/download 152 | 153 | ### Yelp 154 | 155 | https://yelp.com/profile_privacy => "Download a copy of your account data" 156 | 157 | ## Health and Fitness 158 | 159 | ### Fitbit 160 | 161 | https://www.fitbit.com/settings/data/export 162 | 163 | Note that for some accounts, Fitbit data may be managed by [Google](#google). More information is available at https://support.google.com/fitbit/answer/14236615? 164 | 165 | ### Samsung Health 166 | 167 | Mobile App: More options (three dots) => Settings => Download personal data => Download 168 | 169 | https://www.samsung.com/us/support/answer/ANS00085104/#ui-id-1 170 | --------------------------------------------------------------------------------