Skip to content

Latest commit

 

History

History
78 lines (59 loc) · 966 Bytes

File metadata and controls

78 lines (59 loc) · 966 Bytes

Pages

Get top pages

Get the top 25 pages of the last 7 days.

Request

GET /domains/:domainId/pages?sorting=top

Headers

Name Example
Authorization Authorization: Bearer :tokenId

Response

Status: 200 OK
{
	"type": "pages",
	"data": [
		{
			"type": "page",
			"data": {
				"id": "https://example.com/",
				"count": 1
			}
		}
	]
}

Get recent pages

Get the 25 most recent page views of the last 7 days.

Request

GET /domains/:domainId/pages?sorting=recent

Headers

Name Example
Authorization Authorization: Bearer :tokenId

Response

Status: 200 OK
{
	"type": "pages",
	"data": [
		{
			"type": "page",
			"data": {
				"id": "https://example.com/",
				"created": "2019-09-19T15:54:00.020Z"
			}
		}
	]
}