Checkmarx Engines API

Manage scan engines and engine servers

Operations 1

GET /sast/engineServers Checkmarx List engine servers #

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/checkmarx-engines-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

checkmarx-engines-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Checkmarx SAST Engines API
  description: REST API for Checkmarx Static Application Security Testing (SAST), enabling programmatic management of projects, scans, and results for identifying security vulnerabilities in source code through static analysis.
  version: '1.0'
  contact:
    name: Checkmarx Support
    url: https://support.checkmarx.com/
  termsOfService: https://checkmarx.com/terms-of-use/
servers:
- url: https://{checkmarx-server}/cxrestapi
  description: Checkmarx SAST Server
  variables:
    checkmarx-server:
      default: your-checkmarx-instance.com
      description: Hostname of the Checkmarx SAST server
security:
- bearerAuth: []
tags:
- name: Engines
  description: Manage scan engines and engine servers
paths:
  /sast/engineServers:
    get:
      operationId: listEngineServers
      summary: Checkmarx List engine servers
      description: Retrieve a list of all configured SAST engine servers.
      tags:
      - Engines
      responses:
        '200':
          description: List of engine servers
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/EngineServer'
        '401':
          description: Unauthorized
components:
  schemas:
    EngineServer:
      type: object
      properties:
        id:
          type: integer
          description: Engine server unique identifier
        name:
          type: string
          description: Engine server name
        uri:
          type: string
          format: uri
          description: Engine server URI
        minLoc:
          type: integer
          description: Minimum lines of code for this engine
        maxLoc:
          type: integer
          description: Maximum lines of code for this engine
        isAlive:
          type: boolean
          description: Whether the engine is currently available
        maxScans:
          type: integer
          description: Maximum concurrent scans
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: OAuth 2.0 bearer token obtained from the authentication endpoint
externalDocs:
  description: Checkmarx SAST REST API Documentation
  url: https://checkmarx.com/resource/documents/en/34965-8158-rest-api.html