pricing.md 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +118 -0
- package/SKILL.md +593 -0
- package/data/tools/algolia.json +101 -0
- package/data/tools/amplitude.json +73 -0
- package/data/tools/auth0-b2b.json +175 -0
- package/data/tools/auth0-b2c.json +183 -0
- package/data/tools/buildkite.json +104 -0
- package/data/tools/checkly.json +112 -0
- package/data/tools/circleci.json +102 -0
- package/data/tools/clerk.json +109 -0
- package/data/tools/cloudflare.json +71 -0
- package/data/tools/contentful.json +71 -0
- package/data/tools/convex.json +74 -0
- package/data/tools/courier.json +80 -0
- package/data/tools/deno-deploy.json +145 -0
- package/data/tools/depot.json +66 -0
- package/data/tools/descope.json +130 -0
- package/data/tools/engagespot.json +84 -0
- package/data/tools/fly-io.json +53 -0
- package/data/tools/github-actions.json +64 -0
- package/data/tools/honeycomb.json +65 -0
- package/data/tools/inngest.json +80 -0
- package/data/tools/launchdarkly.json +81 -0
- package/data/tools/mergent.json +116 -0
- package/data/tools/mixpanel.json +70 -0
- package/data/tools/mux.json +164 -0
- package/data/tools/neon.json +173 -0
- package/data/tools/netlify.json +99 -0
- package/data/tools/new-relic.json +104 -0
- package/data/tools/novu.json +94 -0
- package/data/tools/orama.json +153 -0
- package/data/tools/paddle.json +46 -0
- package/data/tools/planetscale-postgres.json +108 -0
- package/data/tools/planetscale-vitess.json +82 -0
- package/data/tools/plausible.json +75 -0
- package/data/tools/posthog.json +101 -0
- package/data/tools/postmark.json +93 -0
- package/data/tools/railway.json +161 -0
- package/data/tools/render.json +94 -0
- package/data/tools/resend.json +135 -0
- package/data/tools/sanity.json +98 -0
- package/data/tools/sendgrid.json +78 -0
- package/data/tools/sentry.json +276 -0
- package/data/tools/statsig.json +70 -0
- package/data/tools/storyblok.json +121 -0
- package/data/tools/stripe.json +46 -0
- package/data/tools/supabase.json +100 -0
- package/data/tools/tigris.json +70 -0
- package/data/tools/trigger-dev.json +90 -0
- package/data/tools/turso.json +226 -0
- package/data/tools/unosend.json +88 -0
- package/data/tools/upstash.json +85 -0
- package/data/tools/vercel.json +146 -0
- package/data/tools/weaviate.json +93 -0
- package/data/tools/workos.json +127 -0
- package/dist/src/index.d.ts +2 -0
- package/dist/src/index.js +23 -0
- package/dist/src/registry/registry.d.ts +52 -0
- package/dist/src/registry/registry.js +216 -0
- package/dist/src/schema/pricing.d.ts +191 -0
- package/dist/src/schema/pricing.js +89 -0
- package/dist/src/server.d.ts +3 -0
- package/dist/src/server.js +32 -0
- package/dist/src/tools/compare-tools.d.ts +61 -0
- package/dist/src/tools/compare-tools.js +115 -0
- package/dist/src/tools/estimate-cost.d.ts +44 -0
- package/dist/src/tools/estimate-cost.js +61 -0
- package/dist/src/tools/find-cheapest.d.ts +54 -0
- package/dist/src/tools/find-cheapest.js +93 -0
- package/dist/src/tools/get-pricing.d.ts +51 -0
- package/dist/src/tools/get-pricing.js +23 -0
- package/dist/src/tools/search-tools.d.ts +55 -0
- package/dist/src/tools/search-tools.js +52 -0
- package/package.json +40 -0
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "posthog",
|
|
3
|
+
"name": "PostHog",
|
|
4
|
+
"description": "Open-source product analytics platform with session replay, feature flags, A/B testing, and usage-based pricing",
|
|
5
|
+
"url": "https://posthog.com",
|
|
6
|
+
"pricingUrl": "https://posthog.com/pricing.md",
|
|
7
|
+
"category": "analytics",
|
|
8
|
+
"tags": [
|
|
9
|
+
"analytics",
|
|
10
|
+
"product-analytics",
|
|
11
|
+
"session-replay",
|
|
12
|
+
"feature-flags",
|
|
13
|
+
"ab-testing"
|
|
14
|
+
],
|
|
15
|
+
"lastVerified": "2026-04-02",
|
|
16
|
+
"freshnessCategory": "volatile",
|
|
17
|
+
"currency": "USD",
|
|
18
|
+
"portability": {
|
|
19
|
+
"switchingCost": "moderate",
|
|
20
|
+
"openStandard": null,
|
|
21
|
+
"whatYouLose": "Autocapture, session replay, feature flags, A/B testing integrations"
|
|
22
|
+
},
|
|
23
|
+
"tiers": [
|
|
24
|
+
{
|
|
25
|
+
"name": "Free",
|
|
26
|
+
"slug": "free",
|
|
27
|
+
"pricingModel": "free",
|
|
28
|
+
"basePrice": 0,
|
|
29
|
+
"billingPeriod": "monthly",
|
|
30
|
+
"annualDiscount": null,
|
|
31
|
+
"seatPrice": null,
|
|
32
|
+
"usageMetrics": [],
|
|
33
|
+
"features": [],
|
|
34
|
+
"limits": {
|
|
35
|
+
"projects": 1,
|
|
36
|
+
"dataRetentionYears": 1
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"name": "Paid",
|
|
41
|
+
"slug": "paid",
|
|
42
|
+
"pricingModel": "usage_based",
|
|
43
|
+
"basePrice": 0,
|
|
44
|
+
"billingPeriod": "monthly",
|
|
45
|
+
"annualDiscount": null,
|
|
46
|
+
"seatPrice": null,
|
|
47
|
+
"usageMetrics": [
|
|
48
|
+
{
|
|
49
|
+
"name": "Product Analytics Events",
|
|
50
|
+
"unit": "events",
|
|
51
|
+
"pricePerUnit": 0.00005,
|
|
52
|
+
"unitQuantity": 1,
|
|
53
|
+
"includedQuantity": 1000000,
|
|
54
|
+
"tieredPricing": [
|
|
55
|
+
{ "upTo": 1000000, "pricePerUnit": 0 },
|
|
56
|
+
{ "upTo": 2000000, "pricePerUnit": 0.00005 },
|
|
57
|
+
{ "upTo": 15000000, "pricePerUnit": 0.0000343 },
|
|
58
|
+
{ "upTo": 50000000, "pricePerUnit": 0.0000295 },
|
|
59
|
+
{ "upTo": 100000000, "pricePerUnit": 0.0000218 },
|
|
60
|
+
{ "upTo": 250000000, "pricePerUnit": 0.000015 },
|
|
61
|
+
{ "upTo": null, "pricePerUnit": 0.000009 }
|
|
62
|
+
]
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"name": "Session Replay Recordings",
|
|
66
|
+
"unit": "recordings",
|
|
67
|
+
"pricePerUnit": 0.005,
|
|
68
|
+
"unitQuantity": 1,
|
|
69
|
+
"includedQuantity": 5000,
|
|
70
|
+
"tieredPricing": [
|
|
71
|
+
{ "upTo": 5000, "pricePerUnit": 0 },
|
|
72
|
+
{ "upTo": 15000, "pricePerUnit": 0.005 },
|
|
73
|
+
{ "upTo": 50000, "pricePerUnit": 0.0035 },
|
|
74
|
+
{ "upTo": 150000, "pricePerUnit": 0.002 },
|
|
75
|
+
{ "upTo": 500000, "pricePerUnit": 0.0017 },
|
|
76
|
+
{ "upTo": null, "pricePerUnit": 0.0015 }
|
|
77
|
+
]
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"name": "Feature Flag Requests",
|
|
81
|
+
"unit": "requests",
|
|
82
|
+
"pricePerUnit": 0.0001,
|
|
83
|
+
"unitQuantity": 1,
|
|
84
|
+
"includedQuantity": 1000000,
|
|
85
|
+
"tieredPricing": [
|
|
86
|
+
{ "upTo": 1000000, "pricePerUnit": 0 },
|
|
87
|
+
{ "upTo": 2000000, "pricePerUnit": 0.0001 },
|
|
88
|
+
{ "upTo": 10000000, "pricePerUnit": 0.000045 },
|
|
89
|
+
{ "upTo": 50000000, "pricePerUnit": 0.000025 },
|
|
90
|
+
{ "upTo": null, "pricePerUnit": 0.00001 }
|
|
91
|
+
]
|
|
92
|
+
}
|
|
93
|
+
],
|
|
94
|
+
"features": [],
|
|
95
|
+
"limits": {
|
|
96
|
+
"projects": 6,
|
|
97
|
+
"dataRetentionYears": 7
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
]
|
|
101
|
+
}
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "postmark",
|
|
3
|
+
"name": "Postmark",
|
|
4
|
+
"description": "Transactional email delivery service with high deliverability and message streams",
|
|
5
|
+
"url": "https://postmarkapp.com",
|
|
6
|
+
"pricingUrl": "https://postmarkapp.com/pricing",
|
|
7
|
+
"category": "email",
|
|
8
|
+
"tags": [],
|
|
9
|
+
"lastVerified": "2026-04-03",
|
|
10
|
+
"freshnessCategory": "volatile",
|
|
11
|
+
"currency": "USD",
|
|
12
|
+
"portability": {
|
|
13
|
+
"switchingCost": "drop-in",
|
|
14
|
+
"openStandard": "SMTP",
|
|
15
|
+
"whatYouLose": "Postmark message streams, delivery analytics, template system"
|
|
16
|
+
},
|
|
17
|
+
"tiers": [
|
|
18
|
+
{
|
|
19
|
+
"name": "Free",
|
|
20
|
+
"slug": "free",
|
|
21
|
+
"pricingModel": "free",
|
|
22
|
+
"basePrice": 0,
|
|
23
|
+
"billingPeriod": null,
|
|
24
|
+
"annualDiscount": null,
|
|
25
|
+
"seatPrice": null,
|
|
26
|
+
"usageMetrics": [],
|
|
27
|
+
"features": [],
|
|
28
|
+
"limits": {
|
|
29
|
+
"emailsPerMonth": 100
|
|
30
|
+
}
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"name": "Basic",
|
|
34
|
+
"slug": "basic",
|
|
35
|
+
"pricingModel": "tiered",
|
|
36
|
+
"basePrice": 15,
|
|
37
|
+
"billingPeriod": "monthly",
|
|
38
|
+
"annualDiscount": null,
|
|
39
|
+
"seatPrice": null,
|
|
40
|
+
"usageMetrics": [
|
|
41
|
+
{
|
|
42
|
+
"name": "emails",
|
|
43
|
+
"unit": "emails",
|
|
44
|
+
"pricePerUnit": 1.80,
|
|
45
|
+
"unitQuantity": 1000,
|
|
46
|
+
"includedQuantity": 10000
|
|
47
|
+
}
|
|
48
|
+
],
|
|
49
|
+
"features": [],
|
|
50
|
+
"limits": {}
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"name": "Pro",
|
|
54
|
+
"slug": "pro",
|
|
55
|
+
"pricingModel": "tiered",
|
|
56
|
+
"basePrice": 16.5,
|
|
57
|
+
"billingPeriod": "monthly",
|
|
58
|
+
"annualDiscount": null,
|
|
59
|
+
"seatPrice": null,
|
|
60
|
+
"usageMetrics": [
|
|
61
|
+
{
|
|
62
|
+
"name": "emails",
|
|
63
|
+
"unit": "emails",
|
|
64
|
+
"pricePerUnit": 1.30,
|
|
65
|
+
"unitQuantity": 1000,
|
|
66
|
+
"includedQuantity": 10000
|
|
67
|
+
}
|
|
68
|
+
],
|
|
69
|
+
"features": [],
|
|
70
|
+
"limits": {}
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"name": "Platform",
|
|
74
|
+
"slug": "platform",
|
|
75
|
+
"pricingModel": "tiered",
|
|
76
|
+
"basePrice": 18,
|
|
77
|
+
"billingPeriod": "monthly",
|
|
78
|
+
"annualDiscount": null,
|
|
79
|
+
"seatPrice": null,
|
|
80
|
+
"usageMetrics": [
|
|
81
|
+
{
|
|
82
|
+
"name": "emails",
|
|
83
|
+
"unit": "emails",
|
|
84
|
+
"pricePerUnit": 1.20,
|
|
85
|
+
"unitQuantity": 1000,
|
|
86
|
+
"includedQuantity": 10000
|
|
87
|
+
}
|
|
88
|
+
],
|
|
89
|
+
"features": [],
|
|
90
|
+
"limits": {}
|
|
91
|
+
}
|
|
92
|
+
]
|
|
93
|
+
}
|
|
@@ -0,0 +1,161 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "railway",
|
|
3
|
+
"name": "Railway",
|
|
4
|
+
"description": "Deploy apps and databases with zero config, usage-based pricing",
|
|
5
|
+
"url": "https://railway.com",
|
|
6
|
+
"pricingUrl": "https://docs.railway.com/pricing.md",
|
|
7
|
+
"category": "hosting",
|
|
8
|
+
"tags": [
|
|
9
|
+
"hosting",
|
|
10
|
+
"deployment",
|
|
11
|
+
"paas",
|
|
12
|
+
"databases"
|
|
13
|
+
],
|
|
14
|
+
"lastVerified": "2026-04-02",
|
|
15
|
+
"freshnessCategory": "volatile",
|
|
16
|
+
"currency": "USD",
|
|
17
|
+
"portability": {
|
|
18
|
+
"switchingCost": "moderate",
|
|
19
|
+
"openStandard": null,
|
|
20
|
+
"whatYouLose": "Railway-specific config (railway.toml), built-in databases, deployment pipelines"
|
|
21
|
+
},
|
|
22
|
+
"tiers": [
|
|
23
|
+
{
|
|
24
|
+
"name": "Free",
|
|
25
|
+
"slug": "free",
|
|
26
|
+
"pricingModel": "usage_based",
|
|
27
|
+
"basePrice": 0,
|
|
28
|
+
"billingPeriod": "monthly",
|
|
29
|
+
"annualDiscount": null,
|
|
30
|
+
"seatPrice": null,
|
|
31
|
+
"usageMetrics": [
|
|
32
|
+
{
|
|
33
|
+
"name": "ram",
|
|
34
|
+
"pricePerUnit": 10,
|
|
35
|
+
"unitQuantity": 1,
|
|
36
|
+
"includedQuantity": 0,
|
|
37
|
+
"unit": "GB/month"
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"name": "cpu",
|
|
41
|
+
"pricePerUnit": 20,
|
|
42
|
+
"unitQuantity": 1,
|
|
43
|
+
"includedQuantity": 0,
|
|
44
|
+
"unit": "vCPU/month"
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"name": "network-egress",
|
|
48
|
+
"pricePerUnit": 0.05,
|
|
49
|
+
"unitQuantity": 1,
|
|
50
|
+
"includedQuantity": 0,
|
|
51
|
+
"unit": "GB"
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"name": "volume-storage",
|
|
55
|
+
"pricePerUnit": 0.15,
|
|
56
|
+
"unitQuantity": 1,
|
|
57
|
+
"includedQuantity": 0,
|
|
58
|
+
"unit": "GB"
|
|
59
|
+
}
|
|
60
|
+
],
|
|
61
|
+
"features": [],
|
|
62
|
+
"limits": {
|
|
63
|
+
"resourceCreditsUsd": 1
|
|
64
|
+
}
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"name": "Hobby",
|
|
68
|
+
"slug": "hobby",
|
|
69
|
+
"pricingModel": "hybrid",
|
|
70
|
+
"basePrice": 5,
|
|
71
|
+
"billingPeriod": "monthly",
|
|
72
|
+
"annualDiscount": null,
|
|
73
|
+
"seatPrice": null,
|
|
74
|
+
"usageMetrics": [
|
|
75
|
+
{
|
|
76
|
+
"name": "ram",
|
|
77
|
+
"pricePerUnit": 10,
|
|
78
|
+
"unitQuantity": 1,
|
|
79
|
+
"includedQuantity": 0,
|
|
80
|
+
"unit": "GB/month"
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
"name": "cpu",
|
|
84
|
+
"pricePerUnit": 20,
|
|
85
|
+
"unitQuantity": 1,
|
|
86
|
+
"includedQuantity": 0,
|
|
87
|
+
"unit": "vCPU/month"
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"name": "network-egress",
|
|
91
|
+
"pricePerUnit": 0.05,
|
|
92
|
+
"unitQuantity": 1,
|
|
93
|
+
"includedQuantity": 0,
|
|
94
|
+
"unit": "GB"
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
"name": "volume-storage",
|
|
98
|
+
"pricePerUnit": 0.15,
|
|
99
|
+
"unitQuantity": 1,
|
|
100
|
+
"includedQuantity": 0,
|
|
101
|
+
"unit": "GB"
|
|
102
|
+
}
|
|
103
|
+
],
|
|
104
|
+
"features": [],
|
|
105
|
+
"limits": {}
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
"name": "Pro",
|
|
109
|
+
"slug": "pro",
|
|
110
|
+
"pricingModel": "hybrid",
|
|
111
|
+
"basePrice": 20,
|
|
112
|
+
"billingPeriod": "monthly",
|
|
113
|
+
"annualDiscount": null,
|
|
114
|
+
"seatPrice": null,
|
|
115
|
+
"usageMetrics": [
|
|
116
|
+
{
|
|
117
|
+
"name": "ram",
|
|
118
|
+
"pricePerUnit": 10,
|
|
119
|
+
"unitQuantity": 1,
|
|
120
|
+
"includedQuantity": 0,
|
|
121
|
+
"unit": "GB/month"
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
"name": "cpu",
|
|
125
|
+
"pricePerUnit": 20,
|
|
126
|
+
"unitQuantity": 1,
|
|
127
|
+
"includedQuantity": 0,
|
|
128
|
+
"unit": "vCPU/month"
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
"name": "network-egress",
|
|
132
|
+
"pricePerUnit": 0.05,
|
|
133
|
+
"unitQuantity": 1,
|
|
134
|
+
"includedQuantity": 0,
|
|
135
|
+
"unit": "GB"
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
"name": "volume-storage",
|
|
139
|
+
"pricePerUnit": 0.15,
|
|
140
|
+
"unitQuantity": 1,
|
|
141
|
+
"includedQuantity": 0,
|
|
142
|
+
"unit": "GB"
|
|
143
|
+
}
|
|
144
|
+
],
|
|
145
|
+
"features": [],
|
|
146
|
+
"limits": {}
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
"name": "Enterprise",
|
|
150
|
+
"slug": "enterprise",
|
|
151
|
+
"pricingModel": "custom",
|
|
152
|
+
"basePrice": null,
|
|
153
|
+
"billingPeriod": null,
|
|
154
|
+
"annualDiscount": null,
|
|
155
|
+
"seatPrice": null,
|
|
156
|
+
"usageMetrics": [],
|
|
157
|
+
"features": [],
|
|
158
|
+
"limits": {}
|
|
159
|
+
}
|
|
160
|
+
]
|
|
161
|
+
}
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "render",
|
|
3
|
+
"name": "Render",
|
|
4
|
+
"description": "Cloud platform for deploying full-stack apps, databases, and services with usage-based compute pricing",
|
|
5
|
+
"url": "https://render.com",
|
|
6
|
+
"pricingUrl": "https://render.com/pricing.md",
|
|
7
|
+
"category": "hosting",
|
|
8
|
+
"tags": [
|
|
9
|
+
"hosting",
|
|
10
|
+
"deployment",
|
|
11
|
+
"paas",
|
|
12
|
+
"databases",
|
|
13
|
+
"docker"
|
|
14
|
+
],
|
|
15
|
+
"lastVerified": "2026-04-02",
|
|
16
|
+
"freshnessCategory": "volatile",
|
|
17
|
+
"currency": "USD",
|
|
18
|
+
"portability": {
|
|
19
|
+
"switchingCost": "moderate",
|
|
20
|
+
"openStandard": "PostgreSQL wire protocol",
|
|
21
|
+
"whatYouLose": "Render-specific infrastructure-as-code config, managed Postgres/Key Value, auto-scaling setup, deploy hooks"
|
|
22
|
+
},
|
|
23
|
+
"tiers": [
|
|
24
|
+
{
|
|
25
|
+
"name": "Hobby",
|
|
26
|
+
"slug": "hobby",
|
|
27
|
+
"pricingModel": "usage_based",
|
|
28
|
+
"basePrice": 0,
|
|
29
|
+
"billingPeriod": "monthly",
|
|
30
|
+
"annualDiscount": null,
|
|
31
|
+
"seatPrice": null,
|
|
32
|
+
"usageMetrics": [],
|
|
33
|
+
"features": [],
|
|
34
|
+
"limits": {
|
|
35
|
+
"bandwidthGb": 100,
|
|
36
|
+
"buildPipelineMinutes": 500,
|
|
37
|
+
"projects": 1,
|
|
38
|
+
"environments": 2,
|
|
39
|
+
"customDomains": 2,
|
|
40
|
+
"logRetentionDays": 7,
|
|
41
|
+
"rollbackBuilds": 5
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"name": "Professional",
|
|
46
|
+
"slug": "professional",
|
|
47
|
+
"pricingModel": "per_seat",
|
|
48
|
+
"basePrice": 19,
|
|
49
|
+
"billingPeriod": "monthly",
|
|
50
|
+
"annualDiscount": null,
|
|
51
|
+
"seatPrice": 19,
|
|
52
|
+
"usageMetrics": [],
|
|
53
|
+
"features": [],
|
|
54
|
+
"limits": {
|
|
55
|
+
"bandwidthGb": 500,
|
|
56
|
+
"teamMembers": 10,
|
|
57
|
+
"logRetentionDays": 14,
|
|
58
|
+
"rollbackBuilds": 15,
|
|
59
|
+
"privateLinks": 3,
|
|
60
|
+
"webhooks": 1
|
|
61
|
+
}
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"name": "Organization",
|
|
65
|
+
"slug": "organization",
|
|
66
|
+
"pricingModel": "per_seat",
|
|
67
|
+
"basePrice": 29,
|
|
68
|
+
"billingPeriod": "monthly",
|
|
69
|
+
"annualDiscount": null,
|
|
70
|
+
"seatPrice": 29,
|
|
71
|
+
"usageMetrics": [],
|
|
72
|
+
"features": [],
|
|
73
|
+
"limits": {
|
|
74
|
+
"bandwidthGb": 1000,
|
|
75
|
+
"logRetentionDays": 30,
|
|
76
|
+
"rollbackBuilds": 30,
|
|
77
|
+
"privateLinks": 3,
|
|
78
|
+
"webhooks": 100
|
|
79
|
+
}
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
"name": "Enterprise",
|
|
83
|
+
"slug": "enterprise",
|
|
84
|
+
"pricingModel": "custom",
|
|
85
|
+
"basePrice": null,
|
|
86
|
+
"billingPeriod": null,
|
|
87
|
+
"annualDiscount": null,
|
|
88
|
+
"seatPrice": null,
|
|
89
|
+
"usageMetrics": [],
|
|
90
|
+
"features": [],
|
|
91
|
+
"limits": {}
|
|
92
|
+
}
|
|
93
|
+
]
|
|
94
|
+
}
|
|
@@ -0,0 +1,135 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "resend",
|
|
3
|
+
"name": "Resend",
|
|
4
|
+
"description": "Developer-first email API for transactional and marketing emails",
|
|
5
|
+
"url": "https://resend.com",
|
|
6
|
+
"pricingUrl": "https://resend.com/pricing.md",
|
|
7
|
+
"category": "email",
|
|
8
|
+
"tags": [
|
|
9
|
+
"transactional-email",
|
|
10
|
+
"marketing-email",
|
|
11
|
+
"api",
|
|
12
|
+
"smtp"
|
|
13
|
+
],
|
|
14
|
+
"lastVerified": "2026-04-02",
|
|
15
|
+
"freshnessCategory": "volatile",
|
|
16
|
+
"currency": "USD",
|
|
17
|
+
"portability": {
|
|
18
|
+
"switchingCost": "drop-in",
|
|
19
|
+
"openStandard": "SMTP",
|
|
20
|
+
"whatYouLose": "React Email integration, dashboard analytics, domain verification config"
|
|
21
|
+
},
|
|
22
|
+
"tiers": [
|
|
23
|
+
{
|
|
24
|
+
"name": "Free",
|
|
25
|
+
"slug": "free",
|
|
26
|
+
"pricingModel": "free",
|
|
27
|
+
"basePrice": 0,
|
|
28
|
+
"billingPeriod": "monthly",
|
|
29
|
+
"annualDiscount": null,
|
|
30
|
+
"seatPrice": null,
|
|
31
|
+
"usageMetrics": [
|
|
32
|
+
{
|
|
33
|
+
"name": "emails",
|
|
34
|
+
"pricePerUnit": 0,
|
|
35
|
+
"unitQuantity": 1000,
|
|
36
|
+
"includedQuantity": 3000,
|
|
37
|
+
"unit": "emails"
|
|
38
|
+
}
|
|
39
|
+
],
|
|
40
|
+
"features": [],
|
|
41
|
+
"limits": {
|
|
42
|
+
"emailsPerDay": 100,
|
|
43
|
+
"domains": 1
|
|
44
|
+
}
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"name": "Pro",
|
|
48
|
+
"slug": "pro",
|
|
49
|
+
"pricingModel": "tiered",
|
|
50
|
+
"basePrice": 20,
|
|
51
|
+
"billingPeriod": "monthly",
|
|
52
|
+
"annualDiscount": null,
|
|
53
|
+
"seatPrice": null,
|
|
54
|
+
"usageMetrics": [
|
|
55
|
+
{
|
|
56
|
+
"name": "emails",
|
|
57
|
+
"pricePerUnit": 0.9,
|
|
58
|
+
"unitQuantity": 1000,
|
|
59
|
+
"includedQuantity": 50000,
|
|
60
|
+
"tieredPricing": [
|
|
61
|
+
{
|
|
62
|
+
"upTo": 50000,
|
|
63
|
+
"pricePerUnit": 0
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"upTo": null,
|
|
67
|
+
"pricePerUnit": 0.9
|
|
68
|
+
}
|
|
69
|
+
],
|
|
70
|
+
"unit": "emails"
|
|
71
|
+
}
|
|
72
|
+
],
|
|
73
|
+
"features": [],
|
|
74
|
+
"limits": {
|
|
75
|
+
"domains": 10
|
|
76
|
+
}
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"name": "Scale",
|
|
80
|
+
"slug": "scale",
|
|
81
|
+
"pricingModel": "tiered",
|
|
82
|
+
"basePrice": 90,
|
|
83
|
+
"billingPeriod": "monthly",
|
|
84
|
+
"annualDiscount": null,
|
|
85
|
+
"seatPrice": null,
|
|
86
|
+
"usageMetrics": [
|
|
87
|
+
{
|
|
88
|
+
"name": "emails",
|
|
89
|
+
"pricePerUnit": 0.9,
|
|
90
|
+
"unitQuantity": 1000,
|
|
91
|
+
"includedQuantity": 100000,
|
|
92
|
+
"tieredPricing": [
|
|
93
|
+
{
|
|
94
|
+
"upTo": 100000,
|
|
95
|
+
"pricePerUnit": 0
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
"upTo": 500000,
|
|
99
|
+
"pricePerUnit": 0.7
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"upTo": 1000000,
|
|
103
|
+
"pricePerUnit": 0.65
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
"upTo": 2500000,
|
|
107
|
+
"pricePerUnit": 0.46
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
"upTo": null,
|
|
111
|
+
"pricePerUnit": 0.46
|
|
112
|
+
}
|
|
113
|
+
],
|
|
114
|
+
"unit": "emails"
|
|
115
|
+
}
|
|
116
|
+
],
|
|
117
|
+
"features": [],
|
|
118
|
+
"limits": {
|
|
119
|
+
"domains": 1000
|
|
120
|
+
}
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
"name": "Enterprise",
|
|
124
|
+
"slug": "enterprise",
|
|
125
|
+
"pricingModel": "custom",
|
|
126
|
+
"basePrice": null,
|
|
127
|
+
"billingPeriod": null,
|
|
128
|
+
"annualDiscount": null,
|
|
129
|
+
"seatPrice": null,
|
|
130
|
+
"usageMetrics": [],
|
|
131
|
+
"features": [],
|
|
132
|
+
"limits": {}
|
|
133
|
+
}
|
|
134
|
+
]
|
|
135
|
+
}
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "sanity",
|
|
3
|
+
"name": "Sanity",
|
|
4
|
+
"description": "Headless CMS platform with GROQ query language, real-time collaboration, Sanity Studio, and Content Lake",
|
|
5
|
+
"url": "https://sanity.io",
|
|
6
|
+
"pricingUrl": "https://sanity.io/pricing",
|
|
7
|
+
"category": "cms",
|
|
8
|
+
"tags": ["cms", "headless-cms", "content-management", "groq", "real-time"],
|
|
9
|
+
"lastVerified": "2026-04-03",
|
|
10
|
+
"freshnessCategory": "volatile",
|
|
11
|
+
"currency": "USD",
|
|
12
|
+
"portability": {
|
|
13
|
+
"switchingCost": "significant",
|
|
14
|
+
"openStandard": null,
|
|
15
|
+
"whatYouLose": "GROQ query language, Sanity Studio, Content Lake, real-time collaboration"
|
|
16
|
+
},
|
|
17
|
+
"tiers": [
|
|
18
|
+
{
|
|
19
|
+
"name": "Free",
|
|
20
|
+
"slug": "free",
|
|
21
|
+
"pricingModel": "free",
|
|
22
|
+
"basePrice": 0,
|
|
23
|
+
"billingPeriod": "monthly",
|
|
24
|
+
"annualDiscount": null,
|
|
25
|
+
"seatPrice": null,
|
|
26
|
+
"usageMetrics": [],
|
|
27
|
+
"features": [],
|
|
28
|
+
"limits": {
|
|
29
|
+
"seats": 20,
|
|
30
|
+
"datasets": 2,
|
|
31
|
+
"documents": 10000,
|
|
32
|
+
"apiCdnRequestsPerMonth": 1000000,
|
|
33
|
+
"apiRequestsPerMonth": 250000,
|
|
34
|
+
"assetsGB": 100,
|
|
35
|
+
"bandwidthGBPerMonth": 100,
|
|
36
|
+
"aiCreditsPerMonth": 100
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"name": "Growth",
|
|
41
|
+
"slug": "growth",
|
|
42
|
+
"pricingModel": "per_seat",
|
|
43
|
+
"basePrice": 0,
|
|
44
|
+
"billingPeriod": "monthly",
|
|
45
|
+
"annualDiscount": null,
|
|
46
|
+
"seatPrice": 15,
|
|
47
|
+
"usageMetrics": [
|
|
48
|
+
{
|
|
49
|
+
"name": "API CDN Requests",
|
|
50
|
+
"unit": "requests",
|
|
51
|
+
"pricePerUnit": 1,
|
|
52
|
+
"unitQuantity": 250000,
|
|
53
|
+
"includedQuantity": 1000000
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
"name": "API Requests",
|
|
57
|
+
"unit": "requests",
|
|
58
|
+
"pricePerUnit": 1,
|
|
59
|
+
"unitQuantity": 25000,
|
|
60
|
+
"includedQuantity": 250000
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"name": "Assets Storage",
|
|
64
|
+
"unit": "GB",
|
|
65
|
+
"pricePerUnit": 0.50,
|
|
66
|
+
"unitQuantity": 1,
|
|
67
|
+
"includedQuantity": 100
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
"name": "Bandwidth",
|
|
71
|
+
"unit": "GB",
|
|
72
|
+
"pricePerUnit": 0.30,
|
|
73
|
+
"unitQuantity": 1,
|
|
74
|
+
"includedQuantity": 100
|
|
75
|
+
}
|
|
76
|
+
],
|
|
77
|
+
"features": [],
|
|
78
|
+
"limits": {
|
|
79
|
+
"seats": 50,
|
|
80
|
+
"roles": 5,
|
|
81
|
+
"datasets": 2,
|
|
82
|
+
"documents": 25000
|
|
83
|
+
}
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"name": "Enterprise",
|
|
87
|
+
"slug": "enterprise",
|
|
88
|
+
"pricingModel": "custom",
|
|
89
|
+
"basePrice": null,
|
|
90
|
+
"billingPeriod": null,
|
|
91
|
+
"annualDiscount": null,
|
|
92
|
+
"seatPrice": null,
|
|
93
|
+
"usageMetrics": [],
|
|
94
|
+
"features": [],
|
|
95
|
+
"limits": {}
|
|
96
|
+
}
|
|
97
|
+
]
|
|
98
|
+
}
|