> ## Documentation Index
> Fetch the complete documentation index at: https://trigger.dev/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# List dashboards

> List available built-in dashboards with their widgets. Each dashboard contains pre-built TRQL queries for common metrics like run success rates, costs, and LLM usage.



## OpenAPI

````yaml v3-openapi GET /api/v1/query/dashboards
openapi: 3.1.0
info:
  title: Trigger.dev v3 REST API
  description: >-
    The REST API lets you trigger and manage runs on Trigger.dev. You can
    trigger a run, get the status of a run, and get the results of a run. 
  version: 2024-04
  license:
    name: Apache 2.0
    url: https://www.apache.org/licenses/LICENSE-2.0.html
servers:
  - url: https://api.trigger.dev
    description: Trigger.dev API
security: []
paths:
  /api/v1/query/dashboards:
    get:
      tags:
        - query
      summary: List built-in dashboards
      description: >-
        List available built-in dashboards with their widgets. Each dashboard
        contains pre-built TRQL queries for common metrics like run success
        rates, costs, and LLM usage.
      operationId: list_dashboards_v1
      responses:
        '200':
          description: Dashboards listed successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  dashboards:
                    type: array
                    items:
                      type: object
                      properties:
                        key:
                          type: string
                          description: Dashboard identifier (e.g. "overview", "llm")
                        title:
                          type: string
                          description: Dashboard display title
                        widgets:
                          type: array
                          items:
                            type: object
                            properties:
                              id:
                                type: string
                                description: Widget identifier
                              title:
                                type: string
                                description: Widget display title
                              query:
                                type: string
                                description: The TRQL query this widget executes
                              type:
                                type: string
                                enum:
                                  - bignumber
                                  - chart
                                  - table
                                description: Widget display type
        '401':
          description: Unauthorized - API key is missing or invalid
      security:
        - secretKey: []
      x-codeSamples:
        - lang: curl
          label: cURL
          source: |-
            curl "https://api.trigger.dev/api/v1/query/dashboards" \
              -H "Authorization: Bearer tr_dev_1234"
components:
  securitySchemes:
    secretKey:
      type: http
      scheme: bearer
      description: >
        Use your project-specific Secret API key. Will start with `tr_dev_`,
        `tr_prod`, `tr_stg`, etc.


        You can find your Secret API key in the API Keys section of your
        Trigger.dev project dashboard.


        Our TypeScript SDK will default to using the value of the
        `TRIGGER_SECRET_KEY` environment variable if it is set. If you are using
        the SDK in a different environment, you can set the key using the
        `configure` function.


        ```typescript

        import { configure } from "@trigger.dev/sdk";


        configure({ accessToken: "tr_dev_1234" });

        ```

````