Get the top 30 referrers.
GET /domains/:domainId/referrers?sorting=top
GET /domains/:domainId/referrers?sorting=top&range=daily
GET /domains/:domainId/referrers?sorting=top&range=weekly
GET /domains/:domainId/referrers?sorting=top&range=monthly
GET /domains/:domainId/referrers?sorting=top&range=allTime
Name | Example |
---|---|
Authorization | Authorization: Bearer :tokenId |
Status: 200 OK
{
"type": "referrers",
"data": [
{
"type": "referrer",
"data": {
"id": "https://www.example.com/",
"count": 1
}
}
]
}
Get the 30 most recent referrers who have linked to your site for the first time.
GET /domains/:domainId/referrers?sorting=new
Name | Example |
---|---|
Authorization | Authorization: Bearer :tokenId |
Status: 200 OK
{
"type": "referrers",
"data": [
{
"type": "referrer",
"data": {
"id": "https://www.example.com/",
"count": 1,
"created": "2019-09-19T15:54:00.020Z"
}
}
]
}
Get the 30 most recent referrers.
GET /domains/:domainId/referrers?sorting=recent
Name | Example |
---|---|
Authorization | Authorization: Bearer :tokenId |
Status: 200 OK
{
"type": "referrers",
"data": [
{
"type": "referrer",
"data": {
"id": "https://www.example.com/",
"created": "2019-09-19T15:54:00.020Z"
}
}
]
}