 The backend has new API endpoints for retrieving the top projects on the Utopian. This can be used for statistical or analytical purposes or for a front end to display the top projects. Other bug fixes were made as well :) ### Here's what can be be done out of the box ``` Endpoint to retrieve the top 3 projects based on number of contributions in the last week /api/posts/top?limit=3&start_date=2017-12-1&end_date=2017-12-8 ``` ``` Endpoint to retrieve the top new 4 projects of the last week based on the number of contributions/rewards /api/posts/top?limit=4&start_date=2017-12-1&end_date=2017-12-8&include_rewards=true&only_new=true ``` ``` Endpoint to retrieve the top 10 contributions of the last week, based on number of rewards /api/posts/top?limit=10&start_date=2017-12-1&end_date=2017-12-8&include_rewards=true&sort_by=rewards ``` ### Query parameters - `limit` How many top projects to receive from the API - `start_date` Analyze top projects starting from this date. - `end_date` Analyze top projects ending to this day, used in combination with start_date to form a query for retrieving top projects in a given week. - `include_rewards` When set to `true` the Steem API will be queried to aggregate the rewards across the top projects. - `sort_by` Can be set to `contributions` or `rewards`. When set to rewards then `include_rewards` must be set to true for this to work. The Steem API will be queried for many more posts to get an accurate projection of top projects based only on rewards. ## Technical details Querying the local database is easy (as seen in the first endpoint sample). The server can aggregate the data quickly in less than a second. When rewards are involved, things are much trickier. We must now query the DB on many posts. The DB backend is MongoDB and data is queried through the aggregation pipeline. First I tried [response streaming](https://github.com/utopian-io/api.utopian.io/commit/0d5579ac637ef47490e093c7e0d181e6fa7f56dd) but this wasn't playing well at all, it also had the downside of needing to query the blockchain again. This was then replaced with an [async model](https://github.com/utopian-io/api.utopian.io/commit/acbcb7faa9fca5053d3572f4cf14129cef31cbed). The API server will return a status and any data it completes. There is a caching system in place for storing these expensive results. As a result data may become stale after a certain amount of time. So the caching system is capable of expiring the stale data after a certain amount of time, allowing for fresh data to be retrieved. The caching system is smart in regards to the parameters passed in and knows whether or not it is cached based on the query parameters parameter. A weak hash (md5) creates a unique identifier of the cache data in the backend. Caching happens entirely transparently to the user. Checks are added if the data has already been paid out or not, to avoid querying the Steem API if necessary. A rate limiting system is in place as well to prevent abuse of this endpoint, but only applies if data needs to be queried from the blockchain. The limit is tied to a Steem account to prevent circumventing the system. The date range is limited to 8 days maximum and a maximum limit of 100 projects. ### Refactoring A [universal post](https://github.com/utopian-io/api.utopian.io/commit/4e87df768648aabdab855e7b0d78bc65bd7a97d7) updater is now in use, allowing data queried from the Steem API to update the stale data in the DB, greatly simplifying the process and reducing coupling of the previous review function. ### Bug fixes - No longer does the front end lock you out when you revoke GitHub access to Utopian - The auth system now uses refresh tokens, allowing the backend to nifty new things - Querying the DB for flagged posts no longer returns an empty set ### Commits All commits can be found at https://github.com/utopian-io/api.utopian.io/commits/master - https://github.com/utopian-io/api.utopian.io/commit/ecb9226d268394f7599dcc9f2be816ef1d74d74d - https://github.com/utopian-io/api.utopian.io/commit/957c676c44110771b954f3a2638d9d19864b89bc - https://github.com/utopian-io/api.utopian.io/commit/3226516efdbd1cd1922c0abce564d3efbdba84e4 - https://github.com/utopian-io/api.utopian.io/commit/4e87df768648aabdab855e7b0d78bc65bd7a97d7 - https://github.com/utopian-io/api.utopian.io/commit/4e87df768648aabdab855e7b0d78bc65bd7a97d7 - https://github.com/utopian-io/api.utopian.io/commit/0d5579ac637ef47490e093c7e0d181e6fa7f56dd - https://github.com/utopian-io/api.utopian.io/commit/acbcb7faa9fca5053d3572f4cf14129cef31cbed - https://github.com/utopian-io/api.utopian.io/commit/8c32f94802f7145c544842ca64f4cab8eb37e553 - https://github.com/utopian-io/api.utopian.io/commit/c600df2930fe25d399722ca7109d62a6467c5ab1 - https://github.com/utopian-io/api.utopian.io/commit/c215b6518f5132540053e0ea3284b1ffcd316c9e - https://github.com/utopian-io/api.utopian.io/commit/92678f38f05d85525dcccc3ee95163f724372a31 - https://github.com/utopian-io/api.utopian.io/commit/8abf57b4ed86ea7c4144ad90ec5f56c64193f7b0 - https://github.com/utopian-io/api.utopian.io/commit/b879ec9e4dc637bb1592611cc697fb99f88b9115 <br /><hr/><em>Posted on <a href="https://utopian.io/utopian-io/@samrg472/utopian-io-retrieving-top-projects-with-the-utopian-api">Utopian.io - Rewarding Open Source Contributors</a></em><hr/>
