APIClarity Spec Differ Module API

Compares observed API traces against the provided or reconstructed specification to surface shadow APIs (observed but undocumented), zombie APIs (observed but marked deprecated) and drift. Served under /api/modules/spec_differ.

Operations 2

POST /{apiID}/start Start Differ for an API #
POST /{apiID}/stop Stop Differ 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-spec-differ-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-spec-differ-module-openapi.yml Raw ↑
openapi: 3.0.3
info:
  title: APIClarity Differ
  version: 0.0.1
  description: APIClarity Module API
paths:
  /{apiID}/start:
    post:
      operationId: StartDiffer
      summary: Start Differ for an API
      description: Start Differ 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: StopDiffer
      summary: Stop Differ for an API
      description: Stop Differ 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:
    Diff:
      type: object
      properties:
        lastSeen:
          description: The time that the diff was last seen
          type: 'string'
          format: date-time
        diffType:
          $ref: '../../../../../../api3/common/openapi.yaml#/components/schemas/DiffType'
        oldSpec:
          description: 'Old spec json string'
          type: 'string'
        newSpec:
          description: 'New spec json string'
          type: 'string'
        path:
          description: 'Path of the diff element'
          type: 'string'
        method:
          description: 'Method of the diff element'
          $ref: '../../../../../../api3/common/openapi.yaml#/components/schemas/HttpMethod'
        specType:
          description: 'the spec type the diff was calculated against'
          $ref: '../../../../../../api3/common/openapi.yaml#/components/schemas/SpecType'
        specTimestamp:
          description: 'the time that this spec was created. used also as spec version'
          type: 'string'
          format: date-time
      required:
        - lastSeen
        - diffType
        - oldSpec
        - newSpec
        - method
        - path
        - specType
        - specTimestamp
    APIDiffs:
      type: object
      properties:
        apiInfo:
          $ref: '../../../../../../api3/common/openapi.yaml#/components/schemas/ApiInfoWithType'
        diffs:
          type: array
          items:
            $ref: '#/components/schemas/Diff'
      required:
        - apiInfo
        - diffs
    SpecDiffs:
      type: object
      properties:
        diffs:
          $ref: '#/components/schemas/APIDiffs'
      required:
        - diffs
    SpecDiffsNotification:
      allOf:
        - $ref: '../../../../../../api3/common/openapi.yaml#/components/schemas/BaseNotification'
        - $ref: '#/components/schemas/SpecDiffs'