Get the top 25 pages of the last 7 days.
GET /domains/:domainId/pages?sorting=top
| Name | Example |
|---|---|
| Authorization | Authorization: Bearer :tokenId |
Status: 200 OK
{
"type": "pages",
"data": [
{
"type": "page",
"data": {
"id": "https://example.com/",
"count": 1
}
}
]
}Get the 25 most recent page views of the last 7 days.
GET /domains/:domainId/pages?sorting=recent
| Name | Example |
|---|---|
| Authorization | Authorization: Bearer :tokenId |
Status: 200 OK
{
"type": "pages",
"data": [
{
"type": "page",
"data": {
"id": "https://example.com/",
"created": "2019-09-19T15:54:00.020Z"
}
}
]
}