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.
Files changed (75) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +118 -0
  3. package/SKILL.md +593 -0
  4. package/data/tools/algolia.json +101 -0
  5. package/data/tools/amplitude.json +73 -0
  6. package/data/tools/auth0-b2b.json +175 -0
  7. package/data/tools/auth0-b2c.json +183 -0
  8. package/data/tools/buildkite.json +104 -0
  9. package/data/tools/checkly.json +112 -0
  10. package/data/tools/circleci.json +102 -0
  11. package/data/tools/clerk.json +109 -0
  12. package/data/tools/cloudflare.json +71 -0
  13. package/data/tools/contentful.json +71 -0
  14. package/data/tools/convex.json +74 -0
  15. package/data/tools/courier.json +80 -0
  16. package/data/tools/deno-deploy.json +145 -0
  17. package/data/tools/depot.json +66 -0
  18. package/data/tools/descope.json +130 -0
  19. package/data/tools/engagespot.json +84 -0
  20. package/data/tools/fly-io.json +53 -0
  21. package/data/tools/github-actions.json +64 -0
  22. package/data/tools/honeycomb.json +65 -0
  23. package/data/tools/inngest.json +80 -0
  24. package/data/tools/launchdarkly.json +81 -0
  25. package/data/tools/mergent.json +116 -0
  26. package/data/tools/mixpanel.json +70 -0
  27. package/data/tools/mux.json +164 -0
  28. package/data/tools/neon.json +173 -0
  29. package/data/tools/netlify.json +99 -0
  30. package/data/tools/new-relic.json +104 -0
  31. package/data/tools/novu.json +94 -0
  32. package/data/tools/orama.json +153 -0
  33. package/data/tools/paddle.json +46 -0
  34. package/data/tools/planetscale-postgres.json +108 -0
  35. package/data/tools/planetscale-vitess.json +82 -0
  36. package/data/tools/plausible.json +75 -0
  37. package/data/tools/posthog.json +101 -0
  38. package/data/tools/postmark.json +93 -0
  39. package/data/tools/railway.json +161 -0
  40. package/data/tools/render.json +94 -0
  41. package/data/tools/resend.json +135 -0
  42. package/data/tools/sanity.json +98 -0
  43. package/data/tools/sendgrid.json +78 -0
  44. package/data/tools/sentry.json +276 -0
  45. package/data/tools/statsig.json +70 -0
  46. package/data/tools/storyblok.json +121 -0
  47. package/data/tools/stripe.json +46 -0
  48. package/data/tools/supabase.json +100 -0
  49. package/data/tools/tigris.json +70 -0
  50. package/data/tools/trigger-dev.json +90 -0
  51. package/data/tools/turso.json +226 -0
  52. package/data/tools/unosend.json +88 -0
  53. package/data/tools/upstash.json +85 -0
  54. package/data/tools/vercel.json +146 -0
  55. package/data/tools/weaviate.json +93 -0
  56. package/data/tools/workos.json +127 -0
  57. package/dist/src/index.d.ts +2 -0
  58. package/dist/src/index.js +23 -0
  59. package/dist/src/registry/registry.d.ts +52 -0
  60. package/dist/src/registry/registry.js +216 -0
  61. package/dist/src/schema/pricing.d.ts +191 -0
  62. package/dist/src/schema/pricing.js +89 -0
  63. package/dist/src/server.d.ts +3 -0
  64. package/dist/src/server.js +32 -0
  65. package/dist/src/tools/compare-tools.d.ts +61 -0
  66. package/dist/src/tools/compare-tools.js +115 -0
  67. package/dist/src/tools/estimate-cost.d.ts +44 -0
  68. package/dist/src/tools/estimate-cost.js +61 -0
  69. package/dist/src/tools/find-cheapest.d.ts +54 -0
  70. package/dist/src/tools/find-cheapest.js +93 -0
  71. package/dist/src/tools/get-pricing.d.ts +51 -0
  72. package/dist/src/tools/get-pricing.js +23 -0
  73. package/dist/src/tools/search-tools.d.ts +55 -0
  74. package/dist/src/tools/search-tools.js +52 -0
  75. package/package.json +40 -0
