PayPal processes billions of dollars in transactions daily. When it goes down — even briefly — checkouts fail, payouts are delayed, and merchants scramble to understand whether they're losing sales or just experiencing a technical glitch. Here's how to diagnose quickly.
Is PayPal Down Right Now?
Check these sources in order:
- Statusfield — PayPal status — real-time monitoring, updated continuously.
- PayPal's official status page — www.paypalobjects.com/status shows component-level status for PayPal services.
- Twitter/X — search
PayPal downsorted by Latest. Payment failures generate immediate social chatter. - Downdetector — shows crowd-sourced outage reports with geographic breakdowns.
What Actually Breaks During a PayPal Outage
PayPal's platform has multiple components that can fail independently:
| Component | What it does | Impact when down |
|---|---|---|
| PayPal Checkout | Buy Now / Pay buttons on merchant sites | Customers can't complete purchases via PayPal |
| Payouts API | Mass payouts to sellers, vendors, contractors | Payouts delayed or queued |
| PayPal Here / Zettle | In-person card readers | Point-of-sale transactions fail |
| REST API | Developer API for custom integrations | All custom PayPal integrations break |
| PayPal.com (Web) | Personal account access, send/request money | Users can't log in or transfer funds |
| Braintree | PayPal's developer gateway | Merchant card processing fails (separate from PayPal buttons) |
| Venmo | Consumer P2P payments | Venmo transfers fail |
| Webhooks | Real-time payment notifications | Your backend doesn't receive payment confirmation events |
Common PayPal Error Symptoms
| What you see | What it usually means |
|---|---|
| "We're sorry, we can't process your request" | Checkout or payment service degraded |
| Payment stuck as "Pending" for hours | Payout processing backlog or risk review delay |
| Webhook notifications not arriving | Webhook delivery service degraded |
| "Your account is restricted" (sudden) | May be routine risk review, not an outage |
Braintree returns gateway_unavailable | Braintree gateway degraded (separate from PayPal buttons) |
| PayPal SDK initialization fails | REST API or SDK endpoint degraded |
| Transaction created but IPN not firing | IPN (Instant Payment Notification) service degraded |
Why PayPal Goes Down
Risk engine load. PayPal runs sophisticated real-time fraud detection on every transaction. During high-volume periods (Black Friday, Cyber Monday), the risk engine can become a bottleneck.
Regulatory holds. PayPal sometimes pauses specific transaction types or regions for compliance reasons. These aren't outages per se but can look like one from the outside.
Infrastructure dependencies. PayPal depends on AWS and its own data centers. Regional issues at either layer can cause partial outages.
Braintree vs PayPal. Braintree (PayPal's developer gateway) and PayPal's consumer checkout are separate systems. A Braintree outage doesn't mean PayPal.com is down, and vice versa.
What to Do When PayPal Is Down
Immediate steps:
- Identify which component is failing — checkout, payouts, API, or webhooks. Check Statusfield or PayPal's status page for component-level detail.
- Implement a fallback payment method — if PayPal checkout is down, offer an alternative: Stripe, Square, or direct card processing.
- Check webhook logs — if you're not receiving payment confirmations, check your webhook endpoint logs. The payments may have succeeded but notifications are delayed.
- Don't double-process — if a customer's payment shows as pending, wait before retrying. Charging twice is a worse outcome than a short delay.
For engineering teams:
If your PayPal SDK calls are failing, check whether Braintree or the REST API is the affected component. PayPal's REST API v2 (api.paypal.com/v2) and Braintree's gateway are on different infrastructure. A failure in one doesn't necessarily affect the other.
Building PayPal-Resilient Checkout
Always implement an alternative payment method
Single-provider checkout is a business risk. If PayPal is down on your site, you need a way to still convert customers:
async function processPayment(cart) {
try {
return await paypalCheckout(cart);
} catch (err) {
if (err.statusCode >= 500 || err.message.includes('INSTRUMENT_DECLINED')) {
// Fall back to Stripe or show alternative options
return showAlternativePaymentOptions(cart);
}
throw err;
}
}Verify payment status via API, not just webhooks
Webhooks can be delayed during outages. For critical transactions, always poll the payment status endpoint to confirm completion rather than waiting for a webhook that may not arrive.
Monitor your payment success rate separately
Your checkout conversion rate is the most sensitive signal for PayPal degradation. A 5% drop in PayPal payment completions often precedes any official status page update by 15–30 minutes.
How to Get Instant PayPal Outage Alerts
Monitor PayPal on Statusfield and get alerted the moment PayPal's payment processing or API changes status. Route alerts to email or Slack so your engineering team can activate a fallback before customers notice.
Frequently Asked Questions
Is PayPal down for everyone or just me?
Check Statusfield and PayPal's official status page. If both show operational, the issue may be account-specific (risk hold, regional restriction) rather than a platform outage. Try a test transaction with a separate account or check your PayPal dashboard directly.
Why is my PayPal payment stuck as "Pending"?
Pending can mean several things: the payment is under risk review, the recipient hasn't accepted a manual payment, or processing is backlogged during an outage. Check PayPal's payout status on their status page. For API transactions, query the order status endpoint directly rather than waiting for a webhook.
PayPal checkout works on PayPal.com but not my website — why?
PayPal's consumer website and its merchant SDK/API run on different infrastructure. A merchant integration issue (expired credentials, SDK misconfiguration, CORS error) can cause failures even when PayPal.com itself is fine. Check your browser console for JavaScript errors and verify your PayPal client ID is valid.
Braintree is down — is PayPal also down?
Not necessarily. Braintree and PayPal's native checkout are separate systems that share ownership but run independently. Check Statusfield for the specific component that's failing.
How do I get notified when PayPal goes down?
Set up PayPal monitoring on Statusfield. You'll get alerts via email or webhooks the moment PayPal reports a payment processing incident — so you can activate a fallback before customers start filing chargebacks.
Does PayPal warn about scheduled maintenance?
Yes. PayPal publishes scheduled maintenance windows on their status page, typically for off-peak hours. Check before running large payout batches or launching high-traffic promotions.
Know the moment a tool you depend on goes down
Statusfield watches 7,000+ services your business depends on and alerts you the moment they break.
Free plan · No credit card
Related Articles
Is Stripe Down? How to Check Stripe Status Right Now
Stripe payments failing? Learn how to check if Stripe is down, what error codes mean during an outage, how to protect revenue with graceful degradation, and how to get instant alerts before your customers notice.
Is Canva Down? How to Check Canva Status Right Now
Canva not loading? Designs not saving or exports failing? Learn how to check if Canva is down, which components fail first during an outage, and how to protect your work when Canva degrades.
Is Lattice Down? How to Check Lattice Status Right Now
Lattice not loading? 1:1s, OKRs, or performance reviews failing to save? Learn how to check if Lattice is down, which components fail first, and how to protect your HR workflows when Lattice degrades.