Skip to main content

Endpoint

GET /queue/worker/stats
Auth: API Key required

Response

{
  "maxConcurrent": 2,
  "pollInterval": 1000,
  "isRunning": true,
  "processingCount": 1
}
maxConcurrent
number
Maximum number of jobs the worker processes at once.
pollInterval
number
How often, in milliseconds, the worker polls for new jobs.
isRunning
boolean
Whether the worker’s polling loop is currently active.
processingCount
number
Number of jobs currently being processed.

Example

curl http://localhost:3000/queue/worker/stats \
  -H "Authorization: Bearer <api_key>"

Queue Statistics

Job counts per status.

List Jobs

View individual job details with filtering.