author | samrg472 | ||||||
---|---|---|---|---|---|---|---|
permlink | utopian-io-retrieving-top-projects-with-the-utopian-api | ||||||
category | utopian-io | ||||||
json_metadata | "{"community":"utopian","app":"utopian/1.0.0","format":"markdown","repository":{"score":53.12803,"default_branch":"master","watchers":14,"open_issues":4,"forks":19,"license":{"url":"https://api.github.com/licenses/mit","spdx_id":"MIT","name":"MIT License","key":"mit"},"open_issues_count":4,"archived":false,"mirror_url":null,"forks_count":19,"has_pages":false,"has_wiki":true,"has_downloads":true,"has_projects":true,"has_issues":true,"language":"TypeScript","watchers_count":14,"stargazers_count":14,"size":823,"homepage":"https://utopian.io/","svn_url":"https://github.com/utopian-io/api.utopian.io","clone_url":"https://github.com/utopian-io/api.utopian.io.git","ssh_url":"git@github.com:utopian-io/api.utopian.io.git","git_url":"git://github.com/utopian-io/api.utopian.io.git","pushed_at":"2017-12-18T10:34:29Z","updated_at":"2017-12-11T02:32:55Z","created_at":"2017-10-13T09:32:24Z","deployments_url":"https://api.github.com/repos/utopian-io/api.utopian.io/deployments","releases_url":"https://api.github.com/repos/utopian-io/api.utopian.io/releases{/id}","labels_url":"https://api.github.com/repos/utopian-io/api.utopian.io/labels{/name}","notifications_url":"https://api.github.com/repos/utopian-io/api.utopian.io/notifications{?since,all,participating}","milestones_url":"https://api.github.com/repos/utopian-io/api.utopian.io/milestones{/number}","pulls_url":"https://api.github.com/repos/utopian-io/api.utopian.io/pulls{/number}","issues_url":"https://api.github.com/repos/utopian-io/api.utopian.io/issues{/number}","downloads_url":"https://api.github.com/repos/utopian-io/api.utopian.io/downloads","archive_url":"https://api.github.com/repos/utopian-io/api.utopian.io/{archive_format}{/ref}","merges_url":"https://api.github.com/repos/utopian-io/api.utopian.io/merges","compare_url":"https://api.github.com/repos/utopian-io/api.utopian.io/compare/{base}...{head}","contents_url":"https://api.github.com/repos/utopian-io/api.utopian.io/contents/{+path}","issue_comment_url":"https://api.github.com/repos/utopian-io/api.utopian.io/issues/comments{/number}","comments_url":"https://api.github.com/repos/utopian-io/api.utopian.io/comments{/number}","git_commits_url":"https://api.github.com/repos/utopian-io/api.utopian.io/git/commits{/sha}","commits_url":"https://api.github.com/repos/utopian-io/api.utopian.io/commits{/sha}","subscription_url":"https://api.github.com/repos/utopian-io/api.utopian.io/subscription","subscribers_url":"https://api.github.com/repos/utopian-io/api.utopian.io/subscribers","contributors_url":"https://api.github.com/repos/utopian-io/api.utopian.io/contributors","stargazers_url":"https://api.github.com/repos/utopian-io/api.utopian.io/stargazers","languages_url":"https://api.github.com/repos/utopian-io/api.utopian.io/languages","statuses_url":"https://api.github.com/repos/utopian-io/api.utopian.io/statuses/{sha}","trees_url":"https://api.github.com/repos/utopian-io/api.utopian.io/git/trees{/sha}","git_refs_url":"https://api.github.com/repos/utopian-io/api.utopian.io/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/utopian-io/api.utopian.io/git/tags{/sha}","blobs_url":"https://api.github.com/repos/utopian-io/api.utopian.io/git/blobs{/sha}","tags_url":"https://api.github.com/repos/utopian-io/api.utopian.io/tags","branches_url":"https://api.github.com/repos/utopian-io/api.utopian.io/branches{/branch}","assignees_url":"https://api.github.com/repos/utopian-io/api.utopian.io/assignees{/user}","events_url":"https://api.github.com/repos/utopian-io/api.utopian.io/events","issue_events_url":"https://api.github.com/repos/utopian-io/api.utopian.io/issues/events{/number}","hooks_url":"https://api.github.com/repos/utopian-io/api.utopian.io/hooks","teams_url":"https://api.github.com/repos/utopian-io/api.utopian.io/teams","collaborators_url":"https://api.github.com/repos/utopian-io/api.utopian.io/collaborators{/collaborator}","keys_url":"https://api.github.com/repos/utopian-io/api.utopian.io/keys{/key_id}","forks_url":"https://api.github.com/repos/utopian-io/api.utopian.io/forks","url":"https://api.github.com/repos/utopian-io/api.utopian.io","fork":false,"description":"Node API for Utopian.io - Utopian rewards open-source contributors for hard work!","html_url":"https://github.com/utopian-io/api.utopian.io","private":false,"owner":{"site_admin":false,"type":"Organization","received_events_url":"https://api.github.com/users/utopian-io/received_events","events_url":"https://api.github.com/users/utopian-io/events{/privacy}","repos_url":"https://api.github.com/users/utopian-io/repos","organizations_url":"https://api.github.com/users/utopian-io/orgs","subscriptions_url":"https://api.github.com/users/utopian-io/subscriptions","starred_url":"https://api.github.com/users/utopian-io/starred{/owner}{/repo}","gists_url":"https://api.github.com/users/utopian-io/gists{/gist_id}","following_url":"https://api.github.com/users/utopian-io/following{/other_user}","followers_url":"https://api.github.com/users/utopian-io/followers","html_url":"https://github.com/utopian-io","url":"https://api.github.com/users/utopian-io","gravatar_id":"","avatar_url":"https://avatars2.githubusercontent.com/u/18612062?v=4","id":18612062,"login":"utopian-io"},"full_name":"utopian-io/api.utopian.io","name":"api.utopian.io","id":106805299},"pullRequests":[],"platform":"github","type":"development","tags":["utopian-io","programming","utopian","opensource"],"users":["samrg472"],"links":["https://github.com/utopian-io/api.utopian.io/commit/0d5579ac637ef47490e093c7e0d181e6fa7f56dd","https://github.com/utopian-io/api.utopian.io/commit/acbcb7faa9fca5053d3572f4cf14129cef31cbed","https://github.com/utopian-io/api.utopian.io/commit/4e87df768648aabdab855e7b0d78bc65bd7a97d7"]}" | ||||||
created | 2017-12-18 17:38:24 | ||||||
last_update | 2017-12-18 17:41:18 | ||||||
depth | 0 | ||||||
children | 13 | ||||||
last_payout | 2017-12-25 17:38:24 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 50.072 HBD | ||||||
curator_payout_value | 18.097 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 5,433 | ||||||
author_reputation | 8,524,113,165,873 | ||||||
root_title | "[Utopian-IO] Retrieving Top Projects with the Utopian API" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 24,056,923 | ||||||
net_rshares | 13,773,480,175,077 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
fminerten | 0 | 227,025,242,838 | 5% | ||
steempty | 0 | 163,050,459,110 | 5% | ||
testz | 0 | 851,721,049,134 | 100% | ||
olyup | 0 | 23,211,130,505 | 50% | ||
fabien | 0 | 544,134,956,323 | 100% | ||
mjhomb | 0 | 126,029,179,410 | 100% | ||
abh12345 | 0 | 37,851,803,654 | 5% | ||
jeanviete | 0 | 14,272,868,124 | 100% | ||
apocalypse612 | 0 | 1,452,885,764 | 50% | ||
matstaader | 0 | 458,415,265 | 70% | ||
greatdabu | 0 | 252,755,039,601 | 100% | ||
greg07 | 0 | 1,670,144,243 | 70% | ||
trueart | 0 | 15,180,654,757 | 100% | ||
samrg472 | 0 | 43,381,561,167 | 100% | ||
techslut | 0 | 105,237,090,285 | 10% | ||
cardinalkennedy | 0 | 666,906,168 | 50% | ||
abn | 0 | 5,699,624,312 | 50% | ||
libert | 0 | 2,975,357,270 | 100% | ||
erikaflynn | 0 | 34,589,928,315 | 100% | ||
prime-cleric | 0 | 56,634,013,988 | 65% | ||
cardinalkpatrick | 0 | 627,242,601 | 40% | ||
freddd009 | 0 | 1,110,544,624 | 75% | ||
rayelite1 | 0 | 1,131,881,570 | 50% | ||
cifer44 | 0 | 1,744,381,436 | 55% | ||
mharr331 | 0 | 1,369,156,924 | 50% | ||
victoria-harr | 0 | 2,295,673,106 | 50% | ||
rayelite8 | 0 | 307,563,300 | 50% | ||
selenascott | 0 | 658,163,284 | 50% | ||
mstaader | 0 | 18,215,772,094 | 70% | ||
belovebelight | 0 | 11,816,942,338 | 65% | ||
mkt | 0 | 62,180,303,614 | 100% | ||
rasgriz311 | 0 | 2,331,143,653 | 50% | ||
diogogomes | 0 | 239,054,324 | 29% | ||
helo | 0 | 3,741,194,101 | 100% | ||
dehenne | 0 | 21,914,701,252 | 100% | ||
manishmike10 | 0 | 23,849,797,848 | 100% | ||
flauwy | 0 | 214,768,923,818 | 50% | ||
linda-rose | 0 | 23,885,527,108 | 65% | ||
mahdiyari | 0 | 83,907,327,440 | 20% | ||
gingerninja | 0 | 4,569,021,418 | 50% | ||
astaader | 0 | 716,483,452 | 70% | ||
evie5el | 0 | 885,420,255 | 40% | ||
orcheva | 0 | 75,988,077,404 | 100% | ||
gabbrielle | 0 | 415,539,070 | 75% | ||
arbeitssuchend | 0 | 1,773,262,074 | 100% | ||
cardinalemil | 0 | 2,512,446,430 | 100% | ||
simnrodrguez | 0 | 53,382,895,862 | 50% | ||
simonluisi | 0 | 463,425,433 | 50% | ||
hippo | 0 | 8,278,475,002 | 20% | ||
civilianlife | 0 | 1,494,085,559 | 100% | ||
codingdefined | 0 | 13,973,120,371 | 50% | ||
rosemary-k | 0 | 409,708,728 | 75% | ||
katteasis | 0 | 10,109,003,501 | 24% | ||
jasonbu | 0 | 37,742,131,145 | 100% | ||
the-bishop-ufc | 0 | 2,449,040,138 | 50% | ||
fabiyamada | 0 | 53,960,842,112 | 24% | ||
cifer | 0 | 2,253,237,171 | 100% | ||
stoodkev | 0 | 12,946,536,188 | 10% | ||
mooncryption | 0 | 21,891,760,062 | 50% | ||
ansonoxy | 0 | 17,420,415,389 | 50% | ||
skpjr001 | 0 | 3,631,310,746 | 100% | ||
jamesbarraclough | 0 | 47,044,190,590 | 100% | ||
dissgo | 0 | 634,888,179 | 100% | ||
espoem | 0 | 43,622,316,827 | 100% | ||
xoxois | 0 | 1,592,599,787 | 100% | ||
mcfarhat | 0 | 19,806,189,017 | 25% | ||
montedeilumi | 0 | 3,124,293,780 | 70% | ||
elear | 0 | 5,505,877,900 | 100% | ||
sorucevap | 0 | 22,870,656,052 | 10% | ||
idlebright | 0 | 3,099,275,739 | 50% | ||
razifahreza | 0 | 526,520,534 | 100% | ||
utopian-io | 0 | 10,080,678,491,948 | 7.1% | ||
favcau | 0 | 18,515,932,407 | 100% | ||
emrebeyler | 0 | 12,172,507,855 | 32% | ||
moorkedi | 0 | 2,040,665,515 | 50% | ||
steemdunk | 0 | 158,335,610,444 | 100% | ||
habercitr | 0 | 7,117,722,939 | 100% | ||
kslo | 0 | 3,159,318,891 | 100% | ||
ekushya | 0 | 844,108,013 | 50% | ||
adhew | 0 | 61,532,000 | 10% | ||
raj1511 | 0 | 128,184,129 | 50% | ||
asimaashu | 0 | 698,924,690 | 100% | ||
turkiye | 0 | 11,158,022,736 | 15% | ||
fabiocola | 0 | 154,232,257 | 50% | ||
iqbaladan | 0 | 1,766,255,653 | 100% | ||
nihalmahmud | 0 | 255,511,192 | 100% | ||
nizam8089 | 0 | 244,099,609 | 100% | ||
ohicklin | 0 | 501,812,966 | 100% | ||
ms10398 | 0 | 3,418,492,234 | 100% | ||
maphics | 0 | 982,151,984 | 50% | ||
adfizz | 0 | 480,500,351 | 50% | ||
utopian-1up | 0 | 6,755,556,047 | 50% | ||
phgnomo | 0 | 257,553,550 | 100% | ||
clausewitz | 0 | 849,679,383 | 100% | ||
blickyer | 0 | 571,761,553 | 100% | ||
sistem | 0 | 626,173,698 | 100% | ||
bobsthinking | 0 | 255,732,308 | 100% | ||
stephenlouis8 | 0 | 1,044,459,138 | 100% | ||
joseroa29 | 0 | 145,063,249 | 100% | ||
mciszczon | 0 | 1,073,467,755 | 100% | ||
superdoctor | 0 | 0 | 100% | ||
alofe.oluwafemi | 0 | 0 | 100% |
Excellent code work. @Utopian-io is really benefitting from @samrg472!
author | abn |
---|---|
permlink | re-samrg472-utopian-io-retrieving-top-projects-with-the-utopian-api-20171221t234425614z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"users":["utopian-io","samrg472"],"app":"steemit/0.1"} |
created | 2017-12-21 23:44:30 |
last_update | 2017-12-21 23:44:30 |
depth | 1 |
children | 0 |
last_payout | 2017-12-28 23:44:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 70 |
author_reputation | 6,507,300,897,068 |
root_title | "[Utopian-IO] Retrieving Top Projects with the Utopian API" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 24,604,875 |
net_rshares | 0 |
Awesome job!
author | cifer44 |
---|---|
permlink | re-samrg472-utopian-io-retrieving-top-projects-with-the-utopian-api-20171218t200544315z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2017-12-18 20:05:45 |
last_update | 2017-12-18 20:05:45 |
depth | 1 |
children | 0 |
last_payout | 2017-12-25 20:05:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 12 |
author_reputation | 5,751,224,533,395 |
root_title | "[Utopian-IO] Retrieving Top Projects with the Utopian API" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 24,074,598 |
net_rshares | 0 |
Sam it top-notch!
author | elear |
---|---|
permlink | re-samrg472-utopian-io-retrieving-top-projects-with-the-utopian-api-20171219t114344023z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2017-12-19 11:43:45 |
last_update | 2017-12-19 11:43:45 |
depth | 1 |
children | 0 |
last_payout | 2017-12-26 11:43:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 17 |
author_reputation | 59,749,428,580,040 |
root_title | "[Utopian-IO] Retrieving Top Projects with the Utopian API" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 24,172,924 |
net_rshares | 663,906,171 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
chidiebereegbo | 0 | 663,906,171 | 100% |
😁 😁 😁 with what i keep reading here expecially from sammy and other dev guys, I'm a rapper and a writer but you guys are already tuning me into a geek, ☺ ☺ ☺ keep up the good work for the greater good of utopian.
author | marshalllife |
---|---|
permlink | re-samrg472-utopian-io-retrieving-top-projects-with-the-utopian-api-20171219t121634143z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2017-12-19 12:16:42 |
last_update | 2017-12-19 12:16:42 |
depth | 1 |
children | 0 |
last_payout | 2017-12-26 12:16:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 216 |
author_reputation | 27,833,320,238,303 |
root_title | "[Utopian-IO] Retrieving Top Projects with the Utopian API" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 24,176,791 |
net_rshares | 0 |
Nice work samrg ;) Thank you for the contribution. It has been approved. You can contact us on [Discord](https://discord.gg/UCvqCsx). **[[utopian-moderator]](https://utopian.io/moderators)**
author | mcfarhat |
---|---|
permlink | re-samrg472-utopian-io-retrieving-top-projects-with-the-utopian-api-20171218t185509413z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"community":"busy","app":"busy/1.0.0"} |
created | 2017-12-18 18:55:09 |
last_update | 2017-12-18 18:55:09 |
depth | 1 |
children | 0 |
last_payout | 2017-12-25 18:55:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.062 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 191 |
author_reputation | 150,651,671,367,256 |
root_title | "[Utopian-IO] Retrieving Top Projects with the Utopian API" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 24,066,239 |
net_rshares | 10,516,742,101 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
samrg472 | 0 | 10,516,742,101 | 25% |
Keep going Brother you are making amazing contributions
author | mharr331 |
---|---|
permlink | re-samrg472-utopian-io-retrieving-top-projects-with-the-utopian-api-20171218t234934478z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2017-12-18 23:49:21 |
last_update | 2017-12-18 23:49:21 |
depth | 1 |
children | 0 |
last_payout | 2017-12-25 23:49:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 55 |
author_reputation | 2,043,617,787,019 |
root_title | "[Utopian-IO] Retrieving Top Projects with the Utopian API" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 24,097,787 |
net_rshares | 0 |
Perfect! That's what I need to automate the Utopian Weekly! Thanks!
author | mkt |
---|---|
permlink | re-samrg472-utopian-io-retrieving-top-projects-with-the-utopian-api-20171219t122003301z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"community":"busy","app":"busy/2.1.0"} |
created | 2017-12-19 12:20:03 |
last_update | 2017-12-19 12:20:03 |
depth | 1 |
children | 1 |
last_payout | 2017-12-26 12:20:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 67 |
author_reputation | 45,513,283,519,678 |
root_title | "[Utopian-IO] Retrieving Top Projects with the Utopian API" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 24,177,207 |
net_rshares | 0 |
brillant job
author | ecoman1 |
---|---|
permlink | re-mkt-re-samrg472-utopian-io-retrieving-top-projects-with-the-utopian-api-20171219t185317243z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2017-12-19 18:53:21 |
last_update | 2017-12-19 18:53:21 |
depth | 2 |
children | 0 |
last_payout | 2017-12-26 18:53:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 12 |
author_reputation | 3,594,222,183 |
root_title | "[Utopian-IO] Retrieving Top Projects with the Utopian API" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 24,231,843 |
net_rshares | 0 |
Excellent work, bro.
author | rasgriz311 |
---|---|
permlink | re-samrg472-utopian-io-retrieving-top-projects-with-the-utopian-api-20171218t232747028z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2017-12-18 23:27:51 |
last_update | 2017-12-18 23:27:51 |
depth | 1 |
children | 0 |
last_payout | 2017-12-25 23:27:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 20 |
author_reputation | 3,120,996,880,176 |
root_title | "[Utopian-IO] Retrieving Top Projects with the Utopian API" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 24,095,551 |
net_rshares | 0 |
Great job Sam!
author | rayelite1 |
---|---|
permlink | re-samrg472-utopian-io-retrieving-top-projects-with-the-utopian-api-20171219t192334285z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2017-12-19 19:23:33 |
last_update | 2017-12-19 19:23:33 |
depth | 1 |
children | 0 |
last_payout | 2017-12-26 19:23:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 14 |
author_reputation | 1,320,087,904,066 |
root_title | "[Utopian-IO] Retrieving Top Projects with the Utopian API" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 24,235,717 |
net_rshares | 0 |
<div class="pull-left">  </div> <div class="text-justify"> <br> You've got a <code>1UP</code> from the @utopian-1up curation trail. __31 Utopians__ have upvoted your quality contribution to the open source community. <code>[Join](https://steemit.com/utopian-io/@flauwy/steemy-ep-46-how-to-create-and-follow-a-curation-trail-with-steemauto) 1UP for better posts and high curation rewards.</code> _1UP is neither organized nor endorsed by Utopian.io!_ </div>
author | utopian-1up |
---|---|
permlink | re-samrg472-utopian-io-retrieving-top-projects-with-the-utopian-api-20171218t190409471z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"community":"busy","app":"busy/2.1.0"} |
created | 2017-12-18 19:04:15 |
last_update | 2017-12-18 19:04:15 |
depth | 1 |
children | 0 |
last_payout | 2017-12-25 19:04:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.419 HBD |
curator_payout_value | 0.031 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 570 |
author_reputation | 2,324,758,056,093 |
root_title | "[Utopian-IO] Retrieving Top Projects with the Utopian API" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 24,067,334 |
net_rshares | 73,650,703,459 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mkt | 0 | 30,614,394,488 | 50% | ||
flauwy | 0 | 29,702,085,208 | 7% | ||
thinkkniht | 0 | 13,334,223,763 | 25% |
### Hey @samrg472 I am @utopian-io. I have just upvoted you! #### Achievements - WOW WOW WOW People loved what you did here. GREAT JOB! - You have less than 500 followers. Just gave you a gift to help you succeed! - Seems like you contribute quite often. AMAZING! #### Community-Driven Witness! I am the first and only Steem Community-Driven Witness. <a href="https://discord.gg/zTrEMqB">Participate on Discord</a>. Lets GROW TOGETHER! - <a href="https://v2.steemconnect.com/sign/account-witness-vote?witness=utopian-io&approve=1">Vote for my Witness With SteemConnect</a> - <a href="https://v2.steemconnect.com/sign/account-witness-proxy?proxy=utopian-io&approve=1">Proxy vote to Utopian Witness with SteemConnect</a> - Or vote/proxy on <a href="https://steemit.com/~witnesses">Steemit Witnesses</a> [](https://steemit.com/~witnesses) **Up-vote this comment to grow my power and help Open Source contributions like this one. Want to chat? Join me on Discord https://discord.gg/Pc8HG9x**
author | utopian-io |
---|---|
permlink | re-samrg472-utopian-io-retrieving-top-projects-with-the-utopian-api-20171220t013206239z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"community":"utopian","app":"utopian/1.0.0"} |
created | 2017-12-20 01:32:06 |
last_update | 2017-12-20 01:32:06 |
depth | 1 |
children | 0 |
last_payout | 2017-12-27 01:32:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,141 |
author_reputation | 152,955,367,999,756 |
root_title | "[Utopian-IO] Retrieving Top Projects with the Utopian API" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 24,275,354 |
net_rshares | 0 |
I don't understand all this mumbo jumbo o.o
author | victoria-harr |
---|---|
permlink | re-samrg472-utopian-io-retrieving-top-projects-with-the-utopian-api-20171218t224748995z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2017-12-18 22:47:54 |
last_update | 2017-12-18 22:47:54 |
depth | 1 |
children | 0 |
last_payout | 2017-12-25 22:47:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 43 |
author_reputation | 3,602,715,849,795 |
root_title | "[Utopian-IO] Retrieving Top Projects with the Utopian API" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 24,091,443 |
net_rshares | 0 |