Skip to content

Latest commit

 

History

History
154 lines (117 loc) · 1.83 KB

File metadata and controls

154 lines (117 loc) · 1.83 KB

Sizes

Get browser widths

Get the top 25 browser widths of the last 7 days.

Request

GET /domains/:domainId/sizes?type=browser_width

Headers

Name Example
Authorization Authorization: Bearer :tokenId

Response

Status: 200 OK
{
	"type": "sizes",
	"data": [
		{
			"type": "size",
			"data": {
				"id": "1920",
				"count": 1
			}
		}
	]
}

Get browser heights

Get the top 25 browser heights of the last 7 days.

Request

GET /domains/:domainId/sizes?type=browser_height

Headers

Name Example
Authorization Authorization: Bearer :tokenId

Response

Status: 200 OK
{
	"type": "sizes",
	"data": [
		{
			"type": "size",
			"data": {
				"id": "1080",
				"count": 1
			}
		}
	]
}

Get screen widths

Get the top 25 screen widths of the last 7 days.

Request

GET /domains/:domainId/sizes?type=screen_width

Headers

Name Example
Authorization Authorization: Bearer :tokenId

Response

Status: 200 OK
{
	"type": "sizes",
	"data": [
		{
			"type": "size",
			"data": {
				"id": "1920",
				"count": 1
			}
		}
	]
}

Get screen heights

Get the top 25 screen heights of the last 7 days.

Request

GET /domains/:domainId/sizes?type=height

Headers

Name Example
Authorization Authorization: Bearer :tokenId

Response

Status: 200 OK
{
	"type": "sizes",
	"data": [
		{
			"type": "size",
			"data": {
				"id": "1080",
				"count": 1
			}
		}
	]
}