Visitor Source Overview

Retrieve information about the technology that visitors use.

Browser Overview

GET https://{{account_id}}.acquire.io/api/v1/analytics/chat/browser-overview

Retrieve data about visitors' browsers.

Query Parameters

Headers

{
  "data": {
    "browserOverview": {
      "data": {
        "graphRow": {
          "labels": [
            "Chrome"
          ],
          "visitorCount": [
            139
          ]
        }
      },
      "success": true,
      "output": "json"
    }
  }
}

OS Overview

GET https://{{account_id}}.acquire.io/api/v1/analytics/chat/os-overview

Retrieve data about visitors' operating systems.

Query Parameters

Headers

{
  "data": {
    "osOverview": {
      "data": {
        "graphRow": {
          "labels": [
            "Linux",
            "Mac OS",
            "Windows"
          ],
          "data": [
            136,
            2,
            1
          ]
        }
      },
      "success": true,
      "output": "json"
    }
  }
}

Device Overview

GET https://{{account_id}}.acquire.io/api/v1/analytics/chat/device-overview

Retrieve data about visitors' devices.

Query Parameters

Headers

{
  "data": {
    "deviceOverview": {
      "data": {
        "graphRow": {
          "labels": [
            "Desktop"
          ],
          "data": [
            97
          ]
        }
      },
      "success": true,
      "output": "json"
    }
  }
}

Last updated