B3

B3 Pipedream API

The Pipedream API from B3 — 5 operation(s) for pipedream.

Operations 6

DELETE /v1/pipedream/accounts/{id} Delete pipedream accounts by id #
GET /v1/pipedream/accounts/{id} Get pipedream accounts by id #
POST /v1/pipedream/actions/{action}/run Create pipedream actions by action run #
GET /v1/pipedream/apps Get pipedream apps #
GET /v1/pipedream/apps/{app}/actions Get pipedream apps by app actions #
GET /v1/pipedream/connect-token Get pipedream connect token #

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/b3-pipedream-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

b3-pipedream-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: B3 Pipedream API
  version: '1.0'
  description: 'Operations tagged Pipedream across 2 of this provider''s published API definitions: b3-b3os-workflow-openapi.json, b3-b3os-workflow-openapi_2.json. Each path carries the servers of the definition it was published in.'
tags:
- name: Pipedream
paths:
  /v1/pipedream/accounts/{id}:
    delete:
      description: Disconnect a Pipedream account
      parameters:
      - description: Account ID
        in: path
        name: id
        required: true
        schema:
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DeletePipedreamAccountSuccessResponse'
          description: OK
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/github_com_b3-fun_b3-mono_services_b3os-workflow_internal_app_api_http.ErrorResponse'
          description: Bad Request
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/github_com_b3-fun_b3-mono_services_b3os-workflow_internal_app_api_http.ErrorResponse'
          description: Not Found
        '503':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/github_com_b3-fun_b3-mono_services_b3os-workflow_internal_app_api_http.ErrorResponse'
          description: Service Unavailable
      tags:
      - Pipedream
      summary: Delete pipedream accounts by id
      x-summary-source: derived
      operationId: deleteV1PipedreamAccountsById
      x-operation-id-source: derived
    get:
      description: Get a Pipedream account by ID
      parameters:
      - description: Account ID
        in: path
        name: id
        required: true
        schema:
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetPipedreamAccountSuccessResponse'
          description: OK
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/github_com_b3-fun_b3-mono_services_b3os-workflow_internal_app_api_http.ErrorResponse'
          description: Bad Request
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/github_com_b3-fun_b3-mono_services_b3os-workflow_internal_app_api_http.ErrorResponse'
          description: Not Found
        '503':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/github_com_b3-fun_b3-mono_services_b3os-workflow_internal_app_api_http.ErrorResponse'
          description: Service Unavailable
      tags:
      - Pipedream
      summary: Get pipedream accounts by id
      x-summary-source: derived
      operationId: getV1PipedreamAccountsById
      x-operation-id-source: derived
  /v1/pipedream/actions/{action}/run:
    post:
      description: Execute a Pipedream action
      parameters:
      - description: Action key
        in: path
        name: action
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              oneOf:
              - type: object
              - $ref: '#/components/schemas/RunPipedreamActionParams'
                summary: body
                description: Action execution parameters
        description: Action execution parameters
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RunPipedreamActionSuccessResponse'
          description: OK
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/github_com_b3-fun_b3-mono_services_b3os-workflow_internal_app_api_http.ErrorResponse'
          description: Bad Request
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/github_com_b3-fun_b3-mono_services_b3os-workflow_internal_app_api_http.ErrorResponse'
          description: Not Found
        '500':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/github_com_b3-fun_b3-mono_services_b3os-workflow_internal_app_api_http.ErrorResponse'
          description: Internal Server Error
        '503':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/github_com_b3-fun_b3-mono_services_b3os-workflow_internal_app_api_http.ErrorResponse'
          description: Service Unavailable
      tags:
      - Pipedream
      summary: Create pipedream actions by action run
      x-summary-source: derived
      operationId: postV1PipedreamActionsByActionRun
      x-operation-id-source: derived
  /v1/pipedream/apps:
    get:
      description: List available Pipedream apps/integrations
      parameters:
      - description: Search query to filter apps
        in: query
        name: q
        schema:
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListPipedreamAppsSuccessResponse'
          description: OK
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/github_com_b3-fun_b3-mono_services_b3os-workflow_internal_app_api_http.ErrorResponse'
          description: Bad Request
        '503':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/github_com_b3-fun_b3-mono_services_b3os-workflow_internal_app_api_http.ErrorResponse'
          description: Service Unavailable
      tags:
      - Pipedream
      summary: Get pipedream apps
      x-summary-source: derived
      operationId: getV1PipedreamApps
      x-operation-id-source: derived
  /v1/pipedream/apps/{app}/actions:
    get:
      description: List available actions for a Pipedream app
      parameters:
      - description: App slug (e.g., 'twilio', 'google_sheets')
        in: path
        name: app
        required: true
        schema:
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListPipedreamActionsSuccessResponse'
          description: OK
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/github_com_b3-fun_b3-mono_services_b3os-workflow_internal_app_api_http.ErrorResponse'
          description: Bad Request
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/github_com_b3-fun_b3-mono_services_b3os-workflow_internal_app_api_http.ErrorResponse'
          description: Not Found
        '503':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/github_com_b3-fun_b3-mono_services_b3os-workflow_internal_app_api_http.ErrorResponse'
          description: Service Unavailable
      tags:
      - Pipedream
      summary: Get pipedream apps by app actions
      x-summary-source: derived
      operationId: getV1PipedreamAppsByAppActions
      x-operation-id-source: derived
  /v1/pipedream/connect-token:
    get:
      description: Get a Pipedream Connect token for the frontend SDK
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetConnectTokenSuccessResponse'
          description: OK
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/github_com_b3-fun_b3-mono_services_b3os-workflow_internal_app_api_http.ErrorResponse'
          description: Bad Request
        '503':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/github_com_b3-fun_b3-mono_services_b3os-workflow_internal_app_api_http.ErrorResponse'
          description: Service Unavailable
      tags:
      - Pipedream
      summary: Get pipedream connect token
      x-summary-source: derived
      operationId: getV1PipedreamConnectToken
      x-operation-id-source: derived
