Activepieces Pieces API

Manage integration pieces

Operations 1

GET /pieces Activepieces List Pieces #

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-pieces-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-pieces-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Activepieces Connections Pieces 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: Pieces
  description: Manage integration pieces
paths:
  /pieces:
    get:
      operationId: listPieces
      summary: Activepieces List Pieces
      description: List available integration pieces
      tags:
      - Pieces
      parameters:
      - name: edition
        in: query
        schema:
          type: string
          enum:
          - ce
          - ee
          - cloud
        description: Filter by edition
      - name: includeHidden
        in: query
        schema:
          type: boolean
        description: Include hidden pieces
      responses:
        '200':
          description: List of pieces
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Piece'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
components:
  schemas:
    Piece:
      type: object
      description: An Activepieces integration piece
      properties:
        name:
          type: string
          description: Piece package name
          example: '@activepieces/piece-github'
        displayName:
          type: string
          description: Human-readable name
          example: GitHub
        description:
          type: string
          description: Piece description
        version:
          type: string
          description: Piece version
          example: 0.5.0
        iconUrl:
          type: string
          format: uri
          description: Piece icon URL
        categories:
          type: array
          items:
            type: string
          description: Piece categories
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: API key from the Activepieces admin console, passed as a Bearer token