Is PayPal Down? How to Check PayPal Status Right Now

PayPal not working? Payments failing or pending? Learn how to check if PayPal is down, what breaks during an outage (checkout vs payouts vs API), and how to get instant alerts before your customers start filing disputes.

By Statusfield Team · Engineering··7 min read

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:

  1. Statusfield — PayPal status — real-time monitoring, updated continuously.
  2. PayPal's official status pagewww.paypalobjects.com/status shows component-level status for PayPal services.
  3. Twitter/X — search PayPal down sorted by Latest. Payment failures generate immediate social chatter.
  4. 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:

ComponentWhat it doesImpact when down
PayPal CheckoutBuy Now / Pay buttons on merchant sitesCustomers can't complete purchases via PayPal
Payouts APIMass payouts to sellers, vendors, contractorsPayouts delayed or queued
PayPal Here / ZettleIn-person card readersPoint-of-sale transactions fail
REST APIDeveloper API for custom integrationsAll custom PayPal integrations break
PayPal.com (Web)Personal account access, send/request moneyUsers can't log in or transfer funds
BraintreePayPal's developer gatewayMerchant card processing fails (separate from PayPal buttons)
VenmoConsumer P2P paymentsVenmo transfers fail
WebhooksReal-time payment notificationsYour backend doesn't receive payment confirmation events

Common PayPal Error Symptoms

What you seeWhat it usually means
"We're sorry, we can't process your request"Checkout or payment service degraded
Payment stuck as "Pending" for hoursPayout processing backlog or risk review delay
Webhook notifications not arrivingWebhook delivery service degraded
"Your account is restricted" (sudden)May be routine risk review, not an outage
Braintree returns gateway_unavailableBraintree gateway degraded (separate from PayPal buttons)
PayPal SDK initialization failsREST API or SDK endpoint degraded
Transaction created but IPN not firingIPN (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:

  1. Identify which component is failing — checkout, payouts, API, or webhooks. Check Statusfield or PayPal's status page for component-level detail.
  2. Implement a fallback payment method — if PayPal checkout is down, offer an alternative: Stripe, Square, or direct card processing.
  3. Check webhook logs — if you're not receiving payment confirmations, check your webhook endpoint logs. The payments may have succeeded but notifications are delayed.
  4. 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.

Start monitoring PayPal →


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