Maven Machines Health API

The health API from Maven Machines — 1 operation(s) for health.

Operations 1

GET / Health Check #

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/maven-machines-health-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 email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

maven-machines-health-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Reddy Ice Middleware Health API
  description: 'Middleware service that integrates Reddy Ice systems with the Maven Machines platform.


    ## Authentication

    All protected endpoints require an API key in the `apiKey` request header.


    `GET /` is public and does not require an API key.


    ## Environment

    The middleware URL is the same for all tiers. Your `apiKey` determines which Maven

    environment (dev, qa, staging, prod) receives the request.'
  version: 1.0.0
  contact: {}
  license:
    name: UNLICENSED
servers:
- url: https://reddy-ice.middleware.mavenmachines.com
  description: Middleware (target env selected by apiKey)
tags:
- name: health
paths:
  /:
    get:
      operationId: AppController_getHello
      summary: Health Check
      description: Returns a simple message to verify the middleware is running
      security: []
      parameters: []
      responses:
        '200':
          description: Service is running
          content:
            application/json:
              schema:
                type: string
                example: Hello World!
        '500':
          description: Unexpected server error
        5XX:
          description: Server error
        4XX:
          description: Client error
      tags:
      - health
components:
  securitySchemes:
    api_key:
      type: apiKey
      in: header
      name: apiKey