Lemon Squeezy / Payments & SaaS Billing

Lemon Squeezy Status: How to Check If Lemon Squeezy Is Down (2026)

Updated June 2026 · 7 min read · API Status Check

Quick Answer

Check Lemon Squeezy status at status.lemonsqueezy.com (official) for real-time availability. Lemon Squeezy tracks checkout, storefront, API, webhooks, and dashboard separately.

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

The Official Lemon Squeezy Status Page

Lemon Squeezy maintains an official status page at status.lemonsqueezy.com. As a Merchant of Record platform for indie SaaS founders and digital product sellers, Lemon Squeezy tracks these key components:

Checkout: Lemon Squeezy's hosted checkout flow where customers complete purchases. Checkout outages directly block all new sales — customers cannot complete payment for your products or subscriptions. This is the highest-impact component for revenue.
Storefront / Store Pages: Hosted storefront pages (your.lemonsqueezy.com store or custom domain). Storefront outages make your product listings inaccessible. Customers who click product links see errors instead of your store.
API (api.lemonsqueezy.com): Lemon Squeezy's REST API for programmatic access to products, orders, subscriptions, customers, and license keys. API outages break custom integrations, license key validation systems, and automated subscription management workflows.
Webhooks: Event notifications sent to your endpoint for order completions, subscription changes, and payment failures. Webhook outages mean your application stops receiving real-time purchase events — license key delivery, subscription provisioning, and fulfillment automation all fail silently.
Dashboard (app.lemonsqueezy.com): The Lemon Squeezy merchant dashboard for managing products, orders, customers, and payouts. Dashboard outages prevent you from viewing sales data, managing subscriptions, or issuing refunds — but checkout and API processing typically continue.
License Key System: Lemon Squeezy's built-in license key management used by many indie developers for software licensing. License activation endpoints may have separate availability from the main checkout and API.

What Each Lemon Squeezy Status Means

Operational: All Lemon Squeezy services are working normally. Checkouts are completing, webhooks are firing, and the API is responding. If you have issues, check your product configuration, webhook URL, and API key.
Degraded Performance: Lemon Squeezy is experiencing elevated latency. Checkout may be slower to load or process. Webhook delivery may have delays. Sales are still processing but customer experience may be affected by slower checkout completion.
Partial Outage: A specific Lemon Squeezy service is affected. Common examples: webhooks down while checkout continues, or the API unavailable while the storefront works. Check which component is impacted to understand if sales are affected.
Major Outage: Core Lemon Squeezy services are down. Checkout is failing and new sales cannot complete. For indie founders whose revenue depends on Lemon Squeezy, this is a critical incident. Lemon Squeezy posts regular updates during incidents.
Under Maintenance: Planned maintenance. Lemon Squeezy typically schedules maintenance with advance notice. Some maintenance windows may briefly affect checkout availability.
📡
Recommended

Monitor your Lemon Squeezy store independently

Better Stack can monitor your Lemon Squeezy checkout and API availability, alerting you immediately when sales start failing — before customers give up and leave. Free tier included.

Try Better Stack Free →

Lemon Squeezy as a Merchant of Record: What It Means for Outages

MoR Model Changes Outage Impact

Unlike Stripe or Braintree (payment processors), Lemon Squeezy acts as the Merchant of Record — they handle the complete payment stack including tax, compliance, and fraud detection. When Lemon Squeezy is down, there's no alternative payment processor you can route to — your entire checkout is managed by their platform.

No Processor Fallback

Because Lemon Squeezy owns the entire payment relationship, you can't switch to Stripe or PayPal during an outage. Plan for this single point of dependency when evaluating the MoR model.

Tax Handling Is Automatic

Lemon Squeezy calculates and remits sales tax/VAT globally on your behalf. Tax-related service degradation is their responsibility — you don't need to validate tax calculations independently.

Payouts Are Separate from Checkout

Lemon Squeezy processes payouts on a schedule separate from real-time checkout. A checkout outage doesn't affect already-scheduled payouts in most cases.

Customer Emails Are Sent by Lemon Squeezy

Purchase receipts, license key delivery emails, and subscription notifications are sent by Lemon Squeezy infrastructure — not your email provider. During outages, these may be delayed.

Check Lemon Squeezy Status Programmatically

Monitor Lemon Squeezy availability from your own infrastructure:

# Check Lemon Squeezy status page
curl -s https://status.lemonsqueezy.com/api/v2/status.json \
  | python3 -c "import sys,json; d=json.load(sys.stdin); print(d['status']['description'])"

# Test Lemon Squeezy API (requires API key)
curl -s -o /dev/null -w "%{http_code}" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Accept: application/vnd.api+json" \
  "https://api.lemonsqueezy.com/v1/stores"

