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

# List All Active Sessions

> Retrieve a paginated list of all active sessions associated with your Geonode account.




## OpenAPI

````yaml api-reference/ref/session-list-active.yaml get /sessions/proxies
openapi: 3.0.3
info:
  title: Geonode Proxy Active Sessions API
  description: API for retrieving a list of all active sessions in Geonode's proxy service.
  version: 1.0.0
servers:
  - url: https://monitor.geonode.com
    description: Geonode Monitoring Service
security: []
paths:
  /sessions/proxies:
    get:
      summary: List All Active Sessions
      description: >
        Retrieve a paginated list of all active sessions associated with your
        Geonode account.
      parameters:
        - name: page
          in: query
          required: false
          description: Page number for pagination (default is 1).
          schema:
            type: integer
            default: 1
        - name: pageSize
          in: query
          required: false
          description: Number of sessions per page (maximum is 250; default is 250).
          schema:
            type: integer
            default: 250
      responses:
        '200':
          description: A list of active sessions retrieved successfully.
          content:
            application/json:
              schema:
                type: object
                properties:
                  sessions:
                    type: array
                    description: A list of currently active proxy sessions.
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          description: A unique identifier for the session.
                          example: a7f7c7a3-aaaa-4908-b7bd-71091daadaa6
                        userSessionId:
                          type: string
                          description: The user-defined session identifier.
                          example: vzzzzd
                        userId:
                          type: string
                          description: The Geonode user ID associated with the session.
                          example: geonode_userid
                        port:
                          type: string
                          description: The port number assigned to the session.
                          example: '10000'
                        domain:
                          type: string
                          description: The target domain being accessed in the session.
                          example: ip-api.com
                        country:
                          type: string
                          description: >-
                            The country code representing the location of the
                            session.
                          example: dz
                        rotatingIntervalInSeconds:
                          type: number
                          description: >-
                            The interval (in seconds) at which the proxy session
                            rotates.
                          example: 179.32
                        durationInSeconds:
                          type: number
                          description: >-
                            The total duration (in seconds) the session has been
                            active.
                          example: 2.785
                  count:
                    type: integer
                    description: >-
                      The number of active sessions returned in the current
                      page.
                    example: 1
                  total:
                    type: integer
                    description: The total number of active sessions across all pages.
                    example: 1
                  page:
                    type: integer
                    description: The current page number.
                    example: 1
                  pageSize:
                    type: integer
                    description: The number of sessions per page.
                    example: 250
        '400':
          description: Bad request due to invalid parameters.
        '407':
          description: Unauthorized access due to invalid credentials.
        '500':
          description: Internal server error.
      security:
        - basicAuth: []
components:
  securitySchemes:
    basicAuth:
      type: http
      scheme: basic

````