Edge Delta Pattern Stats API

The Pattern Stats API from Edge Delta — 1 operation(s) for pattern stats.

Operations 1

GET /v1/orgs/{org_id}/clustering/stats

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/edge-delta-pattern-stats-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 email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

edge-delta-pattern-stats-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: 'Edge Delta API provides endpoints to manage your configs/integrations/rehydrations and more. Generate an API token to get started: https://app.edgedelta.com/admin/organization#api-tokens'
  title: Edge Delta Access Pattern Stats API
  contact:
    name: API Support
    email: support@edgedelta.com
  version: '1.0'
servers:
- url: https://api.edgedelta.com
tags:
- name: Pattern Stats
paths:
  /v1/orgs/{org_id}/clustering/stats:
    get:
      security:
      - ApiKeyAuth: []
      description: Returns top log patterns (signatures of log messages) and their stats; count, proportion, sentiment and delta.
      tags:
      - Pattern Stats
      parameters:
      - description: Org ID
        name: org_id
        in: path
        required: true
        schema:
          type: string
      - description: Edge Delta Common Query Language expression
        name: query
        in: query
        schema:
          type: string
      - description: If summary true call returns up to 50 interesting clusters with 10 top anomaly, top/bottom delta, top/bottom count. Param size is ignored
        name: summary
        in: query
        schema:
          type: boolean
      - description: Max number of clusters in response. For AI search, limit should be 20.
        name: limit
        in: query
        schema:
          type: string
      - description: Lookback period in golang duration format. e.g. '1h'. Either provide from/to or provide lookback/to or just lookback
        name: lookback
        in: query
        schema:
          type: string
      - description: From datetime in ISO format 2006-01-02T15:04:05.000Z
        name: from
        in: query
        schema:
          type: string
      - description: To datetime in ISO format 2006-01-02T15:04:05.000Z
        name: to
        in: query
        schema:
          type: string
      - description: Comma separated fields to group by
        name: groupby
        in: query
        schema:
          type: string
      - description: Valatility can be new, existing, gone, all. Default is all
        name: volatility
        in: query
        schema:
          type: string
      - description: Comma separated offsets for delta stat calculation. Each offset is in golang duration format and order of offsets determines order of offset_ fields in cluster stat response. Default value is lookback duration. e.g. '24h'.
        name: offset
        in: query
        schema:
          type: string
      - description: Window for on demand anomaly calculation histogram series. e.g. '5m', '1h', '2d'. Combined values like '5m3s' are NOT supported.
        name: window
        in: query
        schema:
          type: string
      - description: Negative param is used to get negative sentiments.
        name: negative
        in: query
        schema:
          type: boolean
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/core.ClusterStatResponse'
components:
  schemas:
    core.ClusterStatResponse:
      type: object
      properties:
        stats:
          type: array
          items:
            $ref: '#/components/schemas/core.ClusterStat'
    core.ClusterStat:
      type: object
      properties:
        anomaly:
          description: 'DEPRECATED

            AnomalyScore is the cluster''s anomaly score'
          type: number
        count:
          description: Count of cluster in the window
          type: integer
        delta:
          description: Delta is the percentage increase of this cluster's count compared to previous window.
          type: number
        offset_counts:
          description: 'DEPRECATED

            OffsetCounts is counts of cluster in previous offset windows.'
          type: array
          items:
            type: integer
        offset_deltas:
          description: 'DEPRECATED

            OffsetDeltas is the percentage increase of this cluster''s count compared to previous windows.'
          type: array
          items:
            type: number
        offset_proportions:
          description: 'DEPRECATED

            OffsetProportions is proportions of this cluster''s count within all clusters counts in previous windows.'
          type: array
          items:
            type: number
        past_count:
          description: 'DEPRECATED

            PastCount is count of cluster in previous window.'
          type: integer
        past_proportion:
          description: 'DEPRECATED

            PastProportion is proportion of this cluster''s count within all clusters counts in previous window.'
          type: number
        pattern:
          description: Pattern of the cluster
          type: string
        proportion:
          description: Proportion of this cluster to rest of the cluster. Rest of the cluster can be scoped to tag or source.
          type: number
        sentiment:
          description: Sentiment analysis results
          type: number
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      name: X-ED-API-Token
      in: header