Boltic website screenshot

Boltic

Boltic is an AI workflow automation platform that helps businesses streamline operations across customer support, finance, product, and marketing functions. The platform enables companies to build autonomous AI agents, create no-code workflows with drag-and-drop functionality, and connect with over 500 integrations including major tools like Salesforce, HubSpot, Shopify, and Google BigQuery.

5 APIs 0 Features
AutomationDataSyncGatewaysNoCodeStreamingWorkflows

APIs

Boltic Gateway API

The Boltic Gateway API provides a developer-friendly API gateway designed to simplify and secure how services interact across your platform. It enables seamless request routing,...

Boltic Workflow API

The Boltic Workflow API enables programmatic creation, management, and execution of automation workflows. Workflows are visual, no-code automation sequences that connect trigger...

Boltic Tables API

The Boltic Tables API provides programmatic access to Boltic Tables, a no-code database for teams to organize, manage, and automate structured data workflows. The API supports f...

Boltic Pipes API

The Boltic Pipes API provides programmatic access to data synchronization pipelines that connect data sources to destinations. Pipes enable real-time data syncing across systems...

Boltic Streams API

The Boltic Streams API provides real-time event streaming capabilities for tracking custom events and streaming data from websites, mobile apps, and servers. It includes source ...

Collections

Pricing Plans

Boltic Plans Pricing

5 plans

PLANS

Rate Limits

Boltic Rate Limits

5 limits

RATE LIMITS

FinOps

Boltic Finops

FINOPS

Semantic Vocabularies

Boltic Context

36 classes · 9 properties

JSON-LD

JSON Structure

Boltic Structure

0 properties

JSON STRUCTURE

Resources

👥
GitHubOrganization
GitHubOrganization
🔗
LinkedIn
LinkedIn
🔗
Website
Website
🔗
Documentation
Documentation
🔗
Templates
Templates
💰
Pricing
Pricing
🔗
About
About
🔗
Partners
Partners
📰
Blog
Blog
📄
ChangeLog
ChangeLog
🔗
JSONLDContext
JSONLDContext

Sources

Raw ↑
opencollection: 1.0.0
info:
  name: Boltic Workflow API
  version: 1.0.0
request:
  auth:
    type: bearer
    token: '{{bearerToken}}'
items:
- info:
    name: Workflows
    type: folder
  items:
  - info:
      name: Boltic List all workflows
      type: http
    http:
      method: GET
      url: https://api.boltic.io/v1/workflows
      params:
      - name: page
        value: ''
        type: query
      - name: limit
        value: ''
        type: query
      - name: status
        value: ''
        type: query
    docs: Retrieve a paginated list of all workflows in the workspace.
  - info:
      name: Boltic Create a new workflow
      type: http
    http:
      method: POST
      url: https://api.boltic.io/v1/workflows
      body:
        type: json
        data: '{}'
    docs: Create a new automation workflow with triggers, actions, and configuration.
  - info:
      name: Boltic Get a workflow by ID
      type: http
    http:
      method: GET
      url: https://api.boltic.io/v1/workflows/:workflowId
      params:
      - name: workflowId
        value: ''
        type: path
    docs: Retrieve the full configuration and status of a specific workflow.
  - info:
      name: Boltic Update a workflow
      type: http
    http:
      method: PUT
      url: https://api.boltic.io/v1/workflows/:workflowId
      params:
      - name: workflowId
        value: ''
        type: path
      body:
        type: json
        data: '{}'
    docs: Update the configuration of an existing workflow.
  - info:
      name: Boltic Delete a workflow
      type: http
    http:
      method: DELETE
      url: https://api.boltic.io/v1/workflows/:workflowId
      params:
      - name: workflowId
        value: ''
        type: path
    docs: Boltic Delete a workflow
  - info:
      name: Boltic Execute a workflow
      type: http
    http:
      method: POST
      url: https://api.boltic.io/v1/workflows/:workflowId/execute
      params:
      - name: workflowId
        value: ''
        type: path
      body:
        type: json
        data: '{}'
    docs: Trigger immediate execution of a workflow. Supports synchronous execution that waits for the workflow to complete
      before returning a response.
  - info:
      name: Boltic Activate a workflow
      type: http
    http:
      method: POST
      url: https://api.boltic.io/v1/workflows/:workflowId/activate
      params:
      - name: workflowId
        value: ''
        type: path
    docs: Enable a workflow so it responds to triggers.
  - info:
      name: Boltic Deactivate a workflow
      type: http
    http:
      method: POST
      url: https://api.boltic.io/v1/workflows/:workflowId/deactivate
      params:
      - name: workflowId
        value: ''
        type: path
    docs: Disable a workflow so it stops responding to triggers.
- info:
    name: Executions
    type: folder
  items:
  - info:
      name: Boltic List workflow executions
      type: http
    http:
      method: GET
      url: https://api.boltic.io/v1/workflows/:workflowId/executions
      params:
      - name: workflowId
        value: ''
        type: path
      - name: page
        value: ''
        type: query
      - name: limit
        value: ''
        type: query
      - name: status
        value: ''
        type: query
    docs: Retrieve execution history for a specific workflow.
  - info:
      name: Boltic Get execution details
      type: http
    http:
      method: GET
      url: https://api.boltic.io/v1/executions/:executionId
      params:
      - name: executionId
        value: ''
        type: path
    docs: Retrieve details and results of a specific workflow execution.
  - info:
      name: Boltic Cancel an execution
      type: http
    http:
      method: POST
      url: https://api.boltic.io/v1/executions/:executionId/cancel
      params:
      - name: executionId
        value: ''
        type: path
    docs: Cancel a running workflow execution.
- info:
    name: Triggers
    type: folder
  items:
  - info:
      name: Boltic List available triggers
      type: http
    http:
      method: GET
      url: https://api.boltic.io/v1/triggers
    docs: Retrieve a list of all available trigger types.
bundled: true