PlatformPlans

Liveblocks offers three plans: Starter, Pro, and Enterprise. The Starter plan is free and includes all the features you need to get started, while the Pro and Enterprise plans offer higher limits, enhanced features and resources.

Starter plan

The Starter plan is free and designed for developers getting started with Liveblocks. Key features include:

  • Up to 100 monthly active users
  • Up to 10 simultaneous connections per room
  • 3 team members per account
  • Community support

Comments

Comments is free up to 100 monthly active users and

2,000 comments per month.

CommentsIncluded
Monthly active users included100
Monthly active users cap100
MAU overage rate
Monthly comments cap2,000

Notifications

Notifications is free up to 100 monthly active users and

2,000 comments per month.

NotificationsIncluded
Monthly active users included100
Monthly active users cap100
MAU overage rate
Monthly notifications cap2,000

Text editor

Text editor is free up to 100 monthly active users and

256 MB data stored.

Text editorIncluded
Monthly active users included100
Monthly active users cap100
MAU overage rate
Total GB stored256 MB

Realtime APIs

Realtime APIs is free up to 100 monthly active users and

256 MB data stored.

Realtime APIsIncluded
Monthly active users included100
Monthly active users cap100
MAU overage rate
Total GB stored256 MB

Pro plan

The Pro plan starts at $20/month and is designed for companies adding collaboration in production. Key features include:

  • 1,000 monthly active users included, then $0.02 for each additional MAU
  • Up to 25,000 monthly active users cap
  • Up to 50 simultaneous connections per room
  • 10 team members per account
  • Email support

Comments

Comments is free up to 100 monthly active users and

2,000 comments per month. You can get higher limits for an additional $30/month.

CommentsIncluded$30/month
Monthly active users included1001,000
Monthly active users cap10025,000
MAU overage rate$0.03 per each additional user
Monthly comments cap2,000100,000

Notifications

Notifications is free up to 100 monthly active users and

2,000 notifications per month. You can get higher limits for an additional $20/month.

NotificationsIncluded$20/month
Monthly active users included1001,000
Monthly active users cap10025,000
MAU overage rate$0.02 per each additional user
Monthly notifications cap2,000200,000

Text editor

Text editor is free up to 100 monthly active users and

256 MB data stored. You can get higher limits for an additional $80/month.

Text editorIncluded$80/month
Monthly active users included1001,000
Monthly active users cap10025,000
MAU overage rate$0.08 per each additional user
Total GB stored256 MB8 GB

Realtime APIs

Realtime APIs is free up to 100 monthly active users and

256 MB data stored. You can get higher limits for an additional $80/month.

Realtime APIsIncluded$80/month
Monthly active users included1001,000
Monthly active users cap10025,000
MAU overage rate$0.08 per each additional user
Total GB stored256 MB8 GB

Enterprise plan

The Enterprise plan is tailored for organizations with custom needs and advanced security. Key features include:

  • Custom monthly active users
  • Custom simultaneous connections per room
  • Custom team members per account
  • Premium support
  • Dedicated shared Slack channel
  • Volume discounts
  • SOC 2 Report
  • 99.9% Uptime SLA

Comments

Comments can be included in the enterpise plan.

Comments
Monthly active users includedCustom
Monthly active users capCustom
MAU overage rateCustom
Monthly comments capUnlimited

Notifications

Notifications can be included in the enterprise plan.

Notifications
Monthly active users includedCustom
Monthly active users capCustom
MAU overage rateCustom
Monthly notifications capUnlimited

Text editor

Text editor can be included in the enterprise plan.

Text editor
Monthly active users includedCustom
Monthly active users capCustom
MAU overage rateCustom
Total GB storedCustom

Realtime APIs

Realtime APIs can be included in the enterprise plan.

Realtime APIs
Monthly active users includedCustom
Monthly active users capCustom
MAU overage rateCustom
Total GB storedCustom

General billing information

What is a monthly active user?

Monthly active users (MAU) is the number of users that connect to Liveblocks in a given month.

Users are identified by the userId property provided in your authentication endpoint.

This userId generally comes from your database or your authentification provider. One unique userId corresponds to one user, whether they connected to a room 1 day for 5 minutes or kept coming back every day for 8 hours.

One user will be counted as one monthly active user, no matter how frequently they connect to Liveblocks rooms in any given month as long as it falls under our Fair Use Policy.

Do you count monthly active users during testing?

If you connect to rooms and call the Liveblocks API during any automated testing, you may want to provide a static userId to avoid hitting limits.

For example, you could do this by setting an environment variable and checking the process when you call authorize from @liveblocks/node.

.env.test
TEST_USERID="machine"
liveblocks.config.ts
export default async function auth(req, res) {  const room = req.body.room;  const response = await authorize({    room,    secret,    userId:      process.env.NODE_ENV === "test" ? process.env.TEST_USERID : "user123",  });  return res.status(response.status).end(response.body);}