Help Scout / Customer Support Platform

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

Updated June 2026 · 7 min read · API Status Check

Quick Answer

Check Help Scout status at status.helpscout.com (official) for real-time availability. Help Scout tracks its shared inbox, Docs knowledge base, Beacon widget, email delivery, and API separately.

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 Help Scout Status Page

Help Scout maintains an official status page at status.helpscout.com. It tracks availability for Help Scout's core products and infrastructure:

Shared Inbox (app.helpscout.com): Help Scout's primary product — the shared email inbox for customer support teams. Inbox outages prevent agents from viewing, replying to, or assigning customer conversations. This is the highest-impact component for support teams using Help Scout as their primary tool.
Email Delivery (Inbound): The service that receives customer emails addressed to your Help Scout mailbox addresses. Inbound delivery outages mean customer emails sent to your support address don't appear in Help Scout — though they remain queued and are delivered once service recovers.
Email Delivery (Outbound): Help Scout's sending infrastructure that delivers agent replies to customers. Outbound delivery outages mean agent replies are queued in Help Scout but not delivered to customer inboxes. Customers won't receive your responses until the outage resolves.
Beacon: Help Scout's embeddable chat and help widget that sits on your website or web app. Beacon outages mean the widget fails to load or chat sessions cannot be initiated — customers see a broken or missing support widget. Beacon runs as a separate service from the inbox.
Docs (Knowledge Base): Help Scout's hosted knowledge base for self-service support articles. Docs outages make your knowledge base inaccessible to customers — Help Center pages return errors. Beacon's article search also fails during Docs outages.
Help Scout API (api.helpscout.net): The REST API at api.helpscout.net for programmatic access to conversations, customers, mailboxes, and reports. Used by integrations, Zapier connections, and custom CRM sync workflows. API outages break all automated workflows that rely on Help Scout data.
Web Application: The Help Scout dashboard at app.helpscout.com. Application outages prevent agents from logging in or accessing the interface — even if backend email processing continues working.

What Each Help Scout Status Means

Operational: All Help Scout services are working normally. If you're experiencing issues, the problem is likely with your mailbox configuration, email forwarding setup, or DKIM/DMARC settings — not a platform outage.
Degraded Performance: Help Scout is experiencing slowness. The inbox is accessible but may be slow to load conversations or search. Email delivery may have elevated latency. Agent replies typically still reach customers, just slower than normal.
Partial Outage: A specific Help Scout service is affected. Common partial outages: Beacon down while inbox is operational, Docs inaccessible while email delivery continues, or the API unavailable while the web app works. Always check which component is affected.
Major Outage: Help Scout's core platform is down. The inbox is inaccessible and/or email delivery has stopped. For support teams, this is a critical incident — customer emails are queuing and no agent responses are being delivered. Help Scout posts regular updates during major incidents.
Under Maintenance: Planned maintenance window. Help Scout typically schedules maintenance during off-peak hours. Some maintenance may briefly affect inbox availability or email delivery latency.
📡
Recommended

Monitor your Help Scout inbox availability independently

Better Stack can monitor your Help Scout integration and alert you immediately when emails stop arriving — before your support queue backs up silently. Free tier included.

Try Better Stack Free →

Why Help Scout May Be Down for You But Not Others

Help Scout outages are sometimes specific to a subset of customers. Before concluding it's a platform-wide issue:

Mailbox-Specific Issues

Problems with your email forwarding configuration, DKIM/DMARC records, or connected Google/Microsoft account can affect only your mailbox while other Help Scout customers are unaffected.

Browser or Extension Conflicts

Help Scout is a web application. Browser extensions (ad blockers, password managers) can interfere with the inbox UI. Try a fresh browser profile or incognito mode before escalating to a platform issue.

Regional Availability

Help Scout uses global infrastructure, but some incidents affect specific availability zones. If your team is distributed globally, compare whether the issue is consistent across locations.

Account Plan Limits

Free/trial accounts have usage limits. If your account has exceeded conversation or user limits, you may experience access restrictions that look like an outage.

Third-Party Integration Failures

Zapier workflows, CRM integrations, and custom API connections can fail independently of Help Scout. If only your automated workflows are broken, check the integration side before assuming a Help Scout outage.

5 Ways to Check Help Scout Status Right Now

1

Official Status Page

Visit status.helpscout.com for the authoritative source. Subscribe to email notifications using the button on the page to get alerted for future incidents.

2

Check the Help Scout Inbox Directly

Try logging into app.helpscout.com. If you can access conversations and the inbox loads, email delivery is likely the issue rather than the application.

3

Send a Test Email

