Skip to main content

Pro Plan Overview

The Pro plan is designed for growing projects, production applications, and teams that need more capacity and faster support.

Plan Limits

Events per Month

1,000 events10x more events than the Free plan - perfect for production apps

Event Categories

10 categoriesOrganize complex projects with more granular event categorization

Everything in Free, Plus:

Increased Capacity

  • 1,000 events per month: 10x more than the Free plan
  • 10 event categories: Better organization for complex projects
  • Same monthly reset schedule (1st of each month)

Priority Support

  • Faster response times
  • Direct access to the support team
  • Help with integration and troubleshooting

Production-Ready

  • Suitable for production applications
  • Higher reliability guarantees
  • Better for customer-facing features

All Core Features Included

The Pro plan includes everything from the Free plan:

Multi-Channel Delivery

Discord, Telegram, and email notifications for every event

Custom Categories

Organize events with custom colors, emojis, and names

Full API Access

Complete REST API with secure authentication

Real-Time Dashboard

Monitor events, delivery status, and quota usage

Quota Management

Your Pro plan quota works the same way as the Free plan, but with higher limits:
  • Monitor usage in real-time on your dashboard
  • Monthly quota resets on the 1st of each month
  • API returns 429 status when limit is reached
The quota check is enforced in route.ts:84-99:
const quotaLimit =
  user.plan === "FREE"
    ? FREE_QUOTA.maxEventsPerMonth
    : user.plan === "PRO"
    ? PRO_QUOTA.maxEventsPerMonth
    : ENTERPRISE_QUOTA.maxEventsPerMonth

if (quota && quota.count >= quotaLimit) {
  return NextResponse.json(
    {
      message:
        "Monthly quota reached. Please upgrade your plan for more events",
    },
    { status: 429 }
  )
}

Use Cases

The Pro plan is ideal for:

Production Apps

Applications serving real users that need reliable event monitoring

SaaS Products

Software-as-a-Service products that integrate PingPilot for notifications

Team Projects

Collaborative projects with multiple developers and event sources

Active Monitoring

Applications with frequent events that exceed Free plan limits

Pricing

The Pro plan is a one-time payment processed securely through Stripe. Visit your dashboard to see current pricing and checkout.

Upgrading to Pro

1

Go to your dashboard

Navigate to the pricing section in your dashboard
2

Select Pro plan

Click on the Pro plan upgrade button
3

Complete checkout

Enter payment details via Stripe’s secure checkout
4

Start using increased limits

Your new quotas take effect immediately after payment
The upgrade process is handled by the payment router at payment-router.ts:7-24

When to Upgrade to Enterprise

Consider upgrading to Enterprise if you:
  • Need more than 1,000 events per month
  • Want to create more than 10 event categories
  • Require custom integrations or features
  • Need dedicated support and SLAs

Need more capacity?

View Enterprise plan features

Build docs developers (and LLMs) love