Keep topology API

The topology API from Keep — 3 operation(s) for topology.

Operations 5

GET /topology Get Topology Data #
GET /topology/applications Get Applications #
POST /topology/applications Create Application #
PUT /topology/applications/{application_id} Update Application #
DELETE /topology/applications/{application_id} Delete Application #

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/keep-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

keep-topology-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Keep actions Topology API
  description: Rest API powering https://platform.keephq.dev and friends 🏄‍♀️
  version: 0.24.5
servers:
- url: https://api.keephq.dev
  description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: topology
paths:
  /topology:
    get:
      tags:
      - topology
      summary: Get Topology Data
      description: Get all topology data
      operationId: get_topology_data_topology_get
      parameters:
      - required: false
        schema:
          type: string
          title: Provider Ids
        name: provider_ids
        in: query
      - required: false
        schema:
          type: string
          title: Services
        name: services
        in: query
      - required: false
        schema:
          type: string
          title: Environment
        name: environment
        in: query
      - required: false
        schema:
          type: boolean
          title: Include Empty Deps
          default: true
        name: include_empty_deps
        in: query
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/TopologyServiceDtoOut'
                type: array
                title: Response Get Topology Data Topology Get
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - API Key: []
      - HTTPBasic: []
      - OAuth2PasswordBearer: []
  /topology/applications:
    get:
      tags:
      - topology
      summary: Get Applications
      description: Get all applications
      operationId: get_applications_topology_applications_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/TopologyApplicationDtoOut'
                type: array
                title: Response Get Applications Topology Applications Get
      security:
      - API Key: []
      - HTTPBasic: []
      - OAuth2PasswordBearer: []
    post:
      tags:
      - topology
      summary: Create Application
      description: Create a new application
      operationId: create_application_topology_applications_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TopologyApplicationDtoIn'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TopologyApplicationDtoOut'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - API Key: []
      - HTTPBasic: []
      - OAuth2PasswordBearer: []
  /topology/applications/{application_id}:
    put:
      tags:
      - topology
      summary: Update Application
      description: Update an application
      operationId: update_application_topology_applications__application_id__put
      parameters:
      - required: true
        schema:
          type: string
          format: uuid
          title: Application Id
        name: application_id
        in: path
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TopologyApplicationDtoIn'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TopologyApplicationDtoOut'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - API Key: []
      - HTTPBasic: []
      - OAuth2PasswordBearer: []
    delete:
      tags:
      - topology
      summary: Delete Application
      description: Delete an application
      operationId: delete_application_topology_applications__application_id__delete
      parameters:
      - required: true
        schema:
          type: string
          format: uuid
          title: Application Id
        name: application_id
        in: path
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - API Key: []
      - HTTPBasic: []
      - OAuth2PasswordBearer: []
components:
  schemas:
    TopologyApplicationServiceDto:
      properties:
        id:
          type: integer
          title: Id
        name:
          type: string
          title: Name
        service:
          type: string
          title: Service
      type: object
      required:
      - id
      - name
      - service
      title: TopologyApplicationServiceDto
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
            - type: string
            - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
      - loc
      - msg
      - type
      title: ValidationError
    TopologyServiceDtoOut:
      properties:
        source_provider_id:
          type: string
          title: Source Provider Id
        repository:
          type: string
          title: Repository
        tags:
          items:
            type: string
          type: array
          title: Tags
        service:
          type: string
          title: Service
        display_name:
          type: string
          title: Display Name
        environment:
          type: string
          title: Environment
          default: unknown
        description:
          type: string
          title: Description
        team:
          type: string
          title: Team
        email:
          type: string
          title: Email
        slack:
          type: string
          title: Slack
        ip_address:
          type: string
          title: Ip Address
        mac_address:
          type: string
          title: Mac Address
        category:
          type: string
          title: Category
        manufacturer:
          type: string
          title: Manufacturer
        id:
          type: integer
          title: Id
        dependencies:
          items:
            $ref: '#/components/schemas/TopologyServiceDependencyDto'
          type: array
          title: Dependencies
        application_ids:
          items:
            type: string
            format: uuid
          type: array
          title: Application Ids
        updated_at:
          type: string
          format: date-time
          title: Updated At
      type: object
      required:
      - service
      - display_name
      - id
      - dependencies
      - application_ids
      title: TopologyServiceDtoOut
    TopologyApplicationDtoOut:
      properties:
        id:
          type: string
          format: uuid
          title: Id
        name:
          type: string
          title: Name
        description:
          type: string
          title: Description
        services:
          items:
            $ref: '#/components/schemas/TopologyApplicationServiceDto'
          type: array
          title: Services
          default: []
      type: object
      required:
      - id
      - name
      title: TopologyApplicationDtoOut
    TopologyServiceDependencyDto:
      properties:
        serviceId:
          type: integer
          title: Serviceid
        serviceName:
          type: string
          title: Servicename
        protocol:
          type: string
          title: Protocol
          default: unknown
      type: object
      required:
      - serviceId
      - serviceName
      title: TopologyServiceDependencyDto
    TopologyApplicationDtoIn:
      properties:
        id:
          type: string
          format: uuid
          title: Id
        name:
          type: string
          title: Name
        description:
          type: string
          title: Description
        services:
          items:
            $ref: '#/components/schemas/TopologyServiceDtoIn'
          type: array
          title: Services
          default: []
      type: object
      required:
      - name
      title: TopologyApplicationDtoIn
    TopologyServiceDtoIn:
      properties:
        id:
          type: integer
          title: Id
      type: object
      required:
      - id
      title: TopologyServiceDtoIn
  securitySchemes:
    API_Key:
      type: apiKey
      in: header
      name: X-API-KEY
    HTTPBasic:
      type: http
      scheme: basic
    OAuth2PasswordBearer:
      type: oauth2
      flows:
        password:
          scopes: {}
          tokenUrl: token