AWS (Amazon Web Service) provides an API for submitting HTTP requests to Alexa.
This API is called Alexa Web Information Service.
I submit an HTTP request with &Action=UrlInfo
and &ResponseGroup=UsageStats
.
I then receive an XML within the HTTP response.
Here is the part in the XML which is relevant to my question:
<aws:PageViews>
<aws:PerMillion>
<aws:Value>12,345</aws:Value>
<aws:Delta>+0.67%</aws:Delta>
</aws:PerMillion>
<aws:Rank>
<aws:Value>1</aws:Value>
<aws:Delta>0</aws:Delta>
</aws:Rank>
<aws:PerUser>
<aws:Value>12.34</aws:Value>
<aws:Delta>-0.56%</aws:Delta>
</aws:PerUser>
</aws:PageViews>
The documentation for the API is at http://docs.aws.amazon.com/AlexaWebInfoService/latest/.
A description for the specific parameters that I am using in my HTTP request, can be found under API Reference / Actions / UrlInfo, but I have not been able to find any details on any of the above tags.
Does anyone happen to know the exact meaning of each of these tags? :
PerMillion / Value
PerMillion / Delta
Rank / Value
Rank / Delta
PerUser / Value
PerUser / Delta
Thanks
Regarding aws:PerMillion
and aws:PerUser