Spring Boot Admin Console Events API

Instance lifecycle event stream

Operations 1

GET /instances/events Stream Instance Events #

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/spring-boot-admin-console-events-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

spring-boot-admin-console-events-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Spring Boot Admin Server Applications Events API
  description: REST API for the Spring Boot Admin server. Manages application registration, instance monitoring, Actuator endpoint proxying, and lifecycle event streaming. Spring Boot Admin is a community project by codecentric AG that provides a web UI for monitoring and managing Spring Boot applications via their Actuator endpoints.
  version: 3.3.0
  contact:
    name: codecentric AG
    url: https://github.com/codecentric/spring-boot-admin
  license:
    name: Apache 2.0
    url: https://www.apache.org/licenses/LICENSE-2.0
servers:
- url: http://localhost:8080
  description: Local Spring Boot Admin server
tags:
- name: Events
  description: Instance lifecycle event stream
paths:
  /instances/events:
    get:
      operationId: streamInstanceEvents
      summary: Stream Instance Events
      description: Server-Sent Events (SSE) stream of all instance lifecycle events. Events include REGISTERED, DEREGISTERED, STATUS_CHANGED, INFO_CHANGED, and ENDPOINTS_DETECTED.
      tags:
      - Events
      responses:
        '200':
          description: SSE event stream of instance lifecycle events
          content:
            text/event-stream:
              schema:
                $ref: '#/components/schemas/InstanceEvent'
components:
  schemas:
    InstanceEvent:
      type: object
      description: A lifecycle event for an application instance (delivered via SSE)
      properties:
        instance:
          type: string
          description: Instance ID this event is about
          example: abc123def456
        version:
          type: integer
          description: Event version number (monotonically increasing)
        timestamp:
          type: string
          format: date-time
          description: When this event occurred
        type:
          type: string
          description: Event type
          enum:
          - REGISTERED
          - DEREGISTERED
          - STATUS_CHANGED
          - INFO_CHANGED
          - ENDPOINTS_DETECTED
        statusInfo:
          $ref: '#/components/schemas/StatusInfo'
        info:
          type: object
          description: Updated info payload (for INFO_CHANGED events)
          additionalProperties: true
    StatusInfo:
      type: object
      description: Status information for an application instance
      properties:
        status:
          type: string
          description: Current instance status
          enum:
          - UP
          - DOWN
          - OUT_OF_SERVICE
          - UNKNOWN
          - RESTRICTED
          - OFFLINE
        details:
          type: object
          description: Additional status details from the health endpoint
          additionalProperties: true