Apache Mesos Apache Mesos Operator HTTP API API

The Apache Mesos Operator HTTP API API from Apache Mesos — 1 operation(s) for apache mesos operator http api.

Operations 1

POST /api/v1 Operator HTTP API call

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/apache-mesos-apache-mesos-operator-http-api-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

apache-mesos-apache-mesos-operator-http-api-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Apache Mesos Operator HTTP API
  version: '1.0'
  description: Minimal OpenAPI for the Apache Mesos Operator HTTP API. All operations are POST requests to /api/v1 with a JSON body whose `type` field selects the operation (e.g. GET_HEALTH, GET_STATE, RESERVE_RESOURCES).
servers:
- url: http://localhost:5050
  description: Mesos Master
- url: http://localhost:5051
  description: Mesos Agent
tags:
- name: Apache Mesos Operator HTTP API
paths:
  /api/v1:
    post:
      summary: Operator HTTP API call
      description: Submit an operator API call. The request body must be a JSON or Protobuf-encoded `Call` object. The `type` field determines the action, for example GET_HEALTH, GET_FLAGS, GET_VERSION, GET_METRICS, GET_LOGGING_LEVEL, SET_LOGGING_LEVEL, LIST_FILES, READ_FILE, GET_STATE, GET_AGENTS, GET_FRAMEWORKS, GET_EXECUTORS, GET_TASKS, GET_ROLES, GET_OPERATIONS, GET_WEIGHTS, UPDATE_WEIGHTS, GET_MASTER, RESERVE_RESOURCES, UNRESERVE_RESOURCES, CREATE_VOLUMES, DESTROY_VOLUMES, GROW_VOLUME, SHRINK_VOLUME, GET_MAINTENANCE_STATUS, GET_MAINTENANCE_SCHEDULE, UPDATE_MAINTENANCE_SCHEDULE, START_MAINTENANCE, STOP_MAINTENANCE, GET_QUOTA, UPDATE_QUOTA, MARK_AGENT_GONE, DRAIN_AGENT, DEACTIVATE_AGENT, REACTIVATE_AGENT, SUBSCRIBE, GET_CONTAINERS, LAUNCH_NESTED_CONTAINER, and WAIT_NESTED_CONTAINER.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                type:
                  type: string
                  description: Operator call type
              required:
              - type
          application/x-protobuf:
            schema:
              type: string
              format: binary
      responses:
        '200':
          description: Successful call response
          content:
            application/json:
              schema:
                type: object
        '202':
          description: Accepted (no response body)
        '400':
          description: Malformed call
      tags:
      - Apache Mesos Operator HTTP API
x-generated-from: https://mesos.apache.org/documentation/latest/operator-http-api/
x-generated-by: claude-crawl-2026-05-08