> ## 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 Event Graph



## OpenAPI

````yaml /api-reference/openapi.json get /apps/{app_name}/users/{user_id}/sessions/{session_id}/events/{event_id}/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:
  /apps/{app_name}/users/{user_id}/sessions/{session_id}/events/{event_id}/graph:
    get:
      tags:
        - Debug
      summary: Get Event Graph
      operationId: >-
        get_event_graph_apps__app_name__users__user_id__sessions__session_id__events__event_id__graph_get
      parameters:
        - name: app_name
          in: path
          required: true
          schema:
            type: string
            title: App Name
        - name: user_id
          in: path
          required: true
          schema:
            type: string
            title: User Id
        - name: session_id
          in: path
          required: true
          schema:
            type: string
            title: Session Id
        - name: event_id
          in: path
          required: true
          schema:
            type: string
            title: Event Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    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 App Graph Dot](/api-reference/debug/get-app-graph-dot.md)
- [Get Excel Preview](/api-reference/onedrive-browser/get-excel-preview.md)
- [Get Session](/api-reference/get-session.md)
- [Get Eval Result](/api-reference/evaluation/get-eval-result.md)
- [Get Eval Result Legacy](/api-reference/evaluation/get-eval-result-legacy.md)
