Let explore a Russian Wolfram Community, based on site vk.com:
For example, we want to find the most popular name in this community:
names={};
Do[
url=URLBuild["api.vk.com/method/wall.get",{
"count" -> 100,
"owner_id"->"-1172233",
"extended" -> 1,
"offset" -> i
}];
data=(Developer`ReadJSONString@URLFetch[url])["response","profiles"][[All,2]];
names=Join[names,data],
{i, 0, 4000, 100}];
WordCloud[names]
As you can see, the most popular name is Alexander. So if you are Alexander, you should join us =)