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

# List All Sessions

> List all ADK sessions across all agents for the current user.



## OpenAPI

````yaml /api-reference/openapi.json get /api/adk/sessions/list
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:
  /api/adk/sessions/list:
    get:
      tags:
        - adk
      summary: List All Sessions
      description: List all ADK sessions across all agents for the current user.
      operationId: list_all_sessions_api_adk_sessions_list_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
      security:
        - HTTPBearer: []
components:
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````

## Related topics

- [List Sessions](/api-reference/list-sessions.md)
- [List Artifacts](/api-reference/artifacts/list-artifacts.md)
- [Sessions and runs](/concepts/sessions-and-runs.md)
- [List Agents](/api-reference/agents/list-agents.md)
- [List Files](/api-reference/files/list-files.md)
