Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Amazon Web Service for Alexa

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

like image 377
barak manos Avatar asked Jan 21 '14 16:01

barak manos


People also ask

Does Alexa use Amazon Web Services?

The Alexa Voice Service (AVS) Integration is a new feature of AWS IoT Core that enables device makers to make any connected device an Alexa Built-in device.

What AWS services does Alexa use?

Note: Submit your skill and see it come to life. You can create, build, and manage Alexa skills with cloud-based tools from Amazon Web Services (AWS) including AWS CodeStar, AWS CodePipeline, and AWS CloudFormation.

What is Alexa Web information Service?

The Alexa Web Information Service (AWIS) offers a platform for creating innovative Web solutions and services based on Alexa's vast information about web sites, accessible with a web services API.

Is Amazon shutting down the Alexa service?

The Alexa Internet web tracking service will go dark next year, but Alexa the voice assistant isn't going anywhere.


1 Answers

Regarding aws:PerMillion

The PageViews PerMillion stat shows "out of every million pageviews made by all users on the Internet today how many pageviews are made on this site?" The daily pageviews number is then averaged over the specified time period.

https://forums.aws.amazon.com/message.jspa?messageID=578614

and aws:PerUser

it is "per million pageviews on the internet"

https://forums.aws.amazon.com/message.jspa?messageID=265890

like image 146
Trenton Avatar answered Sep 22 '22 06:09

Trenton