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

Example Request:

curl \
  -X GET \
  "https://monitor.geonode.com/sessions/RESIDENTIAL-PREMIUM" \
  --user geonode_username:geonode_password \
  --data-urlencode "page=1" \
  --data-urlencode "pageSize=250"

Example Response (200 - Success):

{
  "sessions": [
    {
      "id": "a7f7c7a3-aaaa-4908-b7bd-71091daadaa6",
      "userSessionId": "vzzzzd",
      "userId": "geonode_userid",
      "port": "10000",
      "domain": "ip-api.com",
      "country": "dz",
      "rotatingIntervalInSeconds": 179.32,
      "durationInSeconds": 2.785
    }
  ],
  "count": 1,
  "total": 1,
  "page": 1,
  "pageSize": 250
}

Use your proxy username and proxy password for basic authorization.

Language
Credentials
Basic
base64
:
Click Try It! to start a request and see the response here!