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.
📡 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.
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:
What Each Lemon Squeezy Status Means
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 trialStop 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 outageWhat 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
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.”
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.”
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.”
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.”
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.”