> ## Documentation Index
> Fetch the complete documentation index at: https://docs.getpara.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Check Para System Status

> Use Para Status to review beta and production platform availability before and after launch.

export const Link = ({href, label, newTab = false}) => {
  const [isHovered, setIsHovered] = useState(false);
  return <a href={href} target={newTab ? '_blank' : '_self'} rel={newTab ? 'noopener noreferrer' : undefined} className="not-prose inline-block relative text-black font-semibold cursor-pointer border-b-0 no-underline" onMouseEnter={() => setIsHovered(true)} onMouseLeave={() => setIsHovered(false)}>
      {label}
      <span className={`absolute left-0 bottom-0 w-full rounded-sm bg-gradient-to-r from-orange-600 to-purple-600 transition-all duration-300 ${isHovered ? 'h-0.5' : 'h-px'}`} />
    </a>;
};

Para publishes hosted platform availability on <Link label="Para Status" href="https://status.getpara.com/" newTab={true} />. Check this page when validating a launch, investigating unexpected Para API behavior, or confirming whether an issue is tied to a broader service incident.

## What Para Status Tracks

Para Status reports availability for Para's beta and production environments. Each environment can include component-level health for:

* API: authentication, wallet management, and core platform operations
* Transaction Signing: MPC signing ceremonies and transaction processing
* Wallet Operations: key storage and wallet operations
* Portal: the hosted Para web application portal
* Developer Portal: the developer dashboard

Component states can show operational, degraded performance, partial outage, or major outage status. The page also provides incident history so you can distinguish active incidents from resolved events.

## When to Use It

Check Para Status before a production launch, during beta validation, and whenever your integration starts seeing unexpected failures from Para-hosted services. If Para Status shows all relevant components as operational, continue debugging your app configuration, API keys, allowed origins, sessions, chain connectivity, and backend logs.

<Info>
  Para Status covers Para-hosted platform services. It does not replace monitoring for your application, your backend, third-party RPC providers, or chain-level network health.
</Info>
