Apache Storm Topology API
The Topology API from Apache Storm — 14 operation(s) for topology.
The Topology API from Apache Storm — 14 operation(s) for topology.
Every API here is available over the APIs.io API and to AI agents over MCP.
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
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.curl "https://apis.io/api/v1/apis/apache-storm-topology-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
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: 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