DEV Community

Cover image for How to activate boosted free plan from Sanity CMS (double the limits using coupons)
Surjith S M
Surjith S M

Posted on • Updated on

How to activate boosted free plan from Sanity CMS (double the limits using coupons)

Sanity is a popular CMS. It gives a generous free plan to get started with any project. But how about getting double the free limits? Here's how:

What does the regular Sanity free plan include?

  • 100k API requests
  • 500K API CDN requests
  • 10GB Bandwidth.

What does the Sanity boosted free plan include?

  • 200k API requests
  • 1M API CDN requests
  • 20GB Bandwidth.

Method 1: Using Youtube Coupon

Sanity Youtube Videos offers double free limits for their viewers. See: https://www.sanity.io/youtube

Follow the link above to create boosted plan or add the following command while creating new project.

npm install -g @sanity/cli
sanity init --coupon kapnstt
Enter fullscreen mode Exit fullscreen mode

Method 2: Using Productday Coupon

Sanity provides high limits for Productday - The v3 launch. See Announcement.

# To launch a new project with the coupon
npm create sanity@latest -- --coupon productday
Enter fullscreen mode Exit fullscreen mode

Method 3: Using Syntax FM Coupon

Sanity has been partnered with Syntax FM and provides double the limits. See: https://www.sanity.io/syntax

Add the following command while creating new project.

npm install -g @sanity/cli
sanity init --coupon syntaxfm2022
Enter fullscreen mode Exit fullscreen mode

Method 4: Using Next.js Conf Coupon

Sanity is a sponsor of Next.js Conference. Thus they provide double the limit for Next.js Conf participants. See: https://www.sanity.io/nextjsconf

Deploy their new Sanity Starter using the following link and which will get you double the limits.

Deploy Next.js + Sanity Starter

Method 5: Using Freecodecamp Coupon

Sanity partners with freecodecamp to get double free limits for their students. See: https://www.sanity.io/freecodecamp

Follow the link above to create boosted plan or add the following command while creating new project.

npm install -g @sanity/cli
sanity init --coupon boosted-free-2021-12-08
Enter fullscreen mode Exit fullscreen mode

Method 6: Using Modern Frontends Coupon

Sanity partnered with Modern Frontends double free limits for their viewers. See: https://www.sanity.io/modernfrontendslive

Follow the link above to create boosted plan or add the following command while creating new project.

npm install -g @sanity/cli
sanity init --coupon modernfrontends22
Enter fullscreen mode Exit fullscreen mode

Method 7: Using Fireship Coupon

Sanity partnered with Fireship to get double free limits for their youtube viewers. See: https://www.sanity.io/fireship

Follow the link above to create boosted plan or add the following command while creating new project.

npm install -g @sanity/cli
sanity init --project-plan boosted-free-2021-12-08
Enter fullscreen mode Exit fullscreen mode

Method 8: Sanity Meetups & Conference

If none of the above method works for you while you read this (it works as of now) you can still get double limits by participating on Sanity meetups and conference which happens every few months.


I definitely recommend you to use Sanity CMS. Its better than any other CMS and the developer experience is top notch.

Top comments (0)