Send an email to your Help Scout support address from an external account. If it doesn't appear in your inbox within 5 minutes, check the inbound email delivery status.

4

Check the Help Scout API

Make a GET request to api.helpscout.net/v2/mailboxes with your API key. A 200 response confirms the API is operational; a 503 or timeout indicates API degradation.

5

Third-Party Monitors

Sites like downdetector.com aggregate user-reported Help Scout issues. Useful for cross-referencing what others are experiencing, but less authoritative than the official status page.

Checking Help Scout Status via API

You can verify Help Scout API health programmatically:

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

# Test Help Scout API (requires Bearer token)
curl -s -o /dev/null -w "%{http_code}" \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
  "https://api.helpscout.net/v2/mailboxes"

# 200 = API operational
# 401 = API reachable, token invalid
# 503 = API down or degraded
// Node.js: Help Scout health check
async function checkHelpScoutStatus() {
  const statusRes = await fetch(
    'https://status.helpscout.com/api/v2/components.json'
  );
  const data = await statusRes.json();

  const components = data.components.map(c => ({
    name: c.name,
    status: c.status,
  }));

  const hasOutage = components.some(c =>
    c.status !== 'operational'
  );

  return { hasOutage, components };
}

Alert Pro

14-day free trial

Stop checking — get alerted instantly

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

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

What to Do When Help Scout Is Down

Inbox Outage (Can't Access Conversations)

  • • Set up an auto-reply on your email domain directly
  • • Access emails through your connected email provider (Gmail/Outlook)
  • • Communicate delays to your team via Slack/Teams
  • • Monitor status.helpscout.com for recovery updates

Email Delivery Outage (Emails Not Arriving)

  • • Customer emails are queued — they won't be lost
  • • Check your connected Gmail/Outlook directly for urgent cases
  • • After recovery, emails deliver in bulk — expect a spike
  • • Prioritize oldest conversations first after recovery

Beacon Down (Widget Not Loading)

  • • Customers cannot initiate new chats
  • • Add a visible email support link as a fallback
  • • The main inbox is likely unaffected during Beacon-only outages
  • • Beacon typically recovers quickly (usually under 30 min)

Docs/Knowledge Base Down

  • • Customers cannot access self-service articles
  • • Expect increased support volume during Docs outages
  • • Keep key article content in a Google Doc as backup
  • • Beacon article search also fails during Docs outages

Common Help Scout Issues That Aren't Outages

Customer emails going to spam

Help Scout sends emails through your connected domain. If your domain's SPF and DKIM records aren't configured correctly, replies from Help Scout may land in customer spam folders. This is a DNS configuration issue, not an outage.

Emails not appearing in inbox

Email forwarding from your domain to Help Scout can break if DNS or hosting changes are made. Check your email forwarding configuration at your domain provider — this is separate from Help Scout availability.

Slow inbox loading

Large inboxes with many conversations can load slowly in browsers. Try using the Help Scout inbox filtering to load a smaller conversation set, or clear browser cache and local storage.

Beacon widget not showing

The Beacon widget requires JavaScript and may be blocked by browser extensions, content security policies, or ad blockers. Verify Beacon loads in a clean browser before attributing it to a Help Scout outage.

API rate limiting

Help Scout's API enforces rate limits (typically 400 requests per minute per app). If your integration is hitting limits, you'll receive 429 Too Many Requests responses — not an outage.

Frequently Asked Questions

Where is the official Help Scout status page?

The official Help Scout status page is at status.helpscout.com. It tracks the shared inbox, email delivery (inbound and outbound), Beacon widget, Docs knowledge base, and the Help Scout API.

Will I lose customer emails during a Help Scout outage?

Generally no. Customer emails sent to your Help Scout support address are queued by the mail delivery system and delivered once Help Scout service recovers. However, replies you send from Help Scout during an outbound email delivery outage may be delayed. After a major outage, check your sent conversations to verify deliveries.

How do I check Help Scout status from my own monitoring tool?

Help Scout provides a status API at status.helpscout.com/api/v2/status.json. You can poll this endpoint to get current status and include it in your internal dashboards. The components endpoint (status.helpscout.com/api/v2/components.json) gives per-component status detail.

Does Help Scout have an SLA?

Help Scout offers an uptime SLA for paid plans. Check your Help Scout subscription agreement or the Help Scout website for current SLA terms. For enterprise plans, Help Scout typically offers higher availability commitments.

How long do Help Scout outages typically last?

Help Scout major outages are uncommon. When they occur, Help Scout typically restores core inbox functionality within 30–90 minutes. Email delivery backlogs after recovery can take additional time to fully clear.

🛠 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