- Top browsers without version
- Top browsers with version
- Recent browsers without version
- Recent browsers with version
Get the top 30 browsers without the version.
GET /domains/:domainId/browsers?sorting=top&type=noVersion
GET /domains/:domainId/browsers?sorting=top&type=noVersion&range=daily
GET /domains/:domainId/browsers?sorting=top&type=noVersion&range=weekly
GET /domains/:domainId/browsers?sorting=top&type=noVersion&range=monthly
GET /domains/:domainId/browsers?sorting=top&type=noVersion&range=allTime
Name | Example |
---|---|
Authorization | Authorization: Bearer :tokenId |
Status: 200 OK
{
"type": "browsers",
"data": [
{
"type": "browser",
"data": {
"id": "Safari",
"count": 1
}
}
]
}
Get the top 30 browsers with the version.
GET /domains/:domainId/browsers?sorting=top&type=withVersion
GET /domains/:domainId/browsers?sorting=top&type=withVersion&range=daily
GET /domains/:domainId/browsers?sorting=top&type=withVersion&range=weekly
GET /domains/:domainId/browsers?sorting=top&type=withVersion&range=monthly
GET /domains/:domainId/browsers?sorting=top&type=withVersion&range=allTime
Name | Example |
---|---|
Authorization | Authorization: Bearer :tokenId |
Status: 200 OK
{
"type": "browsers",
"data": [
{
"type": "browser",
"data": {
"id": {
"browserName": "Safari",
"browserVersion": "5.1"
},
"count": 1
}
}
]
}
Get the 30 most recent browsers without the version.
GET /domains/:domainId/browsers?sorting=recent&type=noVersion
Name | Example |
---|---|
Authorization | Authorization: Bearer :tokenId |
Status: 200 OK
{
"type": "browsers",
"data": [
{
"type": "browser",
"data": {
"id": "Safari",
"created": "2019-09-19T15:54:00.020Z"
}
}
]
}
Get the 30 most recent browsers with the version.
GET /domains/:domainId/browsers?sorting=recent&type=withVersion
Name | Example |
---|---|
Authorization | Authorization: Bearer :tokenId |
Status: 200 OK
{
"type": "browsers",
"data": [
{
"type": "browser",
"data": {
"id": {
"browserName": "Safari",
"browserVersion": "5.1"
},
"created": "2019-09-19T15:54:00.020Z"
}
}
]
}