Braintree / Payment Gateway

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

Updated June 2026 · 8 min read · API Status Check

Quick Answer

Check Braintree status at status.braintreepayments.com (official) for real-time gateway availability. Braintree is PayPal's developer-focused payment gateway — tracking both API and gateway health is essential for production payment monitoring.

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 Braintree Status Page

Braintree maintains an official status page at status.braintreepayments.com that tracks availability for Braintree's payment processing infrastructure. Components covered include:

Payment Gateway: The core transaction processing engine that authorizes and captures payments. Gateway outages directly block new payment authorizations — customers cannot complete purchases. This is the most critical component for e-commerce and subscription businesses.
Braintree API (api.braintreegateway.com): The production REST/GraphQL API used by your server-side integration to create transactions, manage vaults, and handle subscriptions. API outages affect all programmatic interactions including transaction creation, refunds, and customer record management.
Merchant Control Panel (www.braintreegateway.com): The Braintree merchant dashboard for viewing transactions, managing disputes, configuring webhooks, and generating reports. Control panel outages do not affect payment processing but block operational workflows.
Webhooks: Event notifications for transaction status changes, subscription billing events, and dispute updates. Webhook delivery failures mean your application stops receiving real-time payment events — critical for subscription lifecycle management and order fulfillment systems.
Sandbox (sandbox.braintreegateway.com): Braintree's testing environment with separate infrastructure from production. Sandbox outages block development and QA testing but don't affect live payment processing. The Braintree sandbox is often maintained separately and can have independent incidents.
PayPal Integration: Braintree's native PayPal payment method (PayPal One Touch, Pay Later). Since Braintree is a PayPal company, the PayPal payment method on Braintree has a separate availability track from card processing. PayPal outages may only affect the PayPal button checkout flow, not card transactions.

What Each Braintree Status Means

Operational: All Braintree services are working normally. Payments are authorizing and capturing correctly, webhooks are firing, and the API is responding. If transactions are still failing, the issue is with individual card declines, your API credentials, or your integration — not a platform outage.
Degraded Performance: Braintree is experiencing elevated latency. Transaction authorization is working but may be slower than normal. High-volume merchants may see increased timeout rates. Webhook delivery may be delayed. Degraded performance rarely impacts authorization success rates significantly.
Partial Outage: A specific Braintree component is affected. Common examples: webhooks failing while the gateway processes transactions normally, or the control panel being inaccessible while the API remains functional. Always check which specific component is affected — it matters for triaging customer impact.
Major Outage: The Braintree payment gateway is down. New payment authorizations are failing across all payment methods. This is a critical incident — all checkout flows that route through Braintree are affected. Braintree posts incident updates to their status page and works to restore service rapidly given the revenue impact.
Under Maintenance: Planned maintenance. Braintree typically schedules maintenance during low-traffic hours with advance notice. Some maintenance windows affect only specific components (e.g., the control panel) while transaction processing continues normally.

Braintree Gateway vs API: What's the Difference?

Braintree separates "Gateway" and "API" status because they represent different layers of the payment stack. Understanding the distinction helps you diagnose payment failures faster.

Payment Gateway

The downstream network that connects to card networks (Visa, Mastercard, Amex) and payment processors. A gateway outage means Braintree cannot route transactions to banks for authorization — no new payments succeed regardless of your API integration being healthy.

Braintree API

The server-side interface your code calls to submit transactions, manage customers, and retrieve records. An API outage means your requests cannot reach Braintree's servers at all — HTTP connections fail before any gateway processing occurs.

When Both Are Down

A full outage. No transactions can be authorized, no data can be retrieved, and no refunds can be issued programmatically. This is the scenario that requires immediate fallback activation if you have a secondary processor configured.

When Only Webhooks Are Down

Transactions process successfully, but your application stops receiving real-time notifications. Orders may not be fulfilled automatically. Subscription events are queued by Braintree and delivered once webhook service recovers — but monitor your fulfillment queue for backlog buildup.

📡
Recommended

Monitor your Braintree payment integration independently

Better Stack can monitor your Braintree API endpoint and alert you immediately when payment authorization starts failing — before customers notice checkout errors. Free tier included.

Try Better Stack Free →

Braintree Error Codes During Outages

During Braintree outages or partial degradation, your integration will see specific error patterns. These help distinguish platform outages from individual transaction declines.

HTTP 503 Service UnavailableBraintree API is unreachable. The gateway infrastructure is down. Retry with exponential backoff.
HTTP 504 Gateway TimeoutBraintree API accepted the connection but timed out processing. May indicate severe degradation rather than complete outage.
processorResponseCode: 2000Do Not Honor — issuer declined. Not a Braintree outage; the customer's bank refused the transaction.
processorResponseCode: 2001Insufficient Funds. Card issuer decline, not a Braintree platform issue.
processorResponseCode: 2010Card Issuer Declined CVV — card security code mismatch. Check your CVV verification settings.
status: processor_declinedTransaction reached the processor but was declined. Usually a card-level issue. Check processorResponseCode for specifics.
status: gateway_rejectedBraintree rejected the transaction before processing — due to duplicate payment, AVS failure, CVV mismatch, or risk threshold exceeded.
status: failedNetwork or server-side error prevented processing. During outages, expect high rates of 'failed' status transactions.
Connection refused / ECONNREFUSEDYour server cannot reach Braintree's API endpoints. Network routing issue or full API outage.

Sandbox vs Production: A Critical Distinction

Why Sandbox Status Matters

Braintree's sandbox environment runs on separate infrastructure from production. The sandbox has its own availability status on the Braintree status page. When the sandbox is down, it blocks your CI/CD pipeline and QA testing — but live customer payments continue unaffected. Never halt production deployments solely based on sandbox availability.

