Alexa Traffic Rank Checker

Alexa Traffic Rank Checker is an easy to use tool that allows you to quickly check Alexa ranking for one or more websites (or URLs) all at once. Simply input a list of URLs or website addresses into the textarea below and click "Check Alexa Rankings" button and wait. The results can then be exported in whatever custom format you choose.

Alexa global traffic rank is a measure of a website's popularity relative to other sites on the internet. To get more information on how Alexa calculates their rankings, read their about page and - "How are Alexa’s traffic rankings determined?" page from their support section.

Deprecation notice: Alexa.com was retired on May 1, 2022 after more than 25 years of service. Their API was discontinued a few months later, however they continued to publish their "top 1 million sites" to - http://s3.amazonaws.com/alexa-static/top-1m.csv.zip - up until February 1, 2023 which is when they stopped updating that dataset.

Therefore, unless Alexa provides access to a more recent data, the results from this tool will become less and less accurate and incomplete as it would not include websites registered after that last data snapshot from Alexa.


Loading...

All data belongs to Alexa Internet which is a subsidiary of amazon.com. We are not affiliated with Amazon.

API Access

The entire Alexa traffic rankings dataset used by this tool can accessed via our API that is free and open to everyone. Some limits apply. See example usage below.

curl -X POST https://api.proxynova.com/alexa/rank -s -d "urls=https://google.com https://yahoo.com" | jq
{
  "urls": [
    {
      "url": "https://google.com",
      "domain": "google.com",
      "rank": 1
    },
    {
      "url": "https://yahoo.com",
      "domain": "yahoo.com",
      "rank": 12
    }
  ]
}