Apache Storm Topology API

The Topology API from Apache Storm — 14 operation(s) for topology.

Operations 14

GET /api/v1/topology/summary Topology summary
GET /api/v1/topology/{id} Topology details
GET /api/v1/topology/{id}/metrics Topology metrics
GET /api/v1/topology/{id}/component/{component} Component stats
POST /api/v1/topology/{id}/profiling/start/{host-port}/{timeout} Start profiling
POST /api/v1/topology/{id}/profiling/dumpprofile/{host-port} Dump profile
POST /api/v1/topology/{id}/profiling/stop/{host-port} Stop profiling
POST /api/v1/topology/{id}/profiling/dumpjstack/{host-port} Dump jstack
POST /api/v1/topology/{id}/profiling/dumpheap/{host-port} Dump heap
POST /api/v1/topology/{id}/profiling/restartworker/{host-port} Restart worker
POST /api/v1/topology/{id}/activate Activate topology
POST /api/v1/topology/{id}/deactivate Deactivate topology
POST /api/v1/topology/{id}/rebalance/{wait-time} Rebalance topology
POST /api/v1/topology/{id}/kill/{wait-time} Kill topology

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-storm-topology-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-storm-topology-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Apache Storm UI REST Cluster Topology API
  version: '1.0'
  description: Minimal OpenAPI for the Apache Storm UI REST API exposing cluster, supervisor, nimbus, topology, and DRPC operations.
servers:
- url: http://localhost:8080
  description: Storm UI
tags:
- name: Topology
paths:
  /api/v1/topology/summary:
    get:
      summary: Topology summary
      responses:
        '200':
          description: OK
      tags:
      - Topology
  /api/v1/topology/{id}:
    get:
      summary: Topology details
      parameters:
      - $ref: '#/components/parameters/TopologyId'
      responses:
        '200':
          description: OK
      tags:
      - Topology
  /api/v1/topology/{id}/metrics:
    get:
      summary: Topology metrics
      parameters:
      - $ref: '#/components/parameters/TopologyId'
      responses:
        '200':
          description: OK
      tags:
      - Topology
  /api/v1/topology/{id}/component/{component}:
    get:
      summary: Component stats
      parameters:
      - $ref: '#/components/parameters/TopologyId'
      - name: component
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
      tags:
      - Topology
  /api/v1/topology/{id}/profiling/start/{host-port}/{timeout}:
    post:
      summary: Start profiling
      parameters:
      - $ref: '#/components/parameters/TopologyId'
      - name: host-port
        in: path
        required: true
        schema:
          type: string
      - name: timeout
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
      tags:
      - Topology
  /api/v1/topology/{id}/profiling/dumpprofile/{host-port}:
    post:
      summary: Dump profile
      parameters:
      - $ref: '#/components/parameters/TopologyId'
      - name: host-port
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
      tags:
      - Topology
  /api/v1/topology/{id}/profiling/stop/{host-port}:
    post:
      summary: Stop profiling
      parameters:
      - $ref: '#/components/parameters/TopologyId'
      - name: host-port
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
      tags:
      - Topology
  /api/v1/topology/{id}/profiling/dumpjstack/{host-port}:
    post:
      summary: Dump jstack
      parameters:
      - $ref: '#/components/parameters/TopologyId'
      - name: host-port
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
      tags:
      - Topology
  /api/v1/topology/{id}/profiling/dumpheap/{host-port}:
    post:
      summary: Dump heap
      parameters:
      - $ref: '#/components/parameters/TopologyId'
      - name: host-port
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
      tags:
      - Topology
  /api/v1/topology/{id}/profiling/restartworker/{host-port}:
    post:
      summary: Restart worker
      parameters:
      - $ref: '#/components/parameters/TopologyId'
      - name: host-port
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
      tags:
      - Topology
  /api/v1/topology/{id}/activate:
    post:
      summary: Activate topology
      parameters:
      - $ref: '#/components/parameters/TopologyId'
      responses:
        '200':
          description: OK
      tags:
      - Topology
  /api/v1/topology/{id}/deactivate:
    post:
      summary: Deactivate topology
      parameters:
      - $ref: '#/components/parameters/TopologyId'
      responses:
        '200':
          description: OK
      tags:
      - Topology
  /api/v1/topology/{id}/rebalance/{wait-time}:
    post:
      summary: Rebalance topology
      parameters:
      - $ref: '#/components/parameters/TopologyId'
      - name: wait-time
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
      tags:
      - Topology
  /api/v1/topology/{id}/kill/{wait-time}:
    post:
      summary: Kill topology
      parameters:
      - $ref: '#/components/parameters/TopologyId'
      - name: wait-time
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
      tags:
      - Topology
components:
  parameters:
    TopologyId:
      name: id
      in: path
      required: true
      schema:
        type: string
x-generated-from: https://storm.apache.org/releases/current/STORM-UI-REST-API.html
x-generated-by: claude-crawl-2026-05-08