@@ -0,0 +1,102 @@
1
+ {
2
+ "id": "circleci",
3
+ "name": "CircleCI",
4
+ "description": "Flexible usage-based CI/CD platform with Docker, Linux, macOS, Windows, and Arm support",
5
+ "url": "https://circleci.com",
6
+ "pricingUrl": "https://circleci.com/pricing.md",
7
+ "category": "ci-cd",
8
+ "tags": [
9
+ "ci-cd",
10
+ "continuous-integration",
11
+ "continuous-deployment",
12
+ "docker",
13
+ "pipelines"
14
+ ],
15
+ "lastVerified": "2026-04-02",
16
+ "freshnessCategory": "volatile",
17
+ "currency": "USD",
18
+ "portability": {
19
+ "switchingCost": "moderate",
20
+ "openStandard": "YAML",
21
+ "whatYouLose": "CircleCI orbs, credit-based billing optimizations, Docker layer caching config, pipeline insights, IP ranges feature"
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
+ {
34
+ "name": "credits",
35
+ "pricePerUnit": 0,
36
+ "unitQuantity": 25000,
37
+ "includedQuantity": 30000,
38
+ "unit": "credits"
39
+ }
40
+ ],
41
+ "features": [],
42
+ "limits": {
43
+ "activeUsers": 5,
44
+ "concurrencyDocker": 30,
45
+ "selfHostedRunners": 5,
46
+ "networkGB": 1,
47
+ "storageGB": 2
48
+ }
49
+ },
50
+ {
51
+ "name": "Performance",
52
+ "slug": "performance",
53
+ "pricingModel": "tiered",
54
+ "basePrice": 15,
55
+ "billingPeriod": "monthly",
56
+ "annualDiscount": null,
57
+ "seatPrice": 15,
58
+ "usageMetrics": [
59
+ {
60
+ "name": "credits",
61
+ "pricePerUnit": 15,
62
+ "unitQuantity": 25000,
63
+ "includedQuantity": 30000,
64
+ "tieredPricing": [
65
+ {
66
+ "upTo": 30000,
67
+ "pricePerUnit": 0
68
+ },
69
+ {
70
+ "upTo": null,
71
+ "pricePerUnit": 15
72
+ }
73
+ ],
74
+ "unit": "credits"
75
+ }
76
+ ],
77
+ "features": [],
78
+ "limits": {
79
+ "activeUsers": 5,
80
+ "concurrencyDocker": 80,
81
+ "selfHostedRunners": 20,
82
+ "networkGB": 5,
83
+ "storageGB": 2
84
+ }
85
+ },
86
+ {
87
+ "name": "Scale",
88
+ "slug": "scale",
89
+ "pricingModel": "custom",
90
+ "basePrice": null,
91
+ "billingPeriod": "annual",
92
+ "annualDiscount": null,
93
+ "seatPrice": null,
94
+ "usageMetrics": [],
95
+ "features": [],
96
+ "limits": {
97
+ "networkGB": 50,
98
+ "storageGB": 200
99
+ }
100
+ }
101
+ ]
102
+ }
@@ -0,0 +1,109 @@
1
+ {
2
+ "id": "clerk",
3
+ "name": "Clerk",
4
+ "description": "Authentication and user management platform with prebuilt UI components, OAuth/OIDC support, and enterprise SSO",
5
+ "url": "https://clerk.com",
6
+ "pricingUrl": "https://clerk.com/pricing",
7
+ "category": "auth",
8
+ "tags": ["auth", "authentication", "user-management", "oauth", "oidc"],
9
+ "lastVerified": "2026-04-03",
10
+ "freshnessCategory": "volatile",
11
+ "currency": "USD",
12
+ "portability": {
13
+ "switchingCost": "significant",
14
+ "openStandard": "OAuth 2.0 / OIDC",
15
+ "whatYouLose": "Clerk components, prebuilt UI, user management dashboard, webhook integrations"
16
+ },
17
+ "tiers": [
18
+ {
19
+ "name": "Hobby",
20
+ "slug": "hobby",
21
+ "pricingModel": "free",
22
+ "basePrice": 0,
23
+ "billingPeriod": "monthly",
24
+ "annualDiscount": null,
25
+ "seatPrice": null,
26
+ "usageMetrics": [],
27
+ "features": [],
28
+ "limits": {
29
+ "mruPerApp": 50000,
30
+ "dashboardSeats": 3
31
+ }
32
+ },
33
+ {
34
+ "name": "Pro",
35
+ "slug": "pro",
36
+ "pricingModel": "hybrid",
37
+ "basePrice": 25,
38
+ "billingPeriod": "monthly",
39
+ "annualDiscount": 20,
40
+ "seatPrice": null,
41
+ "usageMetrics": [
42
+ {
43
+ "name": "Monthly Active Users (MRU)",
44
+ "unit": "MRU",
45
+ "pricePerUnit": 0.02,
46
+ "unitQuantity": 1,
47
+ "includedQuantity": 50000,
48
+ "tieredPricing": [
49
+ { "upTo": 50000, "pricePerUnit": 0 },
50
+ { "upTo": 100000, "pricePerUnit": 0.02 },
51
+ { "upTo": 1000000, "pricePerUnit": 0.018 },
52
+ { "upTo": 10000000, "pricePerUnit": 0.015 },
53
+ { "upTo": null, "pricePerUnit": 0.012 }
54
+ ]
55
+ },
56
+ {
57
+ "name": "Enterprise Connections",
58
+ "unit": "connections",
59
+ "pricePerUnit": 75,
60
+ "unitQuantity": 1,
61
+ "includedQuantity": 1
62
+ }
63
+ ],
64
+ "features": [],
65
+ "limits": {}
66
+ },
67
+ {
68
+ "name": "Business",
69
+ "slug": "business",
70
+ "pricingModel": "hybrid",
71
+ "basePrice": 300,
72
+ "billingPeriod": "monthly",
73
+ "annualDiscount": 17,
74
+ "seatPrice": 20,
75
+ "usageMetrics": [
76
+ {
77
+ "name": "Monthly Active Users (MRU)",
78
+ "unit": "MRU",
79
+ "pricePerUnit": 0.02,
80
+ "unitQuantity": 1,
81
+ "includedQuantity": 50000,
82
+ "tieredPricing": [
83
+ { "upTo": 50000, "pricePerUnit": 0 },
84
+ { "upTo": 100000, "pricePerUnit": 0.02 },
85
+ { "upTo": 1000000, "pricePerUnit": 0.018 },
86
+ { "upTo": 10000000, "pricePerUnit": 0.015 },
87
+ { "upTo": null, "pricePerUnit": 0.012 }
88
+ ]
89
+ }
90
+ ],
91
+ "features": [],
92
+ "limits": {
93
+ "dashboardSeats": 10
94
+ }
95
+ },
96
+ {
97
+ "name": "Enterprise",
98
+ "slug": "enterprise",
99
+ "pricingModel": "custom",
100
+ "basePrice": null,
101
+ "billingPeriod": null,
102
+ "annualDiscount": null,
103
+ "seatPrice": null,
104
+ "usageMetrics": [],
105
+ "features": [],
106
+ "limits": {}
107
+ }
108
+ ]
109
+ }
@@ -0,0 +1,71 @@
1
+ {
2
+ "id": "cloudflare",
3
+ "name": "Cloudflare",
4
+ "description": "Edge network platform providing CDN, DDoS protection, DNS, Workers serverless compute, and web security services",
5
+ "url": "https://cloudflare.com",
6
+ "pricingUrl": "https://cloudflare.com/plans/",
7
+ "category": "edge",
8
+ "tags": ["cdn", "edge", "security", "workers", "ddos"],
9
+ "lastVerified": "2026-04-03",
10
+ "freshnessCategory": "volatile",
11
+ "currency": "USD",
12
+ "portability": {
13
+ "switchingCost": "moderate",
14
+ "openStandard": null,
15
+ "whatYouLose": "Cloudflare network, Workers runtime, R2 storage integration, DDoS protection, CDN cache"
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
+ "workersRequestsPerDay": 100000
30
+ }
31
+ },
32
+ {
33
+ "name": "Pro",
34
+ "slug": "pro",
35
+ "pricingModel": "flat_rate",
36
+ "basePrice": 20,
37
+ "billingPeriod": "monthly",
38
+ "annualDiscount": null,
39
+ "seatPrice": null,
40
+ "usageMetrics": [],
41
+ "features": [],
42
+ "limits": {
43
+ "workersRequestsPerMonth": 10000000
44
+ }
45
+ },
46
+ {
47
+ "name": "Business",
48
+ "slug": "business",
49
+ "pricingModel": "flat_rate",
50
+ "basePrice": 200,
51
+ "billingPeriod": "monthly",
52
+ "annualDiscount": null,
53
+ "seatPrice": null,
54
+ "usageMetrics": [],
55
+ "features": [],
56
+ "limits": {}
57
+ },
58
+ {
59
+ "name": "Enterprise",
60
+ "slug": "enterprise",
61
+ "pricingModel": "custom",
62
+ "basePrice": null,
63
+ "billingPeriod": null,
64
+ "annualDiscount": null,
65
+ "seatPrice": null,
66
+ "usageMetrics": [],
67
+ "features": [],
68
+ "limits": {}
69
+ }
70
+ ]
71
+ }
@@ -0,0 +1,71 @@
1
+ {
2
+ "id": "contentful",
3
+ "name": "Contentful",
4
+ "description": "API-first content management platform for digital experiences",
5
+ "url": "https://contentful.com",
6
+ "pricingUrl": "https://www.contentful.com/pricing/",
7
+ "category": "cms",
8
+ "tags": [],
9
+ "lastVerified": "2026-04-03",
10
+ "freshnessCategory": "volatile",
11
+ "currency": "EUR",
12
+ "portability": {
13
+ "switchingCost": "significant",
14
+ "openStandard": null,
15
+ "whatYouLose": "Content model, Contentful App Framework, rich text editor, localization workflows"
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
+ "users": 10,
30
+ "roles": 2,
31
+ "locales": 2,
32
+ "apiCallsPerMonth": 100000,
33
+ "cdnBandwidthGb": 50,
34
+ "contentTypes": 25,
35
+ "environments": 2,
36
+ "records": 10000,
37
+ "spaces": 1
38
+ }
39
+ },
40
+ {
41
+ "name": "Lite",
42
+ "slug": "lite",
43
+ "pricingModel": "flat_rate",
44
+ "basePrice": 300,
45
+ "billingPeriod": "monthly",
46
+ "annualDiscount": null,
47
+ "seatPrice": null,
48
+ "usageMetrics": [],
49
+ "features": [],
50
+ "limits": {
51
+ "users": 20,
52
+ "roles": 3,
53
+ "locales": 3,
54
+ "apiCallsPerMonth": 1000000,
55
+ "cdnBandwidthGb": 100
56
+ }
57
+ },
58
+ {
59
+ "name": "Premium",
60
+ "slug": "premium",
61
+ "pricingModel": "custom",
62
+ "basePrice": null,
63
+ "billingPeriod": null,
64
+ "annualDiscount": null,
65
+ "seatPrice": null,
66
+ "usageMetrics": [],
67
+ "features": [],
68
+ "limits": {}
69
+ }
70
+ ]
71
+ }
@@ -0,0 +1,74 @@
1
+ {
2
+ "id": "convex",
3
+ "name": "Convex",
4
+ "description": "Reactive backend platform with real-time sync, server functions, and integrated database",
5
+ "url": "https://convex.dev",
6
+ "pricingUrl": "https://convex.dev/pricing",
7
+ "category": "database",
8
+ "tags": [],
9
+ "lastVerified": "2026-04-03",
10
+ "freshnessCategory": "volatile",
11
+ "currency": "USD",
12
+ "portability": {
13
+ "switchingCost": "significant",
14
+ "openStandard": null,
15
+ "whatYouLose": "Convex reactive queries, real-time sync, server functions, scheduling, file storage integration"
16
+ },
17
+ "tiers": [
18
+ {
19
+ "name": "Starter",
20
+ "slug": "starter",
21
+ "pricingModel": "free",
22
+ "basePrice": 0,
23
+ "billingPeriod": null,
24
+ "annualDiscount": null,
25
+ "seatPrice": null,
26
+ "usageMetrics": [],
27
+ "features": [],
28
+ "limits": {
29
+ "developers": 6,
30
+ "functionCallsPerMonth": 1000000,
31
+ "databaseStorageGb": 0.5,
32
+ "fileStorageGb": 1,
33
+ "databaseIoGbPerMonth": 1,
34
+ "dataEgressGbPerMonth": 1,
35
+ "deployments": 40
36
+ }
37
+ },
38
+ {
39
+ "name": "Professional",
40
+ "slug": "professional",
41
+ "pricingModel": "per_seat",
42
+ "basePrice": 25,
43
+ "billingPeriod": "monthly",
44
+ "annualDiscount": null,
45
+ "seatPrice": 25,
46
+ "usageMetrics": [],
47
+ "features": [],
48
+ "limits": {
49
+ "developers": 20,
50
+ "functionCallsPerMonth": 25000000,
51
+ "databaseStorageGb": 50,
52
+ "fileStorageGb": 100,
53
+ "databaseIoGbPerMonth": 50,
54
+ "dataEgressGbPerMonth": 50,
55
+ "deployments": 300,
56
+ "concurrentSessions": 10000
57
+ }
58
+ },
59
+ {
60
+ "name": "Business",
61
+ "slug": "business",
62
+ "pricingModel": "custom",
63
+ "basePrice": 2500,
64
+ "billingPeriod": "monthly",
65
+ "annualDiscount": null,
66
+ "seatPrice": null,
67
+ "usageMetrics": [],
68
+ "features": [],
69
+ "limits": {
70
+ "developers": 50
71
+ }
72
+ }
73
+ ]
74
+ }
@@ -0,0 +1,80 @@
1
+ {
2
+ "id": "courier",
3
+ "name": "Courier",
4
+ "description": "Multichannel notification platform for email, push, SMS, in-app, and chat",
5
+ "url": "https://courier.com",
6
+ "pricingUrl": "https://courier.com/pricing.md",
7
+ "category": "notifications",
8
+ "tags": [
9
+ "notifications",
10
+ "multichannel",
11
+ "email",
12
+ "push",
13
+ "sms",
14
+ "in-app"
15
+ ],
16
+ "lastVerified": "2026-04-02",
17
+ "freshnessCategory": "volatile",
18
+ "currency": "USD",
19
+ "portability": {
20
+ "switchingCost": "moderate",
21
+ "openStandard": null,
22
+ "whatYouLose": "Courier notification routing, template builder, preference center"
23
+ },
24
+ "tiers": [
25
+ {
26
+ "name": "Developer",
27
+ "slug": "developer",
28
+ "pricingModel": "free",
29
+ "basePrice": 0,
30
+ "billingPeriod": "monthly",
31
+ "annualDiscount": null,
32
+ "seatPrice": null,
33
+ "usageMetrics": [
34
+ {
35
+ "name": "sends",
36
+ "unit": "sends",
37
+ "pricePerUnit": 0,
38
+ "unitQuantity": 1,
39
+ "includedQuantity": 10000
40
+ }
41
+ ],
42
+ "features": [],
43
+ "limits": {
44
+ "sendsPerMonth": 10000
45
+ }
46
+ },
47
+ {
48
+ "name": "Business",
49
+ "slug": "business",
50
+ "pricingModel": "usage_based",
51
+ "basePrice": 0,
52
+ "billingPeriod": "monthly",
53
+ "annualDiscount": null,
54
+ "seatPrice": null,
55
+ "usageMetrics": [
56
+ {
57
+ "name": "sends",
58
+ "unit": "sends",
59
+ "pricePerUnit": 0.005,
60
+ "unitQuantity": 1,
61
+ "includedQuantity": 0
62
+ }
63
+ ],
64
+ "features": [],
65
+ "limits": {}
66
+ },
67
+ {
68
+ "name": "Enterprise",
69
+ "slug": "enterprise",
70
+ "pricingModel": "custom",
71
+ "basePrice": null,
72
+ "billingPeriod": null,
73
+ "annualDiscount": null,
74
+ "seatPrice": null,
75
+ "usageMetrics": [],
76
+ "features": [],
77
+ "limits": {}
78
+ }
79
+ ]
80
+ }
@@ -0,0 +1,145 @@
1
+ {
2
+ "id": "deno-deploy",
3
+ "name": "Deno Deploy",
4
+ "description": "Edge-first serverless platform for JavaScript and TypeScript with built-in Deno KV database",
5
+ "url": "https://deno.com",
6
+ "pricingUrl": "https://deno.com/deploy/pricing",
7
+ "category": "edge",
8
+ "tags": [],
9
+ "lastVerified": "2026-04-03",
10
+ "freshnessCategory": "volatile",
11
+ "currency": "USD",
12
+ "portability": {
13
+ "switchingCost": "moderate",
14
+ "openStandard": "Web Standards (Fetch, Web Crypto)",
15
+ "whatYouLose": "Deno KV, global edge network, automatic TLS, deploy-from-GitHub"
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
+ "requestsPerMonth": 1000000,
30
+ "egressBandwidthGb": 100,
31
+ "kvStorageGiB": 1,
32
+ "kvReadUnitsPerMonth": 450000,
33
+ "kvWriteUnitsPerMonth": 300000
34
+ }
35
+ },
36
+ {
37
+ "name": "Pro",
38
+ "slug": "pro",
39
+ "pricingModel": "hybrid",
40
+ "basePrice": 20,
41
+ "billingPeriod": "monthly",
42
+ "annualDiscount": null,
43
+ "seatPrice": null,
44
+ "usageMetrics": [
45
+ {
46
+ "name": "requests",
47
+ "unit": "requests",
48
+ "pricePerUnit": 2,
49
+ "unitQuantity": 1000000,
50
+ "includedQuantity": 5000000
51
+ },
52
+ {
53
+ "name": "egress",
54
+ "unit": "GB",
55
+ "pricePerUnit": 0.50,
56
+ "unitQuantity": 1,
57
+ "includedQuantity": 200
58
+ },
59
+ {
60
+ "name": "kv-storage",
61
+ "unit": "GiB",
62
+ "pricePerUnit": 0.75,
63
+ "unitQuantity": 1,
64
+ "includedQuantity": 5
65
+ },
66
+ {
67
+ "name": "kv-reads",
68
+ "unit": "reads",
69
+ "pricePerUnit": 1,
70
+ "unitQuantity": 1000000,
71
+ "includedQuantity": 1300000
72
+ },
73
+ {
74
+ "name": "kv-writes",
75
+ "unit": "writes",
76
+ "pricePerUnit": 2.50,
77
+ "unitQuantity": 1000000,
78
+ "includedQuantity": 900000
79
+ }
80
+ ],
81
+ "features": [],
82
+ "limits": {}
83
+ },
84
+ {
85
+ "name": "Builder",
86
+ "slug": "builder",
87
+ "pricingModel": "hybrid",
88
+ "basePrice": 200,
89
+ "billingPeriod": "monthly",
90
+ "annualDiscount": null,
91
+ "seatPrice": null,
92
+ "usageMetrics": [
93
+ {
94
+ "name": "requests",
95
+ "unit": "requests",
96
+ "pricePerUnit": 2,
97
+ "unitQuantity": 1000000,
98
+ "includedQuantity": 20000000
99
+ },
100
+ {
101
+ "name": "egress",
102
+ "unit": "GB",
103
+ "pricePerUnit": 0.50,
104
+ "unitQuantity": 1,
105
+ "includedQuantity": 300
106
+ },
107
+ {
108
+ "name": "kv-storage",
109
+ "unit": "GiB",
110
+ "pricePerUnit": 0.75,
111
+ "unitQuantity": 1,
112
+ "includedQuantity": 10
113
+ },
114
+ {
115
+ "name": "kv-reads",
116
+ "unit": "reads",
117
+ "pricePerUnit": 1,
118
+ "unitQuantity": 1000000,
119
+ "includedQuantity": 5000000
120
+ },
121
+ {
122
+ "name": "kv-writes",
123
+ "unit": "writes",
124
+ "pricePerUnit": 2.50,
125
+ "unitQuantity": 1000000,
126
+ "includedQuantity": 3000000
127
+ }
128
+ ],
129
+ "features": [],
130
+ "limits": {}
131
+ },
132
+ {
133
+ "name": "Enterprise",
134
+ "slug": "enterprise",
135
+ "pricingModel": "custom",
136
+ "basePrice": null,
137
+ "billingPeriod": null,
138
+ "annualDiscount": null,
139
+ "seatPrice": null,
140
+ "usageMetrics": [],
141
+ "features": [],
142
+ "limits": {}
143
+ }
144
+ ]
145
+ }