You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: en/use-dify/workspace/subscription-management.mdx
+52-34Lines changed: 52 additions & 34 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ Billing in Dify is workspace-scoped. Your subscription determines team member li
9
9
## Subscription Plans
10
10
11
11
<CardGroupcols={3}>
12
-
<Cardtitle="Free"icon="gift">
12
+
<Cardtitle="Sandbox"icon="gift">
13
13
1 team member, basic features, community support
14
14
</Card>
15
15
<Cardtitle="Professional"icon="rocket">
@@ -22,8 +22,8 @@ Billing in Dify is workspace-scoped. Your subscription determines team member li
22
22
23
23
## Plan Comparison
24
24
25
-
| Resource |Free| Professional | Team |
26
-
|----------|------|--------------|------|
25
+
| Resource |Sandbox| Professional | Team |
26
+
|:---------|:-----|:-------------|:-----|
27
27
| Team Members | 1 | 3 | 50 |
28
28
| Applications | 5 | 50 | 200 |
29
29
| API Calls | 5000 calls / day | Unlimited | Unlimited |
@@ -33,45 +33,63 @@ Billing in Dify is workspace-scoped. Your subscription determines team member li
33
33
34
34
Only workspace owners and admins can access billing settings and change subscriptions.
35
35
36
-
**Upgrading**: Navigate to Settings → Billing and click the Upgrade button. Select your desired plan and complete payment. Changes take effect immediately.
36
+
**Upgrading**: Navigate to **Settings** > **Billing**, then click **Upgrade**. Select your desired plan and complete payment. Changes take effect immediately.
37
37
38
-
**Plan Changes**:
39
-
-**Upgrades** are prorated for the current billing period
40
-
-**Downgrades** take effect immediately with billing adjustments on the next invoice
41
-
-**Cancellations** continue until the end of the current cycle, then revert to Free plan
38
+
**Plan Changes**:
39
+
40
+
-**Upgrades** are prorated for the current billing period.
41
+
-**Downgrades** take effect immediately with billing adjustments on the next invoice.
42
+
-**Cancellations** continue until the end of the current cycle, then revert to the Sandbox plan.
42
43
43
44
<Warning>
44
45
When downgrading, team members exceeding the new plan limits will lose workspace access immediately.
45
46
</Warning>
46
47
47
48
## Dify for Education
48
49
49
-
Current students and teachers can use Dify's Professional plan for free through Dify for Education.
50
+
Students, teachers, and educational staff can verify their educational affiliation to use the Yearly Professional plan for free. Re-verification is required annually.
50
51
51
-
### Get the Education Discount
52
+
### Prerequisites
52
53
53
-
**Prerequisites**:
54
-
- Be 18 or older
54
+
- 18 years of age or older
55
55
- Current student, teacher, or educational staff member
56
-
- Valid educational email address ending in `.edu`
57
-
58
-
**Steps**:
59
-
60
-
1.**Create account** - Register at [cloud.dify.ai](https://cloud.dify.ai/signin) with your educational email
61
-
62
-
2.**Apply for verification** - Go to Settings → Billing → Get Education Verified. Enter your school's full name and select your role.
63
-
64
-
3.**Activate subscription** - After approval, upgrade to Professional plan with annual billing. The education coupon applies automatically, making it free.
65
-
66
-
Your subscription will show as `Pro(Edu)` once activated. Renewal is required annually.
67
-
68
-
### Education FAQ
69
-
70
-
**What if I already have a paid subscription?**
71
-
The education coupon cannot be applied to paid subscriptions at this time. We suggest you activate the free Professional plan after your current billing cycle ends.
72
-
73
-
**Why was my verification rejected?**
74
-
Common reasons: non-educational email, fraudulent information, or misuse of privileges. Appeal via support@dify.ai.
75
-
76
-
**Can I use a personal email?**
77
-
No, institutional email required for verification.
56
+
- School-issued educational email (e.g., `.edu`)
57
+
58
+
### Steps
59
+
60
+
<Steps>
61
+
<Steptitle="Create Account">
62
+
Register at [cloud.dify.ai](https://cloud.dify.ai/signin) with your educational email.
63
+
</Step>
64
+
<Steptitle="Apply for Verification">
65
+
Go to **Settings** > **Billing** > **Get Education Verified**, then enter your school's full name and select your role. The result appears immediately.
66
+
</Step>
67
+
<Steptitle="Upgrade Subscription">
68
+
After approval, upgrade to the **Yearly** Professional Plan. The education discount applies automatically at checkout.
69
+
70
+
<Warning>
71
+
The education discount applies only to **yearly** billing. Before paying, make sure the checkout total shows **\$0**.
72
+
</Warning>
73
+
</Step>
74
+
</Steps>
75
+
76
+
### FAQ
77
+
78
+
<AccordionGroup>
79
+
<Accordiontitle="Why was I charged $59?">
80
+
You likely selected the Monthly Professional plan. The education discount applies only to the Yearly plan, so the Monthly plan charges the full \$59.
81
+
82
+
To resolve this, cancel the current subscription, wait for the billing cycle to end, then subscribe to the **Yearly** Professional plan with the education discount.
83
+
</Accordion>
84
+
<Accordiontitle="What if I already have a paid subscription?">
85
+
The education discount cannot be applied to an existing paid plan.
86
+
87
+
To resolve this, cancel your current subscription, wait for the billing cycle to end, then subscribe to the **Yearly** Professional plan with the education discount.
88
+
</Accordion>
89
+
<Accordiontitle="Why was my verification rejected?">
90
+
Common reasons: non-educational email, inaccurate information, or misuse of privileges. Appeal via [support@dify.ai](mailto:support@dify.ai).
91
+
</Accordion>
92
+
<Accordiontitle="Can I use a personal email?">
93
+
No. Verification requires an educational email issued by your school.
- Do not leave trailing whitespace at the end of lines.
385
384
386
385
---
387
386
@@ -392,6 +391,14 @@ Use for showing multiple code variants of the same operation:
392
391
393
392
---
394
393
394
+
## Escaping Special Characters
395
+
396
+
-**Dollar signs**: Mintlify's MDX has remark-math enabled, so paired `$` in prose renders as a LaTeX math span. In source markdown, escape literal `$` as `\$`, including inside bold, lists, and Mintlify components. No escape is needed to display `$` inside code blocks or inline code.
397
+
- ✅ Source markdown: `The Yearly plan costs \$590/year, not \$59/month.`
398
+
- ❌ Source markdown: `The Yearly plan costs $590/year, not $59/month.`
399
+
400
+
---
401
+
395
402
## Quick Checklist
396
403
397
404
Before submitting, verify:
@@ -410,3 +417,4 @@ Before submitting, verify:
410
417
-[ ] Comparison images (two or more shown together) each have a caption
411
418
-[ ] No double blank lines
412
419
-[ ] Em dashes and en dashes have no surrounding spaces
420
+
-[ ] Dollar signs in prose are escaped as `\$` (not needed inside code)
| Default Model Settings | 默认模型设置 | システムモデル設定 | common.modelProvider.systemModelSettings | Renamed from "System Model Settings" in v1.13.1. EN/ZH UI updated; JA UI still shows "システムモデル設定" until i18n update. Planned JA label:「デフォルトモデル設定」. |
199
200
| System Reasoning Model | 系统推理模型 | システム推論モデル | common.modelProvider.systemReasoningModel.key ||
@@ -206,6 +207,15 @@ Terms in this section must match the Dify product interface exactly. When these
206
207
| Usage Priority | 使用优先级 | 使用優先度 | common.modelProvider.card.usagePriority | New in v1.13.1. Determines fallback order between API Key and AI Credits. |
207
208
| API Key | API Key | API キー | common.modelProvider.card.apiKeyOption | New in v1.13.1. Model provider credential option alongside AI Credits. |
208
209
210
+
### Billing
211
+
212
+
| English (UI) | Chinese (UI) | Japanese (UI) | i18n Key | Notes |
| Sandbox | Sandbox | Sandbox | billing.plans.sandbox.name | Free tier plan name; kept English in all locales. External materials may call this "Free" |
215
+
| Professional | Professional | Professional | billing.plans.professional.name | Paid tier; kept English in all locales |
216
+
| Team | Team | Team | billing.plans.team.name | Paid tier; kept English in all locales |
217
+
| Upgrade | 升级 | アップグレード | billing.upgradeBtn.encourageShort | Short variant; "Upgrade Now" is the full label (`encourage` key) |
218
+
209
219
### Workspace Roles
210
220
211
221
| English (UI) | Chinese (UI) | Japanese (UI) | i18n Key | Notes |
0 commit comments