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

# Get System Health

> Single endpoint backing the CRM Settings → System Health tab.

Gateway already enforces `view_system_health`; we keep the get_caller
dependency so the route shows up in OpenAPI as authenticated.



## OpenAPI

````yaml /openapi.json get /system-health
openapi: 3.1.0
info:
  title: Slate API
  version: 1.0.0
  description: Trading infrastructure API.
servers:
  - url: https://api.{your-broker}.slate-labs.com
    variables:
      your-broker:
        default: broker
security: []
tags:
  - name: Authentication
  - name: API Tokens
  - name: Customers
  - name: Accounts
  - name: Orders
  - name: Instruments & Groups
  - name: Transactions
  - name: Payments
  - name: Transfers
  - name: Risk
  - name: Workflow & CRM
  - name: Messaging
  - name: Integrations
  - name: Webhooks
  - name: Compliance
  - name: Promo codes
  - name: Reporting
  - name: Audit
  - name: Fraud & moderation
  - name: Broker settings
  - name: Users
  - name: Roles & Teams
  - name: Streams (SSE)
  - name: Simulator
  - name: Observability
  - name: Prop trading
paths:
  /system-health:
    get:
      tags:
        - Observability
      summary: Get System Health
      description: |-
        Single endpoint backing the CRM Settings → System Health tab.

        Gateway already enforces `view_system_health`; we keep the get_caller
        dependency so the route shows up in OpenAPI as authenticated.
      operationId: get_system_health_system_health_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}

````