BurstIQ Metrics APIs API

Set of operations metrics in a secure data zone

Operations 1

GET /api/metrics/sdz #

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/burstiq-metrics-apis-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

burstiq-metrics-apis-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: LifeGraph APIs BlastAI Metrics APIs API
  description: LifeGraph API descriptions
  license:
    name: BurstIQ, Inc.
    url: https://www.burstiq.com
  version: 2.42.0
servers:
- url: https://api.burstiq.com
  description: Generated server url
tags:
- name: Metrics APIs
  description: Set of operations metrics in a secure data zone
paths:
  /api/metrics/sdz:
    get:
      tags:
      - Metrics APIs
      description: <b>Allowed user roles:</b><br/><ul><li>sdzAdmin</li><li>sdzReadOnly</li><li>sdzUser</li></ul><br/><br/>full set of sdz metrics
      operationId: getSDZMetrics
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/SDZMetrics'
components:
  schemas:
    SDZMetrics:
      type: object
      properties:
        customer:
          type: string
          minLength: 1
        sdz:
          type: string
          minLength: 1
        realm:
          type: string
          enum:
          - PROD
          - UAT
          - STAGE
          - DEV
          - TRIAL
        enabled:
          type: boolean
        lastUpdated:
          type: string
          format: date-time
        totalNodes:
          type: integer
          format: int64
        totalEdges:
          type: integer
          format: int64
        totalBlobs:
          type: integer
          format: int64
        totalBlobsGB:
          type: number
        chainMetrics:
          type: object
          additionalProperties:
            $ref: '#/components/schemas/ChainMetrics'
          minProperties: 1
      required:
      - chainMetrics
      - customer
      - enabled
      - lastUpdated
      - realm
      - sdz
      - totalBlobs
      - totalBlobsGB
      - totalEdges
      - totalNodes
    ChainMetrics:
      type: object
      properties:
        assets:
          type: integer
          format: int64
        smartContracts:
          type: integer
          format: int64
        consentContracts:
          type: integer
          format: int64
        blobs:
          type: integer
          format: int64
        blobsGB:
          type: number
        assetsHistory:
          type: integer
          format: int64
        smartContractsHistory:
          type: integer
          format: int64
        consentContractsHistory:
          type: integer
          format: int64
        smartContractsReceipts:
          type: integer
          format: int64
        consentContractsReceipts:
          type: integer
          format: int64
        blobsGBFromBytes:
          type: integer
          format: int64
          writeOnly: true
      required:
      - assets
      - assetsHistory
      - blobs
      - blobsGB
      - consentContracts
      - consentContractsHistory
      - consentContractsReceipts
      - smartContracts
      - smartContractsHistory
      - smartContractsReceipts