Skip to main content

Documentation Index

Fetch the complete documentation index at: https://mnah05-boiler-go-21-79.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

The worker status endpoint provides information about the scheduler connection and available task queues.

Endpoint

GET /worker/status
Authentication: None required

Response

Returns HTTP 200 with worker and queue information.
scheduler
string
required
Connection status of the task scheduler - returns “connected” when operational
queues
array
required
List of available queue names for task processing
note
string
required
Additional information about testing worker functionality

Response example

200
{
  "scheduler": "connected",
  "queues": [
    "default",
    "critical",
    "low"
  ],
  "note": "Use POST /worker/ping to test task processing"
}

Example request

curl -X GET http://localhost:8080/worker/status