Rank::Mustat - Website traffic estimation, site value, and domain rating

Mustat parser overview
The Mustat parser allows you to obtain an estimate of website traffic, as well as the domain's value and rating.
Results can be saved in any format and structure you require, thanks to the powerful built-in Template Toolkit engine, which allows you to apply additional logic to results and output data in various formats, including JSON, SQL, and CSV.
Collected data
- Number of daily website visitors
- Website value in USD
- Domain rating
Use cases
- Estimating domain traffic
- Obtaining summary information about a domain
Queries
You should specify the domain of the target site as queries, 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 Toolkit, allowing it to output results in any form, as well as structured formats like CSV or JSON.
Default output
Result format:
Traffic: $traffic; Worth: $worth; Rating: $rating\n
Result example:
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) %]
Result example:
a-parser.com,3232,22624,100192,1179680,3539,30
Dump results to JSON
General output format:
[% 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 %]
Initial text:
[
Final text:
]
Result example:
[{"traffic":"3232","worth":"3539","trafficWeek":"22624","query":"a-parser.com","trafficMonth":"100192","rating":"30","trafficYear":"1179680"}]
To make the "Initial text" and "End text" options available in the Task Editor, you need to activate "More options".