Get the top 25 browser widths of the last 7 days.
GET /domains/:domainId/sizes?type=browser_width
| Name | Example |
|---|---|
| Authorization | Authorization: Bearer :tokenId |
Status: 200 OK
{
"type": "sizes",
"data": [
{
"type": "size",
"data": {
"id": "1920",
"count": 1
}
}
]
}Get the top 25 browser heights of the last 7 days.
GET /domains/:domainId/sizes?type=browser_height
| Name | Example |
|---|---|
| Authorization | Authorization: Bearer :tokenId |
Status: 200 OK
{
"type": "sizes",
"data": [
{
"type": "size",
"data": {
"id": "1080",
"count": 1
}
}
]
}Get the top 25 screen widths of the last 7 days.
GET /domains/:domainId/sizes?type=screen_width
| Name | Example |
|---|---|
| Authorization | Authorization: Bearer :tokenId |
Status: 200 OK
{
"type": "sizes",
"data": [
{
"type": "size",
"data": {
"id": "1920",
"count": 1
}
}
]
}Get the top 25 screen heights of the last 7 days.
GET /domains/:domainId/sizes?type=height
| Name | Example |
|---|---|
| Authorization | Authorization: Bearer :tokenId |
Status: 200 OK
{
"type": "sizes",
"data": [
{
"type": "size",
"data": {
"id": "1080",
"count": 1
}
}
]
}