Make AI Agents API

The AI Agents API from Make — 1 operation(s) for ai agents.

OpenAPI Specification

make-ai-agents-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Make AI Agents API
  description: The Make (formerly Integromat) REST API provides programmatic access to scenarios and the broader Make platform. Endpoints are organized into resource-oriented URLs at `/api/v2/`. Authentication uses an API token issued from the user profile with required scopes, passed via the `Authorization` header (`Token <api-token>`).
  version: 2.0.0
  contact:
    name: Make
    url: https://developers.make.com/api-documentation
servers:
- url: https://us1.make.com/api/v2
  description: US1 region
- url: https://us2.make.com/api/v2
  description: US2 region
- url: https://eu1.make.com/api/v2
  description: EU1 region
- url: https://eu2.make.com/api/v2
  description: EU2 region
security:
- TokenAuth: []
tags:
- name: AI Agents
paths:
  /scenarios/ai-agents:
    get:
      tags:
      - AI Agents
      summary: List AI agent scenarios
      operationId: listAiAgentScenarios
      responses:
        '200':
          description: AI agent scenarios
components:
  securitySchemes:
    TokenAuth:
      type: apiKey
      in: header
      name: Authorization
      description: 'API token in the form: `Token <api-token>` with the required scopes enabled.'