# 200 = API operational
# 401 = API reachable, key invalid
# 503 = API down
// Node.js: Lemon Squeezy health check
async function checkLemonSqueezyStatus() {
  const [statusRes, apiRes] = await Promise.allSettled([
    // Status page check
    fetch('https://status.lemonsqueezy.com/api/v2/status.json'),
    // API connectivity check
    fetch('https://api.lemonsqueezy.com/v1/stores', {
      headers: {
        Authorization: `Bearer ${process.env.LEMONSQUEEZY_API_KEY}`,
        Accept: 'application/vnd.api+json',
      },
    }),
  ]);

  return {
    statusPage: statusRes.status === 'fulfilled'
      ? (await statusRes.value.json()).status.indicator
      : 'unreachable',
    apiReachable: apiRes.status === 'fulfilled'
      ? apiRes.value.status !== 503
      : false,
  };
}

Alert Pro

14-day free trial

Stop checking — get alerted instantly

Next time Lemon Squeezy goes down, you'll know in under 60 seconds — not when your users start complaining.

  • Email alerts for Lemon Squeezy + 9 more APIs
  • $0 due today for trial
  • Cancel anytime — $9/mo after trial

Webhook Verification During Outages

Lemon Squeezy webhooks use signature verification. If webhooks stop arriving during normal platform operation, verify your endpoint is validating the signature correctly:

// Verify Lemon Squeezy webhook signature (Node.js)
import crypto from 'crypto';

function verifyLemonSqueezyWebhook(
  rawBody: string,
  signature: string,
  secret: string
): boolean {
  const hmac = crypto
    .createHmac('sha256', secret)
    .update(rawBody)
    .digest('hex');
  return crypto.timingSafeEqual(
    Buffer.from(hmac),
    Buffer.from(signature)
  );
}

// In your webhook handler:
// const signature = req.headers['x-signature'] as string;
// const isValid = verifyLemonSqueezyWebhook(rawBody, signature, process.env.LS_WEBHOOK_SECRET);
// If isValid is false — wrong secret, not an outage

What to Do When Lemon Squeezy Is Down

Checkout Outage

  • • Confirm at status.lemonsqueezy.com
  • • Add a banner to your site: "checkout temporarily unavailable"
  • • Collect interested customer emails for follow-up
  • • Monitor for recovery and announce resumption

Webhook Outage

  • • Sales may still complete — check dashboard
  • • Webhooks are queued and delivered after recovery
  • • Verify no duplicate webhook processing on recovery
  • • Check order logs in dashboard for missed events

API Outage

  • • Cache subscription status locally — don't call API on every request
  • • Use stored entitlements to continue serving subscribers
  • • Delay license key validation if possible
  • • Queue sync operations for post-recovery

After Recovery

  • • Check for pending orders in dashboard
  • • Verify webhook backlog processed correctly
  • • Test checkout flow with a test purchase
  • • Review any customer support tickets from outage period

Frequently Asked Questions

Where is the official Lemon Squeezy status page?

The official Lemon Squeezy status page is at status.lemonsqueezy.com. It tracks the checkout, storefront, API, webhooks, and dashboard.

Is Lemon Squeezy the same as Stripe?

No. Lemon Squeezy is a Merchant of Record (MoR) platform, not a payment processor like Stripe. Lemon Squeezy handles the complete payment relationship including tax collection and compliance — Stripe is just the underlying payment processor they use internally. You integrate with Lemon Squeezy's API, not Stripe's.

What happens to my Lemon Squeezy sales during an outage?

New sales cannot complete during a checkout outage. Customers who try to purchase during an outage will see checkout errors. Lemon Squeezy does not queue failed checkout attempts — customers must retry after the outage resolves.

Can I validate license keys during a Lemon Squeezy outage?

If the Lemon Squeezy API is down, you cannot call the license validation endpoint in real time. Best practice is to cache license validation results locally (e.g., for 24 hours) so your application continues functioning during API outages without requiring real-time validation on every launch.

How long do Lemon Squeezy outages typically last?

Lemon Squeezy outages are relatively infrequent. When they occur, most incidents resolve within 30–60 minutes. Webhook delivery backlogs after recovery typically clear quickly. Check status.lemonsqueezy.com during an incident for real-time updates.

🛠 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.

OpteryBest for Privacy

Automated Personal Data Removal

Removes data from 350+ brokers

Removes your personal data from 350+ data broker sites. Protects against phishing and social engineering attacks.

Service outages sometimes involve data breaches. Optery keeps your personal info off the sites attackers use first.

From $9.99/moFree Privacy Scan
ElevenLabsBest for AI Voice

AI Voice & Audio Generation

Used by 1M+ developers

Text-to-speech, voice cloning, and audio AI for developers. Build voice features into your apps with a simple API.

The best AI voice API we've tested — natural-sounding speech with low latency. Essential for any app adding voice features.

Free tier · Paid from $5/moTry ElevenLabs Free
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

Related Guides