Pipefy GraphQL API

Single GraphQL entry point for all Pipefy operations.

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/pipefy-graphql-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 email required.

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

OpenAPI Specification

pipefy-graphql-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Pipefy GraphQL API
  description: 'Pipefy exposes a single GraphQL endpoint at https://api.pipefy.com/graphql

    for managing pipes, cards, phases, fields, organizations, users,

    webhooks, and AI agents on the Pipefy workflow automation platform.


    All operations - queries and mutations - are submitted as POST requests

    to the /graphql endpoint with a JSON body of the form

    `{ "query": "...", "variables": { ... } }`.


    Authentication uses an OAuth 2.0 Bearer token (Personal Access Token or

    Service Account) supplied in the Authorization header.

    '
  version: 1.0.0
  contact:
    name: API Evangelist
    email: kin@apievangelist.com
  license:
    name: Proprietary
servers:
- url: https://api.pipefy.com
  description: Pipefy production GraphQL endpoint
security:
- bearerAuth: []
tags:
- name: GraphQL
  description: Single GraphQL entry point for all Pipefy operations.
paths:
  /graphql:
    post:
      tags:
      - GraphQL
      summary: Execute a GraphQL query or mutation
      description: 'Submit GraphQL queries and mutations against the Pipefy API.

        Example queries cover pipes, cards, phases, fields, organizations,

        users, webhooks, AI agents, automations, and reports.

        Example mutations cover create/update/delete on pipes, cards,

        phases, fields, AI agents, automations, email templates, and roles.

        '
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GraphQLRequest'
            examples:
              listPipes:
                summary: List pipes in an organization
                value:
                  query: "query ListPipes($orgId: ID!) {\n  organization(id: $orgId) {\n    pipes {\n      id\n      name\n    }\n  }\n}\n"
                  variables:
                    orgId: '1'
              createCard:
                summary: Create a card in a pipe
                value:
                  query: "mutation CreateCard($input: CreateCardInput!) {\n  createCard(input: $input) {\n    card { id title }\n  }\n}\n"
                  variables:
                    input:
                      pipe_id: '12345'
                      title: New Card
      responses:
        '200':
          description: GraphQL response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GraphQLResponse'
        '401':
          description: Missing or invalid Bearer token.
        '429':
          description: Rate limit exceeded.
components:
  schemas:
    GraphQLResponse:
      type: object
      properties:
        data:
          type: object
          additionalProperties: true
        errors:
          type: array
          items:
            type: object
            properties:
              message:
                type: string
              path:
                type: array
                items:
                  type: string
              extensions:
                type: object
                additionalProperties: true
    GraphQLRequest:
      type: object
      required:
      - query
      properties:
        query:
          type: string
          description: GraphQL query or mutation document.
        variables:
          type: object
          description: GraphQL variables map.
          additionalProperties: true
        operationName:
          type: string
          description: Optional named operation to execute.
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: 'Personal Access Token or Service Account token. Pass as

        `Authorization: Bearer <token>`.

        '