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