APIClarity Trace Analyzer Module API

Analyzes the path, headers and body of observed requests and responses for weak authentication, exposure of sensitive information and potential broken object level authorization. Served under /api/modules/traceanalyzer.

Operations 5

GET /apiFindings/{apiID} Get findings for an API and module #
POST /apiFindings/{apiID}/reset Delete all API findings for an API #
GET /eventAnnotations/{eventID} Get Annotations for an event #
POST /{apiID}/start Start Trace Analysis for an API #
POST /{apiID}/stop Stop Trace Analysis for an API #

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/apiclarity-trace-analyzer-module-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

apiclarity-trace-analyzer-module-openapi.yml Raw ↑
openapi: 3.0.3
info:
  title: APIClarity Trace Analyzer Module
  version: 0.0.1
  description: APIClarity Trace Analyzer Module API
paths:
  /apiFindings/{apiID}:
    get:
      operationId: GetApiFindings
      summary: 'Get findings for an API and module'
      description: 'Asks for findings of an APIClarity module, and API. Implemented by each module'
      parameters:
        - name: apiID
          in: path
          required: true
          schema:
            $ref: '../../../../../../api3/common/openapi.yaml#/components/schemas/ApiID'
        - $ref: '../../../../../../api3/common/openapi.yaml#/components/parameters/Sensitive'
      responses:
        '200':
          description: 'An API Findings Bundle'
          content:
            application/json:
              schema:
                $ref: '../../../../../../api3/common/openapi.yaml#/components/schemas/APIFindings'
        default:
          description: 'Error response'
          content:
            'application/json':
              schema:
                $ref: '../../../../../../api3/common/openapi.yaml#/components/schemas/ApiResponse'
  /apiFindings/{apiID}/reset:
    post:
      operationId: ResetApiFindings
      summary: 'Delete all API findings for an API'
      parameters:
        - name: apiID
          in: path
          required: true
          schema:
            $ref: '../../../../../../api3/common/openapi.yaml#/components/schemas/ApiID'
      responses:
        '204':
          description: 'Reset'
        default:
          description: 'Error response'
          content:
            'application/json':
              schema:
                $ref: '../../../../../../api3/common/openapi.yaml#/components/schemas/ApiResponse'
  /eventAnnotations/{eventID}:
    get:
      operationId: GetEventAnnotations
      summary: Get Annotations for an event
      description: Get Trace Analyzer Annotations for a specific event
      parameters:
        - name: eventID
          in: path
          required: true
          schema:
            type: integer
            format: int64
        - $ref: '#/components/parameters/redacted'
      responses:
        '200':
          description: Annotation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Annotations'

  /{apiID}/start:
     post:
      operationId: StartTraceAnalysis
      summary: Start Trace Analysis for an API
      description: Start Trace Analysis for an API. 
      parameters:
        - name: apiID
          in: path
          required: true
          schema:
            $ref: ../../../../../../api3/common/openapi.yaml#/components/schemas/ApiID
      responses:
        '200':
          description: 'Success'
          content:
            'application/json':
              schema:
                $ref: '../../../../../../api3/common/openapi.yaml#/components/schemas/ApiResponse' 
        default:
          description: 'Error response'
          content:
            'application/json':
              schema:
                $ref: '../../../../../../api3/common/openapi.yaml#/components/schemas/ApiResponse'

  /{apiID}/stop:
     post:
      operationId: StopTraceAnalysis
      summary: Stop Trace Analysis for an API
      description: Stop Trace Analysis for an API. 
      parameters:
        - name: apiID
          in: path
          required: true
          schema:
            $ref: ../../../../../../api3/common/openapi.yaml#/components/schemas/ApiID
      responses:
        '200':
          description: 'Success'
          content:
            'application/json':
              schema:
                $ref: '../../../../../../api3/common/openapi.yaml#/components/schemas/ApiResponse' 
        default:
          description: 'Error response'
          content:
            'application/json':
              schema:
                $ref: '../../../../../../api3/common/openapi.yaml#/components/schemas/ApiResponse'

components:
  schemas:
    Annotation:
      type: object
      properties:
        name:
          type: string
        annotation:
          type: string
        severity:
          type: string
        kind:
          type: string
      required:
        - id
        - name
        - annotation
        - severity
        - kind
    Annotations:
      type: object
      required:
        - total
      properties:
        total:
          type: 'integer'
          description: 'Total event annotations count'
        items:
          type: array
          items:
            $ref: '#/components/schemas/Annotation'
  parameters:
    redacted:
      name: redacted
      in: query
      required: false
      schema:
        default: false
        type: boolean