Staff Pick

๐Ÿ“ก Monitor your APIs โ€” know when they go down before your users do

Better Stack checks uptime every 30 seconds with instant Slack, email & SMS alerts. Free tier available.

Start Free โ†’

Affiliate link โ€” we may earn a commission at no extra cost to you

Paddle Status: How to Check If Paddle Is Down Right Now (2026)

Updated June 2026 ยท 7 min read ยท By API Status Check

Paddle is a Merchant of Record (MoR) payment platform used by thousands of SaaS companies to sell software globally โ€” handling payments, subscriptions, VAT/sales tax, chargebacks, and compliance in one place. When Paddle experiences downtime, the impact is direct: checkout stops converting, subscription renewals may fail, and new users can't complete purchases. Understanding Paddle's status page and knowing how to diagnose issues quickly is critical for any SaaS business relying on Paddle for revenue.

Understanding Paddle's Status Page (status.paddle.com)

Paddle operates status.paddle.com โ€” its official status page. Each component maps to a different part of the Paddle platform, so you can identify whether your specific integration (checkout, subscriptions, webhooks) is affected.

Paddle API

The core Paddle REST API (api.paddle.com) used for managing subscriptions, products, prices, customers, and transactions programmatically. Issues here affect all server-side Paddle operations.

Checkout

The Paddle-hosted checkout overlay and checkout pages where customers complete purchases. Checkout downtime directly blocks new subscription sign-ups and one-time purchases.

Subscription Billing

Automated subscription renewal processing, dunning, and retry logic. Issues here can delay or fail scheduled subscription renewals โ€” check your revenue dashboard closely during incidents.

Webhooks

Real-time event notifications to your server for subscription.activated, transaction.completed, payment.failed, and other events. Webhook delays mean your app can't provision new subscribers in real time.

Seller Dashboard

The Paddle seller portal (vendors.paddle.com) for managing products, viewing transactions, and handling disputes. Dashboard issues affect manual operations but typically not automated billing.

Retain (Dunning)

Paddle's automated failed payment recovery system that retries failed payments and sends dunning emails. Issues can result in failed renewals not being retried correctly.

What Paddle Status Colors Mean

๐ŸŸข
Operational: All Paddle systems working normally. Checkout, API, and subscription billing processing as expected.
๐ŸŸก
Degraded Performance: Paddle systems are functional but slower than normal. Checkout may have higher latency, API calls may timeout more frequently. Conversion rates can be affected during degraded performance.
๐ŸŸ 
Partial Outage: Some Paddle components are failing. Checkout may be down while the API is operational, or webhooks may be delayed while payment processing continues. Check which specific component is affected.
๐Ÿ”ด
Major Outage: Widespread Paddle infrastructure failure. New purchases cannot be completed. Subscription renewals may be queued for retry. Existing subscriptions are not cancelled during outages.
๐Ÿ”ต
Under Maintenance: Planned maintenance window. Paddle typically performs maintenance during off-peak hours. Core payment processing is usually maintained during planned maintenance.
๐Ÿ“ก
Recommended

Monitor Paddle checkout and API automatically

Better Stack lets you monitor Paddle's API and checkout endpoints independently. Get Slack or SMS alerts when Paddle checkout fails or API calls start erroring โ€” before revenue is impacted. Free plan available.

Try Better Stack Free โ†’

5 Ways to Check If Paddle Is Down

1.

status.paddle.com (Official)

Paddle's own status page. Updated by their engineering team during incidents. Can lag 10โ€“20 minutes behind actual outages, especially for intermittent checkout failures that take time to confirm.

Check status.paddle.com โ†’
2.

X / Twitter Real-Time Reports

Search 'Paddle down' or 'Paddle checkout not working' on X. SaaS founders and developers report payment failures in real time. Often the fastest signal for confirming a widespread Paddle outage.

Search X for 'Paddle down' โ†’
3.

Test a Paddle API endpoint directly

Make an authenticated API call to the Paddle API. A 200 response confirms the API is operational. This tests infrastructure โ€” it doesn't guarantee checkout is working for end users.

curl -X GET https://api.paddle.com/products \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json"
4.

Check your checkout conversion metrics