components:
  schemas:
    PipedreamApp:
      properties:
        authType:
          type: string
        categories:
          items:
            type: string
          type: array
          uniqueItems: false
        description:
          type: string
        id:
          type: string
        imgSrc:
          type: string
        name:
          type: string
        nameSlug:
          type: string
      type: object
    GetPipedreamAccountSuccessResponse:
      properties:
        code:
          example: 200
          type: integer
        data:
          $ref: '#/components/schemas/PipedreamAccount'
        message:
          example: success
          type: string
        requestId:
          example: abc-123
          type: string
      type: object
    ListPipedreamAppsSuccessResponse:
      properties:
        code:
          example: 200
          type: integer
        data:
          items:
            $ref: '#/components/schemas/PipedreamApp'
          type: array
          uniqueItems: false
        message:
          example: success
          type: string
        requestId:
          example: abc-123
          type: string
      type: object
    PipedreamAccount:
      properties:
        appName:
          type: string
        appSlug:
          type: string
        createdAt:
          type: string
        healthy:
          type: boolean
        id:
          type: string
        name:
          type: string
      type: object
    PipedreamAction:
      properties:
        description:
          type: string
        key:
          type: string
        name:
          type: string
        version:
          type: string
      type: object
    PipedreamConnectToken:
      properties:
        expiresAt:
          type: string
        token:
          type: string
      type: object
    ListPipedreamActionsSuccessResponse:
      properties:
        code:
          example: 200
          type: integer
        data:
          items:
            $ref: '#/components/schemas/PipedreamAction'
          type: array
          uniqueItems: false
        message:
          example: success
          type: string
        requestId:
          example: abc-123
          type: string
      type: object
    RunPipedreamActionSuccessResponse:
      properties:
        code:
          example: 200
          type: integer
        data:
          additionalProperties: {}
          type: object
        message:
          example: success
          type: string
        requestId:
          example: abc-123
          type: string
      type: object
    github_com_b3-fun_b3-mono_services_b3os-workflow_internal_app_api_http.ErrorResponse:
      properties:
        code:
          type: integer
        details:
          items: {}
          type: array
          uniqueItems: false
        message:
          type: string
        requestId:
          type: string
      type: object
    RunPipedreamActionParams:
      properties:
        accountId:
          type: string
        configuredProps:
          additionalProperties: {}
          type: object
      required:
      - accountId
      - configuredProps
      type: object
    GetConnectTokenSuccessResponse:
      properties:
        code:
          example: 200
          type: integer
        data:
          $ref: '#/components/schemas/PipedreamConnectToken'
        message:
          example: success
          type: string
        requestId:
          example: abc-123
          type: string
      type: object
    DeletePipedreamAccountSuccessResponse:
      properties:
        code:
          example: 200
          type: integer
        message:
          example: success
          type: string
        requestId:
          example: abc-123
          type: string
      type: object
x-refined-from:
- b3-b3os-workflow-openapi.json
- b3-b3os-workflow-openapi_2.json