> ## 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.

# List Dashboards

> Retrieves a list of all dashboards for the authenticated team



## OpenAPI

````yaml /_specs/hyperdx-openapi.json get /api/v2/dashboards
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:
    get:
      tags:
        - Dashboards
      summary: List Dashboards
      description: Retrieves a list of all dashboards for the authenticated team
      operationId: listDashboards
      responses:
        '200':
          description: Successfully retrieved dashboards
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DashboardsListResponse'
        '401':
          description: Unauthorized
components:
  schemas:
    DashboardsListResponse:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/Dashboard'
    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

````