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

# Health check

> Check if the Friday daemon is running and get basic status information.



## OpenAPI

````yaml /api-reference/openapi.json get /health
openapi: 3.1.0
info:
  title: Friday Platform API
  description: >-
    The Friday daemon HTTP API for managing spaces, agents, sessions, and
    automations.
  version: 1.0.0
servers:
  - url: http://localhost:18080
    description: Local Friday daemon
security: []
tags:
  - name: Health
    description: Daemon health and status
  - name: Spaces
    description: Space management
  - name: Chat
    description: Conversational AI
  - name: Sessions
    description: Execution session management
  - name: Signals
    description: Trigger management
  - name: Agents
    description: Agent discovery and inspection
  - name: Artifacts
    description: File and data artifact management
  - name: Configuration
    description: Daemon configuration
paths:
  /health:
    get:
      tags:
        - Health
      summary: Health check
      description: Check if the Friday daemon is running and get basic status information.
      operationId: getHealth
      responses:
        '200':
          description: Daemon is healthy
          content:
            application/json:
              schema:
                type: object
                properties:
                  activeWorkspaces:
                    type: integer
                    description: Number of currently active spaces
                    example: 2
                  uptime:
                    type: number
                    description: Daemon uptime in milliseconds
                    example: 3600000
                  timestamp:
                    type: string
                    format: date-time
                    example: '2026-03-20T12:00:00.000Z'
                  version:
                    type: object
                    properties:
                      deno:
                        type: string
                        example: 2.7.4
                      v8:
                        type: string
                        example: 13.0.245.12
                      typescript:
                        type: string
                        example: 5.6.2
      x-codeSamples:
        - lang: bash
          label: cURL
          source: curl http://localhost:18080/health

````