If you have conversion tracking, a sudden drop in checkout completions is often the earliest signal of a Paddle issue โ€” before the status page is updated. Monitor checkout funnel metrics as a leading indicator.

5.

Monitor Paddle webhook delivery

Set up independent monitoring for your Paddle webhook endpoint. A drop in webhook events (subscriptions, transactions) that doesn't match your traffic pattern can indicate Paddle webhook delivery issues before a full outage is declared.

Paddle Checkout Issues: Outage vs. Configuration Problem

Not all Paddle checkout failures are caused by Paddle infrastructure outages. Here's how to distinguish a Paddle platform outage from a local integration problem:

Paddle.js overlay not openingOften a CSP (Content Security Policy) header blocking Paddle scripts. Check your browser console for CSP errors mentioning "checkout.paddle.com" or "cdn.paddle.com". This is a configuration issue, not a Paddle outage.
Checkout loads but payment is declinedCard declines are handled by the card network โ€” not necessarily a Paddle infrastructure issue. Test with a Paddle sandbox environment using test card numbers to rule out card-specific issues.
Webhooks not arrivingCheck your server's webhook endpoint is publicly accessible and returning HTTP 200. Paddle retries failed webhook delivery automatically. Also check if your endpoint URL is configured correctly in the Paddle dashboard.
API returning 401 UnauthorizedYour API key is invalid, expired, or using the wrong environment (sandbox vs production). Not a Paddle outage โ€” verify your API key in the Paddle seller dashboard under Developer Tools โ†’ Authentication.
API returning 429 Too Many RequestsYou've hit Paddle's API rate limits. Not an outage โ€” implement exponential backoff and respect the Retry-After header. Paddle's default rate limit is 200 requests per minute.
API returning 500 / 503 errorsServer-side errors from Paddle's infrastructure. This IS an outage signal โ€” check status.paddle.com immediately and implement retry logic with exponential backoff.
Subscription renewals not processingCould be a Paddle outage, a customer's payment method failing, or Retain (dunning) configuration. Check your Paddle dashboard for failed payment events and distinguish between infrastructure failures and payment failures.

Paddle Classic vs. Paddle Billing: Key Differences

Paddle Classic (Legacy)

  • API: vendors.paddle.com/api/2.0
  • Checkout: checkout.paddle.com
  • Older seller accounts (pre-2023)
  • Separate status components on status.paddle.com
  • No longer accepting new merchants

Paddle Billing (Current)

  • API: api.paddle.com
  • Checkout: buy.paddle.com
  • All new merchants since 2023
  • Tracked separately on status.paddle.com
  • Improved API structure and webhook events

Paddle Reliability: What the Data Shows

99.9%+
API uptime target
Paddle's SLA targets for core payment processing infrastructure
Rare
Full checkout outages
Complete checkout failures are uncommon โ€” partial or degraded performance more frequent
Immediate
Subscription impact
New subscriptions blocked during checkout outages; existing subscriptions persist safely

Paddle's core payment infrastructure is generally reliable. The most common issues are partial checkout degradation (higher latency, occasional failures) rather than full outages. Monitor checkout conversion rates as a leading indicator โ€” drops often appear before the Paddle status page is updated.

๐Ÿ“ก
Recommended

Get alerted when Paddle checkout goes down

Better Stack monitors Paddle independently. When checkout fails or API calls start erroring, get Slack or SMS alerts before revenue impact compounds. Set up in 2 minutes.

Try Better Stack Free โ†’

What to Do When Paddle Is Down

If Checkout Is Down

  • Confirm the outage on status.paddle.com before communicating to users
  • Add a maintenance notice to your pricing page
  • Collect interested buyer emails manually as a temporary measure
  • Check Paddle's Twitter/X for real-time updates during incidents
  • Contact Paddle support โ€” enterprise customers have dedicated SLAs

If Webhooks Are Delayed

  • Don't provision subscriptions solely based on webhook arrival timing
  • Implement idempotency โ€” delayed webhooks will deliver; handle duplicates safely
  • Poll the Paddle API directly to confirm subscription state for critical flows
  • Check your webhook logs in the Paddle dashboard for delivery status
  • Implement a fallback polling mechanism for subscription-critical features

