-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivacy-policy.html
More file actions
113 lines (99 loc) · 4.83 KB
/
Copy pathprivacy-policy.html
File metadata and controls
113 lines (99 loc) · 4.83 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Privacy Policy – Closed AI</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
max-width: 760px;
margin: 0 auto;
padding: 40px 24px 80px;
background: #141218;
color: #e6e0e9;
line-height: 1.7;
}
h1 { font-size: 28px; color: #D4A574; margin-bottom: 4px; }
h2 { font-size: 18px; color: #D4A574; margin-top: 36px; }
p, li { font-size: 15px; color: #cbc4d2; }
a { color: #D4A574; }
ul { padding-left: 20px; }
.meta { font-size: 13px; color: #948e9c; margin-bottom: 32px; }
hr { border: none; border-top: 1px solid #272a2f; margin: 32px 0; }
</style>
</head>
<body>
<h1>Privacy Policy</h1>
<p class="meta">Last updated: May 28, 2026</p>
<p>
Closed AI ("we", "our", or "us") is operated by the Closed AI team. This Privacy Policy
explains how we collect, use, and protect your information when you use our Android application.
</p>
<hr />
<h2>1. Information We Collect</h2>
<p>We collect the following information when you use Closed AI:</p>
<ul>
<li><strong>Email address</strong> — collected at sign-up for account creation and authentication.</li>
<li><strong>Conversation history</strong> — your chat messages are stored in our database to provide conversation continuity and memory features.</li>
<li><strong>Credit balance and transaction records</strong> — records of credit top-ups and usage for billing purposes.</li>
<li><strong>Usage data</strong> — which AI models you use and approximate token counts, used to calculate per-message costs.</li>
</ul>
<h2>2. How We Use Your Information</h2>
<ul>
<li>To create and manage your account.</li>
<li>To provide AI chat responses by routing your messages through our secure API proxy.</li>
<li>To process payments and manage your credit balance via Razorpay.</li>
<li>To send transactional emails (e.g. email verification, password reset) via Supabase Auth.</li>
<li>To maintain conversation context and memory across sessions.</li>
</ul>
<h2>3. Data Storage and Security</h2>
<p>
Your data is stored securely on Supabase infrastructure (PostgreSQL database with row-level security).
Messages in transit are encrypted using HTTPS/TLS. We do not sell, rent, or share your personal
data with third parties for marketing purposes.
</p>
<h2>4. Third-Party Services</h2>
<p>We use the following third-party services to operate the app:</p>
<ul>
<li><strong>Supabase</strong> — database, authentication, and storage. <a href="https://supabase.com/privacy" target="_blank">Privacy Policy</a></li>
<li><strong>OpenRouter</strong> — routes AI model requests. Messages are processed but not stored by OpenRouter beyond the immediate request. <a href="https://openrouter.ai/privacy" target="_blank">Privacy Policy</a></li>
<li><strong>Cloudflare Workers</strong> — our API proxy layer. <a href="https://www.cloudflare.com/privacypolicy/" target="_blank">Privacy Policy</a></li>
<li><strong>Razorpay</strong> — payment processing. We do not store card details; all payment data is handled by Razorpay. <a href="https://razorpay.com/privacy/" target="_blank">Privacy Policy</a></li>
</ul>
<h2>5. Data Retention</h2>
<p>
We retain your account data and conversation history for as long as your account is active.
You may request deletion of your account and all associated data by contacting us at the
email below. We will process deletion requests within 30 days.
</p>
<h2>6. Children's Privacy</h2>
<p>
Closed AI is intended for users aged 18 and older. We do not knowingly collect personal
information from children under the age of 13. If we become aware that a child under 13
has provided us with personal information, we will delete it immediately.
</p>
<h2>7. Your Rights</h2>
<p>You have the right to:</p>
<ul>
<li>Access the personal data we hold about you.</li>
<li>Request correction of inaccurate data.</li>
<li>Request deletion of your account and data.</li>
<li>Export your conversation history.</li>
</ul>
<h2>8. Changes to This Policy</h2>
<p>
We may update this Privacy Policy from time to time. We will notify you of significant
changes by updating the date at the top of this page. Continued use of the app after
changes constitutes acceptance of the updated policy.
</p>
<h2>9. Contact Us</h2>
<p>
If you have any questions about this Privacy Policy or want to request data deletion,
contact us at:<br /><br />
<a href="mailto:anubrat23@gmail.com">anubrat23@gmail.com</a>
</p>
<hr />
<p class="meta">© 2026 Closed AI. All rights reserved.</p>
</body>
</html>