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

# List dashboard tabs for an agent (CLI)

> Returns all tabs configured for the given agent, ordered by sortOrder ASC.



## OpenAPI

````yaml /api-reference/openapi.json get /api/v1/runtime/observability/dashboard-tabs
openapi: 3.0.0
info:
  title: Runflow Runtime API
  description: >-
    Programmatic surface for the Runflow platform — used by the SDK, the CLI,
    the execution engine, and any server-to-server caller. Authenticate with an
    `x-api-key` header (or `Authorization: Bearer ...`).
  version: 1.0.0
  contact: {}
servers:
  - url: https://api.runflow.ai
    description: Production
  - url: http://localhost:3000
    description: Local development
security: []
tags: []
paths:
  /api/v1/runtime/observability/dashboard-tabs:
    get:
      tags:
        - Runtime API - Dashboard Tabs
      summary: List dashboard tabs for an agent (CLI)
      description: >-
        Returns all tabs configured for the given agent, ordered by sortOrder
        ASC.
      operationId: RuntimeDashboardTabsController_getDashboardTabs
      parameters:
        - name: agentId
          required: false
          in: query
          description: Agent UUID. Defaults to the API-key agent.
          schema:
            type: string
      responses:
        '200':
          description: List of dashboard tabs.
      security:
        - bearer: []
components: {}

````