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

# Get App Graph Dot

> Returns the base agent graph in DOT format without any highlights.

This endpoint allows the frontend to fetch the graph structure once
and compute highlights client-side for better performance.

Args:
  app_name: The name of the agent/app
  dark_mode: Whether to use dark theme background color



## OpenAPI

````yaml /api-reference/openapi.json get /dev/{app_name}/graph
openapi: 3.1.0
info:
  title: apowerb API
  description: REST API of the apowerb agentic framework (open-source edition).
  version: 0.1.2
  license:
    name: MIT
    url: https://github.com/apowerb/apowerb/blob/main/LICENSE
servers:
  - url: https://api.example.com
    description: Your apowerb instance
  - url: http://localhost:8000
    description: Local stack
security: []
paths:
  /dev/{app_name}/graph:
    get:
      tags:
        - Debug
      summary: Get App Graph Dot
      description: |-
        Returns the base agent graph in DOT format without any highlights.

        This endpoint allows the frontend to fetch the graph structure once
        and compute highlights client-side for better performance.

        Args:
          app_name: The name of the agent/app
          dark_mode: Whether to use dark theme background color
      operationId: get_app_graph_dot_dev__app_name__graph_get
      parameters:
        - name: app_name
          in: path
          required: true
          schema:
            type: string
            title: App Name
        - name: dark_mode
          in: query
          required: false
          schema:
            type: boolean
            title: Dark Mode
            default: false
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                anyOf:
                  - $ref: '#/components/schemas/GetEventGraphResult'
                  - additionalProperties: true
                    type: object
                title: Response Get App Graph Dot Dev  App Name  Graph Get
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    GetEventGraphResult:
      properties:
        dotSrc:
          type: string
          title: Dotsrc
      type: object
      required:
        - dotSrc
      title: GetEventGraphResult
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````

## Related topics

- [Get Event Graph](/api-reference/debug/get-event-graph.md)
- [Get Adk App Info](/api-reference/get-adk-app-info.md)
- [List Apps](/api-reference/list-apps.md)
- [Get Excel Preview](/api-reference/onedrive-browser/get-excel-preview.md)
- [Get Webhook Log Attachment](/api-reference/webhooks/get-webhook-log-attachment.md)