Sandbox Environment

  • • Endpoint: sandbox.braintreegateway.com
  • • Test cards don't charge real money
  • • Separate API credentials from production
  • • Used for development and CI testing
  • • May have more frequent maintenance

Production Environment

  • • Endpoint: api.braintreegateway.com
  • • Real card transactions and charges
  • • Separate credentials from sandbox
  • • Higher availability SLA than sandbox
  • • Status page tracks separately

Check Braintree Status Programmatically

You can test Braintree API health from your own infrastructure. A simple approach is to attempt a low-cost API call and check the response:

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

# Test Braintree API connectivity (production)
# Uses gateway ping — replace with your merchant ID and keys
curl -s -o /dev/null -w "%{http_code}" \
  -u "$BT_PUBLIC_KEY:$BT_PRIVATE_KEY" \
  "https://api.braintreegateway.com/merchants/$BT_MERCHANT_ID/transactions"

# 401 = API is reachable but credentials invalid (expected without real creds)
# 503/504 = API is down
# Connection refused = network issue or full outage
// Node.js: Test Braintree gateway health
const braintree = require('braintree');

const gateway = new braintree.BraintreeGateway({
  environment: braintree.Environment.Production,
  merchantId: process.env.BT_MERCHANT_ID,
  publicKey: process.env.BT_PUBLIC_KEY,
  privateKey: process.env.BT_PRIVATE_KEY,
});

async function checkBraintreeHealth() {
  try {
    // Attempt a ClientToken generate — lightweight API call
    await gateway.clientToken.generate({});
    return { status: 'ok' };
  } catch (err) {
    // BraintreeServiceError = API reachable but service issue
    // Network error = API unreachable (outage)
    return { status: 'error', message: err.message };
  }
}

Alert Pro

14-day free trial

Stop checking — get alerted instantly

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

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

What to Do When Braintree Is Down

Immediate Steps

  • 1. Confirm outage at status.braintreepayments.com
  • 2. Subscribe to incident notifications
  • 3. Identify which components are affected
  • 4. Display a checkout maintenance message if gateway is down
  • 5. Queue failed orders for manual retry after recovery

Recovery Plan

  • • Review missed webhooks after recovery
  • • Manually re-run subscription billing events
  • • Check for pending/stuck transactions in dashboard
  • • Retry failed authorizations from checkout abandons
  • • Verify fulfillment queue processed all orders

Setting Up Braintree Monitoring

For production Braintree integrations, you need monitoring that goes beyond the official status page:

1

Track Transaction Success Rate

Monitor your authorization success rate as a percentage over rolling 5-minute windows. A sudden drop from your baseline (e.g., from 95% to 40%) is often the first signal of a Braintree degradation — before the status page updates.

2

Monitor API Response Time

Set up latency tracking for your Braintree API calls. Normal response times are under 500ms. Sustained latency above 2s indicates degradation; timeouts at your configured limit suggest an outage.

3

Webhook Delivery Verification

Track the lag between transaction completion and webhook receipt. If your webhook receiver goes more than 5 minutes without receiving events for a normally busy period, trigger an alert — webhook delivery may be failing.

4

Independent Gateway Health Check

Run a synthetic test that creates a Braintree client token every few minutes and validates the response. A failed client token generation is a strong signal the API is unhealthy before full outage is declared.

📡
Recommended

Get alerted before your customers notice Braintree issues

Set up independent payment gateway monitoring with Better Stack. Track authorization success rate, API response time, and get instant alerts when Braintree degrades.

Try Better Stack Free →

Braintree Outage History: How Reliable Is It?

Braintree is a PayPal subsidiary and one of the more mature payment gateways available to developers. Its uptime track record is strong — major outages affecting the payment gateway are rare. The more common incidents involve:

Webhook Delivery Delays: The most frequent incident type. Webhooks queue during degradation and deliver with delay rather than being lost. Impact is minimal for most integrations but can cause fulfillment delays.
Merchant Control Panel Slowness: The dashboard at braintreegateway.com occasionally experiences slowness or brief unavailability. The API and gateway remain fully operational during these incidents.
Sandbox Maintenance Windows: The sandbox environment has more frequent maintenance than production. CI/CD pipelines that rely on Braintree sandbox should have retry logic and fallback test modes for maintenance windows.
PayPal Method Disruptions: When PayPal's own infrastructure experiences issues, the PayPal checkout option within Braintree integrations may degrade. Card processing through Braintree typically remains unaffected.

Frequently Asked Questions

Where is the official Braintree status page?

The official Braintree status page is at status.braintreepayments.com. It tracks the payment gateway, API, merchant control panel, webhooks, and sandbox environment separately.

Is Braintree the same as PayPal?

Braintree is a PayPal subsidiary, acquired in 2013. They share infrastructure in some areas but maintain separate products. Braintree is PayPal's developer-focused payment gateway — it has its own API, merchant portal, and status page separate from PayPal.com.

Does Braintree support multiple currencies?

Yes. Braintree supports processing in 130+ currencies through its gateway. Multi-currency support is configured at the merchant account level. Availability by currency and region depends on your Braintree merchant account configuration.

What should I do if Braintree transactions are failing but the status page shows operational?

Check processorResponseCode values in your failed transactions — most payment failures are card-level declines, not Braintree outages. Also verify your API credentials, check for AVS/CVV failure patterns, and confirm you haven't exceeded transaction limits. If you see a sudden spike in processor_declined or failed status, contact Braintree support.

How long do Braintree outages typically last?

Braintree major gateway outages are rare. When they occur, Braintree typically restores service within 30–60 minutes. Webhook delivery delays are the most common incident type and often self-resolve within 15–30 minutes. Braintree posts regular updates to the status page during active incidents.

🛠 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