Frequently Asked Questions

Where is the official Paddle status page?

Paddle's official status page is at status.paddle.com. It shows real-time status for the Paddle API, Checkout, Subscription Billing, Webhooks, Retain (dunning), and the seller dashboard โ€” separately for Paddle Classic and Paddle Billing. You can subscribe to email notifications for incidents.

If Paddle is down, will my subscribers get cancelled?

No. Subscription cancellations require explicit action โ€” a Paddle outage does not auto-cancel subscriptions. Renewals due during the outage are queued and typically retried once service recovers. Existing subscriber access continues during outages.

Why is Paddle checkout not loading on my site?

Paddle checkout failures are often local integration issues rather than Paddle outages. Most common causes: Content Security Policy (CSP) headers blocking Paddle scripts, ad blockers blocking checkout.paddle.com, incorrect product or price IDs, or a Paddle.js initialization error. Check your browser console for JavaScript errors before assuming a Paddle outage.

What are the best Paddle alternatives if I need a fallback?

For MoR-model payments: Lemon Squeezy (popular for indie devs), Stripe (direct payment processor โ€” you handle tax compliance), and FastSpring (enterprise-focused MoR). Note that switching payment processors requires migrating subscribers, so fallbacks work better as a parallel option than a complete replacement.

How do I get alerts when Paddle goes down?

Subscribe to email notifications at status.paddle.com, or use Better Stack or API Status Check Alert Pro to independently monitor Paddle API availability and checkout endpoint health. For payment-critical monitoring, also track your checkout conversion rates โ€” drops there often precede official Paddle status updates.

Alert Pro

14-day free trial

Stop checking โ€” get alerted instantly

Next time Paddle goes down, you'll know in under 60 seconds โ€” not when your users start complaining.

  • Email alerts for Paddle + 9 more APIs
  • $0 due today for trial
  • Cancel anytime โ€” $9/mo after trial

Never Miss a Paddle Outage Again

Monitor Paddle checkout and API health with independent real-time monitoring. Get alerted the moment checkout fails โ€” before revenue impact compounds.

Try Better Stack Free โ€” No Credit Card Required

Or use APIStatusCheck Alert Pro โ€” API monitoring from $9/mo

๐ŸŒ Can't Access Paddle?

If Paddle is working for others but not for you, it might be an ISP or regional issue. A VPN can help bypass network-level blocks and routing problems.

๐Ÿ”’

Troubleshoot with a VPN

Connect from a different region to test if the issue is local to your network. Also protects your connection on public Wi-Fi.

Try NordVPN โ€” 30-Day Money-Back Guarantee
๐Ÿ”‘

Secure Your Paddle Account

Service outages are a common time for phishing attacks. Use a password manager to keep unique, strong passwords for every account.

Try NordPass โ€” Free Password Manager
Quick ISP test: Try accessing Paddle on mobile data (Wi-Fi off). If it works, the issue is with your ISP or local network.

โณ While You Wait โ€” Try These Alternatives

๐Ÿ›  Tools We Use & Recommend

Tested across our own infrastructure monitoring 200+ APIs daily

Better StackBest for API Teams

Uptime Monitoring & Incident Management

Used by 100,000+ websites

Monitors your APIs every 30 seconds. Instant alerts via Slack, email, SMS, and phone calls when something goes down.

โ€œWe use Better Stack to monitor every API on this site. It caught 23 outages last month before users reported them.โ€

Free tier ยท Paid from $24/moStart Free Monitoring
1PasswordBest for Credential Security

Secrets Management & Developer Security

Trusted by 150,000+ businesses

Manage API keys, database passwords, and service tokens with CLI integration and automatic rotation.

โ€œAfter covering dozens of outages caused by leaked credentials, we recommend every team use a secrets manager.โ€

SEMrushBest for SEO

SEO & Site Performance Monitoring

Used by 10M+ marketers

Track your site health, uptime, search rankings, and competitor movements from one dashboard.

โ€œWe use SEMrush to track how our API status pages rank and catch site health issues early.โ€

From $129.95/moTry SEMrush Free
View full comparison & more tools โ†’Affiliate links โ€” we earn a commission at no extra cost to you