Skip to main content

Rank::Mustat - Traffic estimation on a website, as well as cost and domain rating

img

Scraper Overview

Mustat scraper - allows you to get an estimate of traffic on a website, as well as the cost and rating of the domain

Saving results is possible in the form and structure you need, thanks to the built-in powerful template engine Template Toolkit which allows you to apply additional logic to the results and output data in various formats, including JSON, SQL, and CSV

Collected Data

  • Number of website visitors per day
  • Website cost in USD
  • Domain rating

Use Cases

  • Traffic estimation on a domain
  • Obtaining aggregate information about a domain

Queries

As queries, you need to specify the domain of the desired website, for example:

a-parser.com  
www.yahoo.com
google.com
vk.com
youtube.com

Output Results Examples

A-Parser supports flexible result formatting thanks to the built-in template engine Template Toolkit, which allows it to output results in any form, as well as in structured formats, such as CSV or JSON

Default Output

Result format:

Traffic: $traffic; Worth: $worth; Rating: $rating\n

Example of the result:

Traffic: 82823958, Worth: 17004793863, Rating: 100  
Traffic: 3232, Worth: 3539, Rating: 23
Traffic: 7938563, Worth: 814943106, Rating: 100
Traffic: 160439571, Worth: 32940249406, Rating: 100
Traffic: 103246297, Worth: 12365357286, Rating: 100

Output in CSV Table

Result format:

[% tools.CSVline(query, traffic, trafficWeek, trafficMonth, trafficYear, worth, rating) %]

Example of the result:

a-parser.com,3232,22624,100192,1179680,3539,30

Dump Results to JSON

Общий формат результата:

[% IF notFirst;
",\n";
ELSE;
notFirst = 1;
END;

obj = {};
obj.query = query;
obj.traffic = p1.traffic;
obj.trafficWeek = p1.trafficWeek;
obj.trafficMonth = p1.trafficMonth;
obj.trafficYear = p1.trafficYear;
obj.worth = p1.worth;
obj.rating = p1.rating;

obj.json %]

Начальный текст:

[

Конечный текст:

]

Example of the result:

[{"traffic":"3232","worth":"3539","trafficWeek":"22624","query":"a-parser.com","trafficMonth":"100192","rating":"30","trafficYear":"1179680"}]
tip

To make the "Start text" and "End text" options available in the Task Editor, you need to activate "More options".

Possible Settings