Axon Framework Event Processors API

The Event Processors API from Axon Framework — 3 operation(s) for event processors.

Operations 3

GET /processors Axon Framework - List Event Processors #
PATCH /processors/{processorName}/pause Axon Framework - Pause an Event Processor #
PATCH /processors/{processorName}/start Axon Framework - Start an Event Processor #

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/axon-framework-event-processors-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

axon-framework-event-processors-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Axon Server REST Applications Event Processors API
  description: The Axon Server REST API provides HTTP endpoints for managing the Axon Server event store, command routing, query handling, application contexts, users, and cluster configuration.
  version: 4.9.0
  contact:
    name: AxonIQ
    url: https://www.axoniq.io/
  license:
    name: AxonIQ Open Source License
    url: https://www.axoniq.io/
servers:
- url: '{baseUrl}/v1'
  description: Axon Server
  variables:
    baseUrl:
      default: http://localhost:8024
tags:
- name: Event Processors
paths:
  /processors:
    get:
      operationId: listEventProcessors
      summary: Axon Framework - List Event Processors
      description: Returns all tracking event processors and their status.
      tags:
      - Event Processors
      parameters:
      - name: context
        in: query
        schema:
          type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/EventProcessor'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /processors/{processorName}/pause:
    patch:
      operationId: pauseEventProcessor
      summary: Axon Framework - Pause an Event Processor
      description: Pauses a tracking event processor.
      tags:
      - Event Processors
      parameters:
      - name: processorName
        in: path
        required: true
        schema:
          type: string
      - name: context
        in: query
        schema:
          type: string
      - name: tokenStoreIdentifier
        in: query
        schema:
          type: string
      responses:
        '200':
          description: Event processor paused
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /processors/{processorName}/start:
    patch:
      operationId: startEventProcessor
      summary: Axon Framework - Start an Event Processor
      description: Starts a paused tracking event processor.
      tags:
      - Event Processors
      parameters:
      - name: processorName
        in: path
        required: true
        schema:
          type: string
      - name: context
        in: query
        schema:
          type: string
      - name: tokenStoreIdentifier
        in: query
        schema:
          type: string
      responses:
        '200':
          description: Event processor started
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
components:
  schemas:
    EventProcessor:
      type: object
      properties:
        name:
          type: string
        mode:
          type: string
        isStreaming:
          type: boolean
        fullName:
          type: string
        tokenStoreIdentifier:
          type: string
        activeThreads:
          type: integer
        canPause:
          type: boolean
        isRunning:
          type: boolean
        isError:
          type: boolean