Edge Delta Get Metrics API

The Get Metrics API from Edge Delta — 1 operation(s) for get metrics.

Operations 1

GET /v1/orgs/{org_id}/metrics_v2/graph

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-get-metrics-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-get-metrics-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 Get Metrics API
  contact:
    name: API Support
    email: support@edgedelta.com
  version: '1.0'
servers:
- url: https://api.edgedelta.com
tags:
- name: Get Metrics
paths:
  /v1/orgs/{org_id}/metrics_v2/graph:
    get:
      security:
      - ApiKeyAuth: []
      description: Returns metrics with common time series response for the given query.
      tags:
      - Get Metrics
      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: 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: If order_by is specified then metrics are sorted by given field. If no sort is given default sort will be asc
        name: order
        in: query
        schema:
          type: string
      - description: 'Default is no sorting. If sort is specified then metrics are sorted by their value. Possible values: asc, desc'
        name: sort
        in: query
        schema:
          type: string
      - description: Limits the number of logs in the response. Default has no limit.
        name: limit
        in: query
        schema:
          type: integer
      - description: Time range adjustment it can be noop, inclusive or exclusive
        name: time_range_adjustment
        in: query
        schema:
          type: string
      - description: The boolean to decide whether to save the query in history
        name: save
        in: query
        schema:
          type: string
      responses:
        '200':
          description: Common time series response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/core.CommonTimeseriesResponse'
components:
  schemas:
    core.CommonTimeseriesResponse:
      type: object
      properties:
        from:
          type: string
        keys:
          type: array
          items:
            type: string
        records:
          type: array
          items:
            $ref: '#/components/schemas/core.CommonTimeseriesRecord'
        to:
          type: string
        window:
          type: string
    core.CommonTimeseriesRecord:
      type: object
      properties:
        aggregate:
          $ref: '#/components/schemas/core.CommonTimeseriesAggregate'
        timeseries:
          type: array
          items: {}
        values:
          type: array
          items:
            type: string
    core.CommonTimeseriesAggregate:
      type: object
      properties:
        value:
          type: number
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      name: X-ED-API-Token
      in: header