Bigeye Dashboard Service API

The DashboardService API from Bigeye — 2 operation(s) for dashboardservice.

Operations 2

POST /api/v1/dashboard/refresh-info Gets last updated date for dashboard data series #
POST /api/v1/dashboard/calculate-data-points-request Get dashboard data series for requested types #

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/bigeye-dashboardservice-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

bigeye-dashboardservice-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Metadata Dashboard Service API
  version: version not set
servers:
- url: https://app.bigeye.com
security:
- basicAuth: []
- Personal_API_Key: []
tags:
- name: DashboardService
paths:
  /api/v1/dashboard/refresh-info:
    post:
      operationId: DashboardService_GetDashboardDataRefreshInfo
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/generatedDashboardRefreshInfoRequest'
        required: true
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/generatedDashboardRefreshInfoResponse'
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/runtimeError'
      summary: Gets last updated date for dashboard data series
      tags:
      - DashboardService
  /api/v1/dashboard/calculate-data-points-request:
    post:
      operationId: DashboardService_GetDashboardDataSeries
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/generatedDashboardDataPointsRequest'
        required: true
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/generatedDashboardDataPointsResponse'
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/runtimeError'
      summary: Get dashboard data series for requested types
      tags:
      - DashboardService
components:
  schemas:
    generatedDashboardDataPointSeries:
      properties:
        companyId:
          format: int32
          type: integer
        dataPointType:
          $ref: '#/components/schemas/generatedDashboardDataPointType'
        dataPoints:
          items:
            $ref: '#/components/schemas/generatedDashboardDataPoint'
          type: array
        endingTimestamp:
          format: int64
          type: string
        key:
          type: string
        keyInfo:
          type: string
        sourceIds:
          items:
            format: int32
            type: integer
          type: array
        startingTimestamp:
          format: int64
          type: string
        workspaceIds:
          items:
            format: int32
            type: integer
          type: array
      type: object
    generatedDashboardDataPoint:
      properties:
        collectedTimestamp:
          format: int64
          type: string
        companyId:
          format: int32
          type: integer
        dataPointType:
          $ref: '#/components/schemas/generatedDashboardDataPointType'
        dataTimestamp:
          format: int64
          type: string
        key:
          type: string
        sourceIds:
          items:
            format: int32
            type: integer
          type: array
        value:
          format: double
          type: number
        workspaceIds:
          items:
            format: int32
            type: integer
          type: array
      type: object
    generatedDashboardDataPointsRequest:
      properties:
        aggregationType:
          $ref: '#/components/schemas/generatedDashboardDateAggregationType'
        companyId:
          format: int32
          type: integer
        dataPointTypes:
          items:
            $ref: '#/components/schemas/generatedDashboardDataPointType'
          type: array
        endingTimestamp:
          format: int64
          type: string
        sourceIds:
          items:
            format: int32
            type: integer
          type: array
        startingTimestamp:
          format: int64
          type: string
        workspaceIds:
          items:
            format: int32
            type: integer
          type: array
      type: object
    generatedDashboardDataPointsResponse:
      properties:
        companyId:
          format: int32
          type: integer
        dataPointSeries:
          items:
            $ref: '#/components/schemas/generatedDashboardDataPointSeries'
          type: array
        dataPointTypes:
          items:
            $ref: '#/components/schemas/generatedDashboardDataPointType'
          type: array
        endingTimestamp:
          format: int64
          type: string
        sourceIds:
          items:
            format: int32
            type: integer
          type: array
        startingTimestamp:
          format: int64
          type: string
        workspaceIds:
          items:
            format: int32
            type: integer
          type: array
      type: object
    generatedDashboardRefreshInfoRequest:
      properties:
        companyId:
          format: int32
          type: integer
        endingTimestamp:
          format: int64
          type: string
        sourceIds:
          items:
            format: int32
            type: integer
          type: array
        startingTimestamp:
          format: int64
          type: string
        workspaceIds:
          items:
            format: int32
            type: integer
          type: array
      type: object
    generatedDashboardRefreshInfoResponse:
      properties:
        lastUpdatedAt:
          format: int64
          type: string
        nextUpdatedAt:
          format: int64
          type: string
      type: object
    generatedDashboardDataPointType:
      default: DASHBOARD_DATA_POINT_TYPE_UNSPECIFIED
      enum:
      - DASHBOARD_DATA_POINT_TYPE_UNSPECIFIED
      - DASHBOARD_DATA_POINT_TYPE_NUMBER_OPEN_ISSUES
      - DASHBOARD_DATA_POINT_TYPE_AVERAGE_ISSUE_TIME_TO_ACTION
      - DASHBOARD_DATA_POINT_TYPE_AVERAGE_ISSUE_TIME_TO_CLOSE
      - DASHBOARD_DATA_POINT_TYPE_NUMBER_OPEN_ISSUES_BY_COLLECTION
      - DASHBOARD_DATA_POINT_TYPE_NUMBER_METRICS_BY_COLLECTION
      - DASHBOARD_DATA_POINT_TYPE_NUMBER_ISSUES_CLOSED_BY_USER
      - DASHBOARD_DATA_POINT_TYPE_NUMBER_BILLABLE_TABLES
      - DASHBOARD_DATA_POINT_TYPE_NUMBER_ISSUES_CLOSED
      - DASHBOARD_DATA_POINT_TYPE_TOTAL_HOURS_TO_CLOSE
      - DASHBOARD_DATA_POINT_TYPE_NUMBER_METRICS_WITH_ISSUE_BY_CATEGORY
      - DASHBOARD_DATA_POINT_TYPE_NUMBER_METRICS_BY_CATEGORY
      - DASHBOARD_DATA_POINT_TYPE_PCT_METRICS_WO_ISSUE_BY_CATEGORY
      - DASHBOARD_DATA_POINT_TYPE_TOTAL_TABLES
      - DASHBOARD_DATA_POINT_TYPE_TOTAL_TABLES_WITH_METRICS
      - DASHBOARD_DATA_POINT_TYPE_PCT_TABLES_WITH_METRICS
      - DASHBOARD_DATA_POINT_TYPE_TOTAL_TABLES_WITH_METRICS_BY_CATEGORY
      - DASHBOARD_DATA_POINT_TYPE_PCT_TABLES_WITH_METRICS_BY_CATEGORY
      - DASHBOARD_DATA_POINT_TYPE_TOTAL_TABLES_WITH_ISSUE_BY_CATEGORY
      - DASHBOARD_DATA_POINT_TYPE_NUMBER_ISSUES_INTERACTED
      - DASHBOARD_DATA_POINT_TYPE_NUMBER_ISSUES_OPENED
      - DASHBOARD_DATA_POINT_TYPE_PCT_ISSUES_INTERACTED
      - DASHBOARD_DATA_POINT_TYPE_PCT_TABLES_WITHOUT_ISSUE_BY_CATEGORY
      - DASHBOARD_DATA_POINT_TYPE_TOTAL_TABLES_WITHOUT_ISSUE_BY_CATEGORY
      - DASHBOARD_DATA_POINT_TYPE_PCT_METRICS_WO_ISSUE_BY_DIMENSION
      - DASHBOARD_DATA_POINT_TYPE_NUMBER_METRICS_WITH_ISSUE_BY_DIMENSION
      - DASHBOARD_DATA_POINT_TYPE_NUMBER_METRICS_BY_DIMENSION
      - DASHBOARD_DATA_POINT_TYPE_PCT_TABLES_WITH_METRICS_BY_DIMENSION
      - DASHBOARD_DATA_POINT_TYPE_TOTAL_TABLES_WITH_METRICS_BY_DIMENSION
      - DASHBOARD_DATA_POINT_TYPE_PCT_TABLES_WO_ISSUE_BY_DIMENSION
      - DASHBOARD_DATA_POINT_TYPE_TOTAL_TABLES_WITH_ISSUE_BY_DIMENSION
      - DASHBOARD_DATA_POINT_TYPE_TOTAL_TABLES_WITHOUT_ISSUE_BY_DIMENSION
      - DASHBOARD_DATA_POINT_TYPE_NUMBER_BILLABLE_UNIQUE_TABLE_NAMES
      type: string
    runtimeError:
      properties:
        code:
          format: int32
          type: integer
        details:
          items:
            $ref: '#/components/schemas/protobufAny'
          type: array
        error:
          type: string
        message:
          type: string
      type: object
    generatedDashboardDateAggregationType:
      default: DASHBOARD_DATE_AGGREGATION_TYPE_DAY
      enum:
      - DASHBOARD_DATE_AGGREGATION_TYPE_DAY
      - DASHBOARD_DATE_AGGREGATION_TYPE_WEEK
      - DASHBOARD_DATE_AGGREGATION_TYPE_MONTH
      type: string
    protobufAny:
      properties:
        typeUrl:
          type: string
        value:
          format: byte
          type: string
      type: object
  securitySchemes:
    basicAuth:
      type: http
      scheme: basic
    Agent_API_Key:
      description: Add 'apikey ' to the beginning of your api key
      in: header
      name: Authorization
      type: apiKey
    Personal_API_Key:
      description: Add 'apikey ' to the beginning of your api key
      in: header
      name: Authorization
      type: apiKey