Altimate AI WORKFLOW_AGENT API

The WORKFLOW_AGENT API from Altimate AI — 8 operation(s) for workflow_agent.

Operations 8

POST /api/v1/workflow/agent/heartbeat Post Heartbeat #
POST /api/v1/workflow/agent/commands/{command_id}/ack Acknowledge Command #
GET /api/v1/workflow/agent/config/{namespace} Pull Config #
GET /api/v1/workflow/agent/config Pull All Configs #
GET /api/v1/workflow/agent/commands Pull Pending Commands #
POST /api/v1/workflow/agent/sessions Report Session #
POST /api/v1/workflow/agent/messages Report Message #
POST /api/v1/workflow/agent/cron/sync Sync Cron Jobs #

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/altimate-ai-workflow-agent-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

altimate-ai-workflow-agent-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Fast ACCOUNT_COSTS WORKFLOW AGENT API
  version: 0.1.0
servers:
- url: https://api.myaltimate.com
  description: Base URL reconciled from apis.yml
tags:
- name: WORKFLOW_AGENT
paths:
  /api/v1/workflow/agent/heartbeat:
    post:
      tags:
      - WORKFLOW_AGENT
      summary: Post Heartbeat
      description: Agent posts health ping. Returns pending commands.
      operationId: post_heartbeat_api_v1_workflow_agent_heartbeat_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/HeartbeatRequest'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - HTTPBearer: []
      - HTTPBearer: []
  /api/v1/workflow/agent/commands/{command_id}/ack:
    post:
      tags:
      - WORKFLOW_AGENT
      summary: Acknowledge Command
      description: Agent reports command execution result.
      operationId: acknowledge_command_api_v1_workflow_agent_commands__command_id__ack_post
      deprecated: true
      security:
      - HTTPBearer: []
      - HTTPBearer: []
      parameters:
      - name: command_id
        in: path
        required: true
        schema:
          type: string
          title: Command Id
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CommandAckRequest'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /api/v1/workflow/agent/config/{namespace}:
    get:
      tags:
      - WORKFLOW_AGENT
      summary: Pull Config
      description: Agent pulls all configs for a namespace.
      operationId: pull_config_api_v1_workflow_agent_config__namespace__get
      security:
      - HTTPBearer: []
      - HTTPBearer: []
      parameters:
      - name: namespace
        in: path
        required: true
        schema:
          type: string
          title: Namespace
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /api/v1/workflow/agent/config:
    get:
      tags:
      - WORKFLOW_AGENT
      summary: Pull All Configs
      description: Agent pulls all configs across all namespaces.
      operationId: pull_all_configs_api_v1_workflow_agent_config_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
      security:
      - HTTPBearer: []
      - HTTPBearer: []
  /api/v1/workflow/agent/commands:
    get:
      tags:
      - WORKFLOW_AGENT
      summary: Pull Pending Commands
      description: Agent pulls pending commands.
      operationId: pull_pending_commands_api_v1_workflow_agent_commands_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
      security:
      - HTTPBearer: []
      - HTTPBearer: []
  /api/v1/workflow/agent/sessions:
    post:
      tags:
      - WORKFLOW_AGENT
      summary: Report Session
      description: Agent reports a new or updated session.
      operationId: report_session_api_v1_workflow_agent_sessions_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SessionReportRequest'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - HTTPBearer: []
      - HTTPBearer: []
  /api/v1/workflow/agent/messages:
    post:
      tags:
      - WORKFLOW_AGENT
      summary: Report Message
      description: 'Agent appends a message to a session''s conversation log.


        session_id can be either a workflow_sessions UUID or an openclaw_session_id.

        If the session doesn''t exist yet, auto-create it from the openclaw_session_id.'
      operationId: report_message_api_v1_workflow_agent_messages_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/MessageReportRequest'
        required: true
      responses:
        '201':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - HTTPBearer: []
      - HTTPBearer: []
  /api/v1/workflow/agent/cron/sync:
    post:
      tags:
      - WORKFLOW_AGENT
      summary: Sync Cron Jobs
      description: Agent syncs its cron job state.
      operationId: sync_cron_jobs_api_v1_workflow_agent_cron_sync_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CronSyncRequest'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      deprecated: true
      security:
      - HTTPBearer: []
      - HTTPBearer: []
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    MessageReportRequest:
      properties:
        session_id:
          type: string
          title: Session Id
        role:
          type: string
          title: Role
        content:
          type: string
          title: Content
        tool_calls:
          anyOf:
          - {}
          - type: 'null'
          title: Tool Calls
        metadata:
          anyOf:
          - additionalProperties: true
            type: object
          - type: 'null'
          title: Metadata
      type: object
      required:
      - session_id
      - role
      - content
      title: MessageReportRequest
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
            - type: string
            - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
      - loc
      - msg
      - type
      title: ValidationError
    SessionReportRequest:
      properties:
        openclaw_session_id:
          type: string
          title: Openclaw Session Id
        title:
          anyOf:
          - type: string
          - type: 'null'
          title: Title
        channel:
          anyOf:
          - type: string
          - type: 'null'
          title: Channel
        status:
          anyOf:
          - type: string
          - type: 'null'
          title: Status
        current_agent_slug:
          anyOf:
          - type: string
          - type: 'null'
          title: Current Agent Slug
        metadata:
          anyOf:
          - additionalProperties: true
            type: object
          - type: 'null'
          title: Metadata
      type: object
      required:
      - openclaw_session_id
      title: SessionReportRequest
    CommandAckRequest:
      properties:
        status:
          type: string
          title: Status
          default: executed
        result:
          anyOf:
          - additionalProperties: true
            type: object
          - type: 'null'
          title: Result
        error:
          anyOf:
          - type: string
          - type: 'null'
          title: Error
      type: object
      title: CommandAckRequest
    CronSyncRequest:
      properties:
        jobs:
          items:
            additionalProperties: true
            type: object
          type: array
          title: Jobs
      type: object
      required:
      - jobs
      title: CronSyncRequest
    HeartbeatRequest:
      properties:
        instance_id:
          type: string
          title: Instance Id
        status:
          type: string
          title: Status
          default: healthy
        vitals:
          anyOf:
          - additionalProperties: true
            type: object
          - type: 'null'
          title: Vitals
        llm_usage:
          anyOf:
          - additionalProperties: true
            type: object
          - type: 'null'
          title: Llm Usage
        capacity:
          anyOf:
          - additionalProperties: true
            type: object
          - type: 'null'
          title: Capacity
      type: object
      required:
      - instance_id
      title: HeartbeatRequest
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer