Optimyzee App Automation API

App Automation

Operations 4

DELETE /app/automations/{automationId} Delete an automation #
POST /app/automations/interpret Interpret a natural-language intent into proposed automations #
GET /app/automations List the current user's automations #
POST /app/automations Enable (persist) an automation #

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/optimyzee-app-automation-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

optimyzee-app-automation-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Optimyzee Application App Automation API
  version: 4.1.0
  x-original-title: API
  description: App Automation
servers:
- url: https://api.optimyzee.com
  description: Production (host serving this document at /docs)
tags:
- name: App Automation
  description: App Automation
paths:
  /app/automations/{automationId}:
    delete:
      tags:
      - App Automation
      summary: Delete an automation
      operationId: 8a4d6eaf33c6a8399451f759169cfa31
      parameters:
      - name: automationId
        in: path
        required: true
        schema:
          type: integer
      responses:
        '204':
          description: No Content
  /app/automations/interpret:
    post:
      tags:
      - App Automation
      summary: Interpret a natural-language intent into proposed automations
      operationId: 9cee8dd5e43b406f87a6d7785d79c22f
      requestBody:
        required: true
        content:
          application/json:
            schema:
              required:
              - intent
              properties:
                intent:
                  type: string
                context:
                  type:
                  - object
                  - 'null'
              type: object
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/AppAutomationSpecSchema'
  /app/automations:
    get:
      tags:
      - App Automation
      summary: List the current user's automations
      operationId: ea27e985d6ee2548d8dcc475dddcc4db
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/AppAutomationSchema'
    post:
      tags:
      - App Automation
      summary: Enable (persist) an automation
      operationId: ca27bcedfbe5f11307e47810b1b2a0b9
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AppAutomationSchema'
components:
  schemas:
    AppAutomationSchema:
      required:
      - id
      - businessId
      - title
      - summary
      - signal
      - trigger
      - direction
      - deltaPct
      - target
      - scope
      - channels
      - guardrails
      - confidence
      - status
      - createdAt
      properties:
        id:
          type: integer
        businessId:
          type:
          - string
          - 'null'
        title:
          type: string
        summary:
          type:
          - string
          - 'null'
        signal:
          type: string
        trigger:
          type:
          - string
          - 'null'
        direction:
          type: string
        deltaPct:
          type: integer
        target:
          type:
          - string
          - 'null'
        scope:
          type:
          - string
          - 'null'
        channels:
          type: array
          items:
            type: string
        guardrails:
          type:
          - string
          - 'null'
        confidence:
          type: string
        status:
          type: string
        createdAt:
          type:
          - string
          - 'null'
      type: object
    AppAutomationConfigFieldSchema:
      required:
      - label
      - value
      - filledByAi
      properties:
        label:
          type: string
        value:
          type: string
        filledByAi:
          type: boolean
      type: object
    AppAutomationSpecSchema:
      required:
      - id
      - intentText
      - title
      - summary
      - signal
      - signalLabel
      - trigger
      - direction
      - deltaPct
      - target
      - scope
      - channels
      - guardrails
      - requiredConfig
      - confidence
      properties:
        id:
          type: string
        intentText:
          type: string
        title:
          type: string
        summary:
          type: string
        signal:
          type: string
        signalLabel:
          type: string
        trigger:
          type: string
        direction:
          type: string
        deltaPct:
          type: integer
        target:
          type: string
        scope:
          type: string
        channels:
          type: array
          items:
            type: string
        guardrails:
          type: string
        requiredConfig:
          type: array
          items:
            $ref: '#/components/schemas/AppAutomationConfigFieldSchema'
        confidence:
          type: string
      type: object
  securitySchemes:
    token:
      type: apiKey
      description: Bearer token authorization
      name: authorization
      in: header