> ## Documentation Index
> Fetch the complete documentation index at: https://private-7c7dfe99-fix-nav-issues.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Dashboard

> Retrieves a specific dashboard by ID



## OpenAPI

````yaml /_specs/hyperdx-openapi.json get /api/v2/dashboards/{id}
openapi: 3.0.0
info:
  title: HyperDX External API
  description: API for managing HyperDX alerts and dashboards
  version: 2.0.0
servers:
  - url: https://api.hyperdx.io
    description: Production API server
  - url: /
    description: Current server
security:
  - BearerAuth: []
tags:
  - name: Dashboards
    description: Endpoints for managing dashboards and their visualizations
  - name: Alerts
    description: Endpoints for managing monitoring alerts
paths:
  /api/v2/dashboards/{id}:
    get:
      tags:
        - Dashboards
      summary: Get Dashboard
      description: Retrieves a specific dashboard by ID
      operationId: getDashboard
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
          description: Dashboard ID
          example: 65f5e4a3b9e77c001a567890
      responses:
        '200':
          description: Successfully retrieved dashboard
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DashboardResponse'
              examples:
                dashboard:
                  summary: Single dashboard response
                  value:
                    data:
                      id: 65f5e4a3b9e77c001a567890
                      name: Infrastructure Monitoring
                      tiles:
                        - id: 65f5e4a3b9e77c001a901234
                          name: Server CPU
                          x: 0
                          'y': 0
                          w: 6
                          h: 3
                          asRatio: false
                          series:
                            - type: time
                              dataSource: metrics
                              aggFn: avg
                              field: cpu.usage
                              where: host:server-01
                              groupBy: []
                        - id: 65f5e4a3b9e77c001a901235
                          name: Memory Usage
                          x: 6
                          'y': 0
                          w: 6
                          h: 3
                          asRatio: false
                          series:
                            - type: time
                              dataSource: metrics
                              aggFn: avg
                              field: memory.usage
                              where: host:server-01
                              groupBy: []
                      tags:
                        - infrastructure
                        - monitoring
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              example:
                message: Unauthorized access. API key is missing or invalid.
        '404':
          description: Dashboard not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              example:
                message: Dashboard not found
components:
  schemas:
    DashboardResponse:
      type: object
      properties:
        data:
          $ref: '#/components/schemas/Dashboard'
    Error:
      type: object
      properties:
        message:
          type: string
    Dashboard:
      type: object
      properties:
        id:
          type: string
          example: 65f5e4a3b9e77c001a567890
        name:
          type: string
          example: Service Overview
        tiles:
          type: array
          items:
            $ref: '#/components/schemas/Tile'
        tags:
          type: array
          items:
            type: string
          example:
            - production
            - monitoring
    Tile:
      type: object
      properties:
        id:
          type: string
          example: 65f5e4a3b9e77c001a901234
        name:
          type: string
          example: Error Rate
        x:
          type: integer
          example: 0
        'y':
          type: integer
          example: 0
        w:
          type: integer
          example: 6
        h:
          type: integer
          example: 3
        asRatio:
          type: boolean
          example: false
        series:
          type: array
          items:
            $ref: '#/components/schemas/ChartSeries'
    ChartSeries:
      type: object
      required:
        - sourceId
        - aggFn
        - where
        - groupBy
      properties:
        sourceId:
          type: string
          description: ID of the data source for this series
          example: 65f5e4a3b9e77c001a123456
        aggFn:
          type: string
          description: Aggregation function to use on the data
          enum:
            - avg
            - count
            - count_distinct
            - last_value
            - max
            - min
            - quantile
            - sum
          example: count
        field:
          type: string
          description: Field to aggregate
          example: duration
        where:
          type: string
          description: Filter condition in Lucene query syntax
          example: level:error
        whereLanguage:
          type: string
          description: Query language used in the where clause
          enum:
            - lucene
            - sql
          example: lucene
        groupBy:
          type: array
          description: Fields to group the results by
          items:
            type: string
          example:
            - service
            - host
        metricName:
          type: string
          description: Name of the metric (for metric data sources)
          example: http_requests_total
        metricDataType:
          type: string
          description: Type of metric data
          enum:
            - sum
            - gauge
            - histogram
          example: gauge
        type:
          type: string
          enum:
            - time
            - table
            - number
            - histogram
            - search
            - markdown
          example: time
        dataSource:
          type: string
          enum:
            - events
            - metrics
          example: events
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key

````