Activepieces Worker Machines API

Worker queue metrics

Operations 1

GET /worker/queues Activepieces Get Worker Queue Metrics #

Documentation

Specifications

Schemas & Data

Other Resources

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/activepieces-worker-machines-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

activepieces-worker-machines-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Activepieces Connections Worker Machines API
  version: 1.0.0
  description: REST API for Activepieces, the open-source no-code automation platform. Manage flows, connections, projects, users, and workflow executions programmatically.
  contact:
    name: Activepieces Support
    url: https://www.activepieces.com/docs/
  x-generated-from: documentation
servers:
- url: https://cloud.activepieces.com/api/v1
  description: Activepieces Cloud API
- url: https://{yourDomain}/api/v1
  description: Self-hosted Activepieces instance
  variables:
    yourDomain:
      default: localhost:3000
security:
- BearerAuth: []
tags:
- name: Worker Machines
  description: Worker queue metrics
paths:
  /worker/queues:
    get:
      operationId: getWorkerQueueMetrics
      summary: Activepieces Get Worker Queue Metrics
      description: Retrieve queue metrics for worker machines
      tags:
      - Worker Machines
      responses:
        '200':
          description: Queue metrics
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/QueueMetrics'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
components:
  schemas:
    QueueMetrics:
      type: object
      description: Worker queue metrics
      properties:
        queues:
          type: array
          items:
            type: object
            properties:
              name:
                type: string
                description: Queue name
                example: one-time
              waiting:
                type: integer
                description: Jobs waiting
                example: 5
              active:
                type: integer
                description: Jobs active
                example: 2
              completed:
                type: integer
                description: Jobs completed
                example: 1000
              failed:
                type: integer
                description: Jobs failed
                example: 3
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: API key from the Activepieces admin console, passed as a Bearer token