Apache HTTP Server Status API

Server status and metrics

Operations 2

GET /server-status Apache HTTP Server Get Server Status #
GET /server-info Apache HTTP Server Get Server Info #

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-httpd-status-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-httpd-status-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Apache HTTP Server Balancer Status API
  version: 2.4.0
  description: Status and monitoring API for Apache HTTP Server (httpd) provided by mod_status, exposing server metrics, worker state, and load balancer information.
  contact:
    email: dev@httpd.apache.org
  license:
    name: Apache 2.0
    url: https://www.apache.org/licenses/LICENSE-2.0
servers:
- url: http://localhost:80
  description: Apache HTTP Server
tags:
- name: Status
  description: Server status and metrics
paths:
  /server-status:
    get:
      operationId: getServerStatus
      summary: Apache HTTP Server Get Server Status
      description: Get real-time server status metrics from mod_status including request rates, worker states, and CPU usage.
      tags:
      - Status
      parameters:
      - name: auto
        in: query
        required: false
        schema:
          type: string
        description: Use 'auto' for machine-readable plain-text format
      responses:
        '200':
          description: Server status retrieved
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ServerStatus'
  /server-info:
    get:
      operationId: getServerInfo
      summary: Apache HTTP Server Get Server Info
      description: Get detailed server configuration information from mod_info including loaded modules and directives.
      tags:
      - Status
      responses:
        '200':
          description: Server info retrieved
          content:
            text/html:
              schema:
                type: string
components:
  schemas:
    ServerStatus:
      type: object
      description: Apache HTTP Server status information from mod_status
      properties:
        ServerVersion:
          type: string
          description: Apache server version string
          example: Apache/2.4.57 (Unix)
        ServerMPM:
          type: string
          description: Multi-processing module in use
          example: event
        ServerUptimeSeconds:
          type: integer
          description: Server uptime in seconds
          example: 86400
        Load1:
          type: number
          description: 1-minute load average
          example: 0.12
        Load5:
          type: number
          description: 5-minute load average
          example: 0.09
        Load15:
          type: number
          description: 15-minute load average
          example: 0.08
        ReqPerSec:
          type: number
          description: Requests per second
          example: 142.3
        BytesPerSec:
          type: number
          description: Bytes transferred per second
          example: 512000
        BusyWorkers:
          type: integer
          description: Number of busy worker threads
          example: 10
        IdleWorkers:
          type: integer
          description: Number of idle worker threads
          example: 6
        Scoreboard:
          type: string
          description: Worker state scoreboard string
          example: ___________W_______