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

# List Super Agent Sessions

> Retrieves a list of super agent chat sessions for the authenticated user. Supports optional filtering by title search and pagination.



## OpenAPI

````yaml get /super-agent/sessions
openapi: 3.0.1
info:
  title: Attention Service V2
  description: Attention Service API V2
  termsOfService: https://www.attention.com/terms-of-use
  contact:
    name: Attention Team
    url: https://docs.attention.com/welcome
    email: support@attention.com
  license:
    name: Apache 2.0
    url: https://www.apache.org/licenses/LICENSE-2.0.html
  version: 1.8.0
servers:
  - url: https://api.attention.tech/v2
security:
  - APIKeyHeader: []
paths:
  /super-agent/sessions:
    get:
      tags:
        - Super Agent
      summary: List Super Agent Sessions
      description: >-
        Retrieves a list of super agent chat sessions for the authenticated
        user. Supports optional filtering by title search and pagination.
      operationId: listSuperAgentSessions
      parameters:
        - name: search
          in: query
          description: Optional search term to filter sessions by title
          schema:
            type: string
        - name: limit
          in: query
          description: 'Maximum number of sessions to return (default: 50)'
          schema:
            type: integer
      responses:
        '200':
          description: Sessions retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SuperAgentSessionsResponse'
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/SuperAgentSessionsResponse'
        '401':
          description: Valid user-level API key required
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/Error'
        default:
          description: Unexpected error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    SuperAgentSessionsResponse:
      type: object
      properties:
        sessions:
          type: array
          description: List of user's super agent sessions
          items:
            $ref: '#/components/schemas/SuperAgentSession'
      example:
        sessions:
          - id: sa-uuid-1
            session_id: session-uuid-1
            title: Q1 Revenue Analysis
            status: ACTIVE
            created_at: '2024-03-18T14:00:00Z'
            updated_at: '2024-03-18T14:30:00Z'
          - id: sa-uuid-2
            session_id: session-uuid-2
            title: Competitor Research
            status: COMPLETED
            created_at: '2024-03-17T10:00:00Z'
            updated_at: '2024-03-17T11:00:00Z'
    Error:
      type: object
      properties:
        id:
          type: string
          description: A unique identifier for the error.
        status:
          type: string
          description: >-
            The HTTP status code applicable to this problem, expressed as a
            string value.
        code:
          type: string
          description: An application-specific error code, expressed as a string value.
        title:
          type: string
          description: A short, human-readable summary of the problem.
        detail:
          type: string
          description: >-
            A human-readable explanation specific to this occurrence of the
            problem.
        source:
          type: object
          properties:
            pointer:
              type: string
            parameter:
              type: string
        meta:
          type: object
          properties: {}
      example:
        id: not_found_error
        status: '404'
        code: '404'
        title: Not Found Error
        detail: The requested resource was not found
        source:
          pointer: /data/attributes/id
    SuperAgentSession:
      type: object
      properties:
        id:
          type: string
          description: Internal unique identifier
        session_id:
          type: string
          description: Session identifier used in API calls
        title:
          type: string
          description: Session title (auto-generated from first message)
        status:
          type: string
          description: Current status of the session
          enum:
            - ACTIVE
            - COMPLETED
            - CANCELLED
            - FAILED
        created_at:
          type: string
          description: When the session was created
          format: date-time
        updated_at:
          type: string
          description: When the session was last updated
          format: date-time
      example:
        id: sa-uuid-123
        session_id: session-uuid-456
        title: Q1 Revenue Analysis
        status: ACTIVE
        created_at: '2024-03-18T14:00:00Z'
        updated_at: '2024-03-18T14:30:00Z'
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      name: Authorization
      in: header

````