Skip to main content

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.

The Friday daemon is the backend service that powers the platform. It runs your spaces, orchestrates agents, manages sessions, and exposes an HTTP API for programmatic access.

Overview

The daemon starts on port 18080 by default and provides endpoints for:
  • Spaces — Create, list, configure, and manage spaces
  • Chat — Send prompts and receive streaming responses
  • Sessions — View and manage running sessions
  • Agents — List and inspect available agents
  • Signals — Trigger automations programmatically
  • Artifacts — Retrieve files, reports, and data produced by agents
  • Skills — Manage reusable prompt packages
  • Library — Shared resources across spaces

Health check

curl http://localhost:18080/health
Returns a JSON object with health information when the Friday daemon is running:
{
  "activeWorkspaces": 3,
  "uptime": 3600000,
  "timestamp": "2026-03-24T10:00:00.000Z",
  "version": { "deno": "...", "v8": "...", "typescript": "..." }
}
The response includes the number of active spaces, daemon uptime in milliseconds, and runtime version information.

Webhook tunnel

The platform includes a webhook tunnel (port 19090) that creates a public URL via Cloudflare, so GitHub or Jira can send webhooks directly to your Friday instance — even when running locally. See the quick start for setup details.

API reference

For the full list of endpoints with request/response schemas and curl examples, see the API reference.