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

# List All Sessions Status

> Retrieves status information for all browser sessions associated with the API key.



## OpenAPI

````yaml /openapi.yaml get /v1/sessions/all/status
openapi: 3.1.0
info:
  title: AnchorBrowser API
  version: 1.0.0
  description: APIs to manage all browser-related actions and configuration.
servers:
  - url: https://api.anchorbrowser.io
    description: API server
security: []
paths:
  /v1/sessions/all/status:
    get:
      tags:
        - Browser Sessions
      summary: List All Sessions Status
      description: >-
        Retrieves status information for all browser sessions associated with
        the API key.
      parameters:
        - in: query
          name: tags
          required: false
          description: >-
            Comma-separated list of session tags to filter by. Sessions must
            contain all provided tags.
          schema:
            type: string
          example: production,scraping
        - in: query
          name: domains
          required: false
          description: >-
            Comma-separated list of domains to filter by. Sessions must contain
            all provided domains.
          schema:
            type: string
          example: example.com,anchorbrowser.io
        - in: query
          name: created_from
          required: false
          description: Include sessions created at or after this timestamp (ISO 8601).
          schema:
            type: string
            format: date-time
        - in: query
          name: created_to
          required: false
          description: Include sessions created at or before this timestamp (ISO 8601).
          schema:
            type: string
            format: date-time
        - in: query
          name: batch_id
          required: false
          description: Filter sessions by batch identifier.
          schema:
            type: string
        - in: query
          name: task_initiated
          required: false
          description: Filter by whether the session was initiated by a task.
          schema:
            type: boolean
        - in: query
          name: playground
          required: false
          description: Filter by whether the session is a playground session.
          schema:
            type: boolean
        - in: query
          name: proxy
          required: false
          description: Filter by whether proxy was active for the session.
          schema:
            type: boolean
        - in: query
          name: extra_stealth
          required: false
          description: Filter by whether extra stealth mode was active for the session.
          schema:
            type: boolean
        - in: query
          name: profile_name
          required: false
          description: >-
            Filter sessions by browser profile name (case-insensitive partial
            match).
          schema:
            type: string
          example: Default profile
      responses:
        '200':
          description: Successfully retrieved status for all browser sessions
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SessionListResponse'
        '401':
          description: Invalid API Key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      security:
        - api_key_header: []
components:
  schemas:
    SessionListResponse:
      type: object
      properties:
        data:
          type: object
          properties:
            count:
              type: integer
              description: Total number of browser sessions
            items:
              type: array
              items:
                $ref: '#/components/schemas/SessionStatus'
    ErrorResponse:
      type: object
      properties:
        error:
          type: object
          properties:
            code:
              type: integer
            message:
              type: string
    SessionStatus:
      type: object
      properties:
        session_id:
          type: string
          description: Unique identifier for the browser session
        status:
          type: string
          description: Current status of the browser session
        tags:
          type: array
          items:
            type: string
          description: Custom labels assigned to this browser session
        created_at:
          type: string
          format: date-time
          description: Timestamp when the browser session was created
      required:
        - session_id
        - status
        - created_at
  securitySchemes:
    api_key_header:
      type: apiKey
      in: header
      name: anchor-api-key
      description: API key passed in the header

````