### Repository https://github.com/nawab69/steemtools ------  ------- ### New Features #### SteemTools REST API SteemTools released a REST API. The Rest API is build with PHP, JSON and steemit api. Few days ago steemjs REST API stopped working. So I have decided to make a rest API. Finally I have made this. **API URL** : https://api.steemtools.cf **Method** : GET ### Endpoints ------- ### /get_withdraw_routes get_withdraw_routes has 1 parameters. its ``account``. | parameters | type | details | |-------------|--------|-------------------| | account | string | user account name | API: https://api.steemtools.cf/get_withdraw_routes?account=value Result: ``` [{"id":0,"from_account":"","to_account":"","percent":0,"auto_vest":false}] ``` CURL ``` curl -X GET -v -i 'https://api.steemtools.cf/get_withdraw_routes?account=value' ``` -------- ### /get_volume No parameters API: https://api.steemtools.cf/get_volume Result: ``` {"steem_volume":"11083.861 STEEM","sbd_volume":"4343.484 SBD"} ``` Curl: ``` curl -X GET -v -i 'https://api.steemtools.cf/get_volume' ``` ------- ### /get_vesting_delegations It has three parameters. These are ``account,start,limit`` | parameters | type | details | |-------------|--------|-------------------| | account | string | user account name | | start | string | start from | | limit | int | limit upto 1000 | API: https://api.steemtools.cf/get_vesting_delegations?account=value&start=value&limit=value Example Result ``` [ { "id": 97323, "delegator": "steem", "delegatee": "null-a", "vesting_shares": "9139.384274 VESTS", "min_delegation_time": "2017-07-24T14:04:57" }, { "id": 1057809, "delegator": "steem", "delegatee": "null-name", "vesting_shares": "9836.682166 VESTS", "min_delegation_time": "2018-10-04T06:59:15" } ] ``` Curl: ``` curl -X GET -v -i 'https://api.steemtools.cf/get_vesting_delegations?account=value&start=value&limit=value' ``` ------- ### /get_version No parameters API : https://api.steemtools.cf/get_version Example Result: ``` {"blockchain_version":"0.20.9","steem_revision":"46c3bdbff14166355e81b4b543e3be4b767ac0d2","fc_revision":"46c3bdbff14166355e81b4b543e3be4b767ac0d2"} ``` Curl Command: ``` curl -X GET -v -i 'https://api.steemtools.cf/get_version' ``` ------ ### /get_trending_tags Parameters | parameters | type | details | |-------------|------|------------------| | start | string | start from tag | | limit | int | limit total tags | API : https://api.steemtools.cf/get_trending_tags?start=value&limit=value Example result [First 10 trending tags] ``` [{"name":"dtube","comments":10784,"top_posts":3247,"total_payouts":"8605.089 SBD"},{"name":"photography","comments":8959,"top_posts":2733,"total_payouts":"5513.981 SBD"},{"name":"utopian-io","comments":1400,"top_posts":194,"total_payouts":"4781.642 SBD"},{"name":"life","comments":5733,"top_posts":1595,"total_payouts":"4462.091 SBD"},{"name":"steem","comments":6276,"top_posts":693,"total_payouts":"4122.676 SBD"},{"name":"steemhunt","comments":6671,"top_posts":1322,"total_payouts":"3996.732 SBD"},{"name":"kr","comments":7481,"top_posts":1248,"total_payouts":"3487.843 SBD"},{"name":"spanish","comments":6527,"top_posts":1620,"total_payouts":"3241.260 SBD"},{"name":"art","comments":4315,"top_posts":1038,"total_payouts":"3103.509 SBD"},{"name":"tasteem","comments":5570,"top_posts":466,"total_payouts":"2489.056 SBD"}] ``` CURL COMMAND : ``` curl -X GET -v -i 'https://api.steemtools.cf/get_trending_tags?start=value&limit=value' ``` ------- ### /get_trade_history | parameters | type | details | |------------- |----------- |----------------- | | start | timestamp | start timestamp | | end | timestamp | end timestamp | API : https://api.steemtools.cf/get_trade_history?start=value&end=value Example Result : ``` [] ``` Curl Command : ``` curl -X GET -v -i 'https://api.steemtools.cf/get_trade_history?start=value&end=value' ``` ----- ### /get_ticker No parameters API : https://api.steemtools.cf/get_ticker Example Result : ``` {"latest":"0.42857142857142855","lowest_ask":"0.40211953785662852","highest_bid":"0.40210843373493976","percent_change":"0.00000000000000000","steem_volume":"11885.420 STEEM","sbd_volume":"4689.431 SBD"} ``` Curl Command : ``` curl -X GET -v -i 'https://api.steemtools.cf/get_ticker' ``` ### /get_recovery_request | parameters | type | details | |-------------|--------|-------------------| | account | string | user account name | API: https://api.steemtools.cf/get_recovery_request?account=value Example result ``` null ``` Curl Command ``` curl -X GET -v -i 'https://api.steemtools.cf/get_recovery_request?account=value ``` ---- ### /get_savings_withdraw_to | parameters | type | details | |-------------|--------|-------------------| | account | string | user account name | API: https://api.steemtools.cf/get_savings_withdraw_to?account=value Example result ``` [] ``` Curl Command ``` curl -X GET -v -i 'https://api.steemtools.cf/get_savings_withdraw_to?account=value ``` ------ ### /get_savings_withdraw_from | parameters | type | details | |-------------|--------|-------------------| | account | string | user account name | API: https://api.steemtools.cf/get_savings_withdraw_from?account=value Example result ``` [] ``` Curl Command ``` curl -X GET -v -i 'https://api.steemtools.cf/get_savings_withdraw_from?account=value ``` ----- ### /get_account_count No parameters API https://api.steemtools.cf/get_account_count Example Result ``` { "total_account": 1231573 } ``` Curl Command ``` curl -X GET -v -i 'https://api.steemtools.cf/get_account_count' ``` ### /get_blog_count (unique API End point) It results total number of words & characters of a steemit post/blog. | parameters | type | details | |-------------|--------|-------------------| | url | string | steemit post url | API https://api.steemtools.cf/get_blog_count?url=value Example Result ``` { "name": "nawab69", "url": "https:\/\/steemit.com\/utopian-io\/@nawab69\/steemtools-check-account-status-for-blacklist-tool-building-tutorial-part-9", "total_words": 1202, "total_char": 9701, "net_votes": 120 } ``` CURL Command ``` curl -X GET -v -i 'http://api.steemtools.cf/get_blog_count?url=value' ``` ---- ### /get_active_votes | parameters | type | details | |-------------|--------|-------------------| | author | string | steemit post author name | | permlink | string | post permlink | API https://api.steemtools.cf/get_active_votes?author=value&permlink=value Example Result ``` [ {"voter":"tombstone","weight":183546,"rshares":"2528467723996","percent":1068,"reputation":0,"time":"2019-03-01T11:07:06"},{"voter":"roy2016","weight":122632,"rshares":"128588800380","percent":2500,"reputation":0,"time":"2019-02-28T21:54:06"},{"voter":"techslut","weight":51310,"rshares":"66325979308","percent":2000,"reputation":0,"time":"2019-02-28T22:50:12"} ] ``` CURL Command ``` curl -X GET -v -i 'http://api.steemtools.cf/get_active_votes?author=value&permlink=value' ``` ----- ### /get_accounts | parameters | type | details | |-------------|--------|-------------------| | account | string | user account name | API: https://api.steemtools.cf/get_accounts?account=value Example Result ``` [{"id":1160113,"name":"nawab69","owner":{"weight_threshold":1,"account_auths":[],"key_auths":[["STM5Q1cCzmr7dQmJZSrJA7wDaaZc2KpqW2o8RbkDmHugHnXLAKEuX",1]]},"active":{"weight_threshold":1,"account_auths":[],"key_auths":[["STM7GURmxTARsCX3tgRJ6rAcYpswc4HXmiw2mUpHMuuMsTkR6JMFX",1]]},"posting":{"weight_threshold":1,"account_auths":[["actifit.app",1],["busy.app",1],["dtube.app",1],["esteem-app",1],["fundition.app",1],["knacksteem.app",1],["partiko-steemcon",1],["peakmonsters.app",1],["smartsteem",1],["steeditor.app",1],["steem.app",1]],"key_auths":[["STM6NUNNqHkfC3zDhAiW9TK8SiUMWbAkrqe2TguNH8PgB7ZwMdKqH",1]]},"memo_key":"STM8FVULWcdLukbJ5BhJQZpXWPGiLfRzz5vyAeawnunDr8t7Nk2jZ","json_metadata":"{\"profile\":{\"name\":\"Nawab\",\"about\":\"A professional web application developer. Frontend and Backend Developer. Software Engineer. Game Developer. Nodejs, reactjs and blockchain Developer.\",\"website\":\"https:\/\/steemtools.cf\",\"location\":\"UK\",\"cover_image\":\"https:\/\/cdn.steemitimages.com\/DQmQdxKgsJXHUstxoei8sPAV4YFr7hWfgCosckkqxBtfCe8\/images%20(9).jpeg\",\"profile_image\":\"https:\/\/cdn.steemitimages.com\/DQmPJzT9qae7sDGi1YzB3MxjRbGdY84jkqcGYhb6D8oBdqD\/483127560-612x612.jpg\"}}","proxy":"","last_owner_update":"1970-01-01T00:00:00","last_account_update":"2019-02-14T04:33:27","created":"2018-10-28T13:04:24","mined":false,"recovery_account":"blocktrades","last_account_recovery":"1970-01-01T00:00:00","reset_account":"null","comment_count":0,"lifetime_vote_count":0,"post_count":42,"can_vote":true,"voting_manabar":{"current_mana":"187499397255","last_update_time":1551712185},"voting_power":7885,"balance":"8.228 STEEM","savings_balance":"0.000 STEEM","sbd_balance":"0.591 SBD","sbd_seconds":"73132113","sbd_seconds_last_update":"2019-03-04T13:28:45","sbd_last_interest_payment":"2019-02-21T02:37:39","savings_sbd_balance":"0.000 SBD","savings_sbd_seconds":"0","savings_sbd_seconds_last_update":"1970-01-01T00:00:00","savings_sbd_last_interest_payment":"1970-01-01T00:00:00","savings_withdraw_requests":0,"reward_sbd_balance":"0.000 SBD","reward_steem_balance":"0.000 STEEM","reward_vesting_balance":"4.005786 VESTS","reward_vesting_steem":"0.002 STEEM","vesting_shares":"239814.319762 VESTS","delegated_vesting_shares":"0.000000 VESTS","received_vesting_shares":"13747.039293 VESTS","vesting_withdraw_rate":"15787.521634 VESTS","next_vesting_withdrawal":"2019-03-11T12:40:21","withdrawn":"15787521634","to_withdraw":"205237781243","withdraw_routes":0,"curation_rewards":46,"posting_rewards":288222,"proxied_vsf_votes":[0,0,0,0],"witnesses_voted_for":13,"last_post":"2019-02-28T20:23:27","last_root_post":"2019-02-28T20:23:27","last_vote_time":"2019-03-04T15:09:45","post_bandwidth":0,"pending_claimed_accounts":0,"vesting_balance":"0.000 STEEM","reputation":"4428501705143","transfer_history":[],"market_history":[],"post_history":[],"vote_history":[],"other_history":[],"witness_votes":["abit","bhuz","blocktrades","busy.witness","curie","good-karma","pharesim","reggaemuffin","steemitboard","themarkymark","therealwolf","utopian-io","yabapmatt"],"tags_usage":[],"guest_bloggers":[]}] ``` Curl Command ``` curl -X GET -v -i 'https://api.steemtools.cf/get_accounts?account=value' ``` ----- ### Technology Stack This REST API has built with php & JSON . ### Roadmap One and only roadmap is bring all steemjs rest api to steemtools api. And also make some new api endpoints ### Pull - Request https://github.com/nawab69/steemtools/pull/3 ### Commits https://github.com/nawab69/steemtools/commit/f5e8c9de92c684752b3a8b0b0bfe7c483ae8e940#diff-db974238714ca8de634a7ce1d083a14f ### Bug-Fixing I have fixed the cross browser issue and change the api to tower api. Because steemjs api stopped working. https://github.com/nawab69/steemtools/commit/f5e8c9de92c684752b3a8b0b0bfe7c483ae8e940#diff-f1865b282ce3dc44114413600a9016ad ### Github Account https://github.com/nawab69 
author | nawab69 |
---|---|
permlink | steemtools-rest-api-has-been-released |
category | utopian-io |
json_metadata | {"tags":["utopian-io","development","documentation","abuse","steem"],"image":["https://cdn.steemitimages.com/DQmeSWyKLaajUN3xSPJR7VvJgzteks2TsGJwGFEbSuZjFEj/PicsArt_03-04-09.27.32.png","https://cdn.steemitimages.com/DQmcywAbz981ro3VXYQ92RKjKrWdvfRHGUbY7MfAdBTqWoD/steemtools%20logotype2.png"],"links":["https://github.com/nawab69/steemtools","https://api.steemtools.cf","https://api.steemtools.cf/get_withdraw_routes?account=value","https://api.steemtools.cf/get_volume","https://api.steemtools.cf/get_vesting_delegations?account=value&start=value&limit=value","https://api.steemtools.cf/get_version","https://api.steemtools.cf/get_trending_tags?start=value&limit=value","https://api.steemtools.cf/get_trade_history?start=value&end=value","https://api.steemtools.cf/get_ticker","https://api.steemtools.cf/get_recovery_request?account=value","https://api.steemtools.cf/get_savings_withdraw_to?account=value","https://api.steemtools.cf/get_savings_withdraw_from?account=value","https://api.steemtools.cf/get_account_count","https://api.steemtools.cf/get_blog_count?url=value","https://api.steemtools.cf/get_active_votes?author=value&permlink=value","https://api.steemtools.cf/get_accounts?account=value","https://github.com/nawab69/steemtools/pull/3","https://github.com/nawab69/steemtools/commit/f5e8c9de92c684752b3a8b0b0bfe7c483ae8e940#diff-db974238714ca8de634a7ce1d083a14f","https://github.com/nawab69/steemtools/commit/f5e8c9de92c684752b3a8b0b0bfe7c483ae8e940#diff-f1865b282ce3dc44114413600a9016ad","https://github.com/nawab69"],"app":"steemit/0.1","format":"markdown"} |
created | 2019-03-04 18:14:36 |
last_update | 2019-03-04 18:14:36 |
depth | 0 |
children | 5 |
last_payout | 2019-03-11 18:14:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 33.434 HBD |
curator_payout_value | 10.772 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 11,661 |
author_reputation | 6,544,308,216,591 |
root_title | "SteemTools Rest API has been Released" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 80,736,051 |
net_rshares | 62,950,352,435,550 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
berkah | 0 | 5,865,514,596 | 100% | ||
tombstone | 0 | 4,049,439,314,127 | 17.02% | ||
hossary | 0 | 337,883,290,843 | 100% | ||
kaylinart | 0 | 188,621,190,671 | 100% | ||
najoh | 0 | 8,447,892,943 | 100% | ||
warofcraft | 0 | 29,140,579,899 | 20% | ||
achim86 | 0 | 11,735,736,430 | 100% | ||
roy2016 | 0 | 300,761,853,712 | 50% | ||
abh12345 | 0 | 27,453,776,905 | 4.25% | ||
justyy | 0 | 235,860,399,338 | 10% | ||
techslut | 0 | 84,392,423,170 | 20% | ||
minersean | 0 | 5,224,182,149 | 75% | ||
gligli060 | 0 | 3,137,935,136 | 100% | ||
erikaflynn | 0 | 14,428,600,872 | 35% | ||
stevennoppebrian | 0 | 2,670,778,729 | 100% | ||
sixexgames | 0 | 5,798,072,587 | 100% | ||
seongbuk | 0 | 6,522,256,938 | 100% | ||
kimsunggil | 0 | 2,983,603,949 | 100% | ||
miniature-tiger | 0 | 117,968,383,567 | 50% | ||
neander-squirrel | 0 | 123,188,703,239 | 100% | ||
jakipatryk | 0 | 14,326,352,325 | 50% | ||
linuslee0216 | 0 | 3,417,280,790 | 100% | ||
mynaturebody | 0 | 82,170,500,876 | 100% | ||
helo | 0 | 10,081,595,924 | 4.69% | ||
walnut1 | 0 | 46,708,360,458 | 21.27% | ||
yoonwonlim | 0 | 4,052,034,511 | 100% | ||
lorenzor | 0 | 1,071,909,264 | 10.63% | ||
cryptolife1 | 0 | 88,231,316,711 | 100% | ||
suesa | 0 | 113,323,405,694 | 25% | ||
paphatchaya | 0 | 3,606,939,263 | 100% | ||
codingdefined | 0 | 28,683,125,333 | 20% | ||
tsoldovieri | 0 | 1,545,518,289 | 10.63% | ||
tykee | 0 | 11,042,947,956 | 21.27% | ||
dailygrcstats | 0 | 3,515,689,849 | 100% | ||
foruni73 | 0 | 56,676,357,006 | 100% | ||
iamphysical | 0 | 14,262,051,520 | 90% | ||
felixrodriguez | 0 | 756,009,715 | 7.44% | ||
dream.trip | 0 | 3,087,572,808 | 100% | ||
leir | 0 | 2,046,395,945 | 50% | ||
taznbash | 0 | 487,064,061 | 100% | ||
azulear | 0 | 460,184,415 | 100% | ||
silviu93 | 0 | 5,237,780,447 | 21.27% | ||
eastmael | 0 | 7,337,726,439 | 50% | ||
espoem | 0 | 34,674,690,846 | 19.03% | ||
cassyjanine | 0 | 2,336,215,071 | 100% | ||
mcfarhat | 0 | 3,396,626,407 | 1.87% | ||
hannesl | 0 | 5,352,158,753 | 100% | ||
thegoliath | 0 | 24,254,475,329 | 100% | ||
vishalsingh4997 | 0 | 180,350,963 | 21.27% | ||
orhun | 0 | 244,678,998 | 49% | ||
interestinginfo | 0 | 187,519,073 | 40% | ||
teddieelga | 0 | 196,568,141 | 41% | ||
dawnasheelagh | 0 | 220,623,570 | 45% | ||
doryaeriell | 0 | 70,633,948 | 20% | ||
valenesiana | 0 | 149,046,013 | 33% | ||
eolandananni | 0 | 76,665,645 | 21% | ||
agnessejanot | 0 | 58,570,553 | 18% | ||
juninalethia | 0 | 233,489,776 | 47% | ||
elladinenolana | 0 | 160,606,693 | 35% | ||
elear | 0 | 6,618,321,227 | 42.55% | ||
zoneboy | 0 | 11,453,225,645 | 50% | ||
lrd | 0 | 2,743,940,243 | 100% | ||
armadillocreek | 0 | 3,578,868,900 | 100% | ||
carlos84 | 0 | 1,325,712,753 | 21.27% | ||
skycranehandwork | 0 | 47,519,743,590 | 100% | ||
che-shyr | 0 | 772,003,843 | 50% | ||
utopian-io | 0 | 53,103,980,966,345 | 42.55% | ||
jaff8 | 0 | 9,587,926,582 | 4.69% | ||
racdaolato1976 | 0 | 244,678,998 | 49% | ||
lifernesec1973 | 0 | 154,471,142 | 34% | ||
fueprojacan1988 | 0 | 142,443,427 | 32% | ||
marshalllife | 0 | 7,532,669,210 | 100% | ||
funnytime | 0 | 88,729,040 | 23% | ||
artworld | 0 | 227,069,992 | 46% | ||
naturecenter | 0 | 124,919,224 | 29% | ||
traveled | 0 | 191,267,895 | 40% | ||
kubi | 0 | 210,728,275 | 46% | ||
healthylifes | 0 | 230,549,381 | 47% | ||
mariano35 | 0 | 244,678,998 | 49% | ||
montecarlo35 | 0 | 160,484,999 | 35% | ||
franchescasacco | 0 | 214,609,713 | 44% | ||
boklassen | 0 | 118,387,999 | 28% | ||
nejdat | 0 | 208,595,856 | 43% | ||
liverehab | 0 | 5,953,773,770 | 100% | ||
aneilpatel | 0 | 4,068,010,184 | 100% | ||
foodstall | 0 | 191,608,892 | 40% | ||
healthyfoods | 0 | 0 | 47% | ||
artdirector | 0 | 70,543,975 | 20% | ||
art-is | 0 | 64,516,776 | 19% | ||
ecocoin | 0 | 219,198,116 | 46% | ||
xplay | 0 | 40,958,855 | 44% | ||
cryptoocurrency | 0 | 163,585,415 | 37% | ||
newsrx | 0 | 165,526,414 | 11.11% | ||
newsbitcoin | 0 | 158,618,378 | 48% | ||
everdayfood | 0 | 173,552,240 | 37% | ||
lowlylutfur | 0 | 2,116,021,147 | 100% | ||
amestyj | 0 | 503,510,580 | 10.63% | ||
sandracarrascal | 0 | 63,708,964 | 21.27% | ||
odl | 0 | 1,138,104,028 | 41% | ||
akshaykumar12257 | 0 | 60,578,855,627 | 100% | ||
ajayyy | 0 | 580,912,342 | 10.63% | ||
steemnews-fr | 0 | 4,267,266,182 | 100% | ||
bilgi | 0 | 245,260,158 | 49% | ||
eksisozluk | 0 | 112,855,829 | 27% | ||
sohbet | 0 | 94,760,737 | 24% | ||
ilginc | 0 | 184,894,351 | 40% | ||
onedio | 0 | 229,659,304 | 48% | ||
bursa | 0 | 70,633,948 | 20% | ||
osmanli | 0 | 227,458,079 | 46% | ||
mrswhale | 0 | 1,163,443,658 | 28% | ||
bitcoinfast | 0 | 106,939,613 | 26% | ||
ohadiyorum | 0 | 136,982,619 | 31% | ||
ucanis | 0 | 3,251,574,274 | 100% | ||
alexs1320 | 0 | 70,205,898,209 | 51% | ||
gentleshaid | 0 | 32,990,213,017 | 42.55% | ||
memobi | 0 | 247,734,924 | 21% | ||
ivymalifred | 0 | 310,582,982 | 10.63% | ||
ennyta | 0 | 98,518,315 | 10.63% | ||
walner | 0 | 2,404,260,550 | 100% | ||
sistem | 0 | 5,778,370,643 | 100% | ||
amosbastian | 0 | 13,752,969,734 | 4.69% | ||
eliaschess333 | 0 | 1,909,869,638 | 10.63% | ||
ydavgonzalez | 0 | 394,451,097 | 1.06% | ||
jesusjacr | 0 | 49,045,154,040 | 100% | ||
rondras | 0 | 130,394,860,047 | 100% | ||
smartmarket | 0 | 189,864,430,847 | 1.91% | ||
isaganispeaks | 0 | 2,861,008,467 | 100% | ||
scienceangel | 0 | 72,405,417,357 | 50% | ||
mariginal | 0 | 76,881,001 | 21% | ||
zkan | 0 | 119,926,331 | 34% | ||
kaanight | 0 | 227,896,876 | 46% | ||
portugalcoin | 0 | 13,216,883,948 | 15% | ||
safedeposit | 0 | 2,881,106,301 | 100% | ||
sargoon | 0 | 1,569,044,642 | 100% | ||
tobias-g | 0 | 124,920,645,484 | 40% | ||
andrea97 | 0 | 1,924,256,642 | 100% | ||
yrmaleza | 0 | 72,062,981 | 10.63% | ||
miguelangel2801 | 0 | 126,178,235 | 10.63% | ||
didic | 0 | 29,640,869,554 | 25% | ||
raasmyn | 0 | 3,707,188,915 | 100% | ||
kerimcaglar | 0 | 90,895,543 | 24% | ||
darkdrake | 0 | 3,381,574,209 | 100% | ||
emiliomoron | 0 | 580,835,051 | 10.63% | ||
sylinda | 0 | 151,465,668 | 38% | ||
cst90 | 0 | 3,241,886,946 | 100% | ||
hyperfundit | 0 | 3,678,006,805 | 100% | ||
endopediatria | 0 | 108,483,807 | 4.25% | ||
desmoniac | 0 | 5,487,006,026 | 100% | ||
tomastonyperez | 0 | 2,165,834,975 | 10.63% | ||
dragraff | 0 | 1,958,448,990 | 100% | ||
elvigia | 0 | 1,973,571,985 | 10.63% | ||
lucky2015 | 0 | 157,870,077,809 | 100% | ||
z3ll | 0 | 1,616,054,766 | 100% | ||
geadriana | 0 | 87,728,728 | 3.19% | ||
justlibby | 0 | 3,697,929,017 | 100% | ||
josedelacruz | 0 | 879,114,603 | 10.63% | ||
viannis | 0 | 294,598,699 | 10.63% | ||
megalithic | 0 | 5,329,942,960 | 100% | ||
tamer5461 | 0 | 131,258,573 | 30% | ||
wisex | 0 | 28,574,859 | 24% | ||
erickyoussif | 0 | 926,669,330 | 21.27% | ||
ashtray34 | 0 | 162,592,063 | 42% | ||
khalifaimaman | 0 | 31,117,029,140 | 100% | ||
simay | 0 | 208,984,113 | 43% | ||
zapzap | 0 | 2,885,119,621 | 100% | ||
hodlorbust | 0 | 2,141,170,751 | 100% | ||
promotedpost | 0 | 103,491,522,748 | 70% | ||
clone92 | 0 | 6,423,371,672 | 100% | ||
anaestrada12 | 0 | 3,339,027,668 | 21.27% | ||
moneybaby | 0 | 110,864,119 | 5% | ||
joelsegovia | 0 | 577,053,101 | 10.63% | ||
bflanagin | 0 | 3,473,649,755 | 21.27% | ||
dugan | 0 | 4,069,047,697 | 100% | ||
anigaver | 0 | 2,740,809,632 | 100% | ||
denise.moreno | 0 | 136,982,619 | 31% | ||
byronberry85 | 0 | 88,729,040 | 23% | ||
christopheres77 | 0 | 251,584,868 | 50% | ||
eleanorastro | 0 | 82,697,342 | 22% | ||
chloe.burton | 0 | 165,278,545 | 36% | ||
andy.aldwell | 0 | 88,728,280 | 23% | ||
sebastiangrant91 | 0 | 179,204,500 | 38% | ||
marthagomez | 0 | 58,570,553 | 18% | ||
paulaharvey | 0 | 179,204,500 | 38% | ||
jeffrhodes2000 | 0 | 118,886,602 | 28% | ||
cjsho95 | 0 | 105,812,675,280 | 100% | ||
deex.exchange | 0 | 72,060,729 | 20% | ||
dalz | 0 | 6,640,062,967 | 17.02% | ||
budajored | 0 | 78,042,266 | 29% | ||
ulockblock | 0 | 31,468,283,947 | 10.48% | ||
amart29 | 0 | 791,295,763 | 7.08% | ||
mehmetellibes | 0 | 76,539,383 | 21% | ||
sabri99 | 0 | 124,744,863 | 29% | ||
musakul | 0 | 82,565,068 | 22% | ||
mahmutah | 0 | 64,488,014 | 19% | ||
sebebim | 0 | 213,859,353 | 44% | ||
kanmaz | 0 | 117,132,700 | 28% | ||
suzannn | 0 | 130,770,548 | 30% | ||
busrae | 0 | 136,794,344 | 31% | ||
handee | 0 | 88,589,352 | 23% | ||
osmanboz | 0 | 112,691,848 | 27% | ||
sezercik | 0 | 112,686,009 | 27% | ||
ozgurinsan | 0 | 106,660,601 | 26% | ||
yazarimsi | 0 | 191,016,310 | 40% | ||
susuzyaz | 0 | 88,584,378 | 23% | ||
yuzuklerim | 0 | 182,694,519 | 39% | ||
lalesu | 0 | 133,743,581 | 31% | ||
nazann | 0 | 166,916,915 | 36% | ||
leylakk | 0 | 64,483,927 | 19% | ||
konyali | 0 | 245,248,023 | 49% | ||
sonbaharr | 0 | 148,838,456 | 33% | ||
agathaa | 0 | 94,612,015 | 24% | ||
kaplan513 | 0 | 70,509,397 | 20% | ||
bahcesaray | 0 | 227,171,613 | 46% | ||
tekinomer | 0 | 100,635,194 | 25% | ||
sahinmahmut | 0 | 154,863,863 | 34% | ||
cakir994 | 0 | 136,789,566 | 31% | ||
hazinson | 0 | 112,687,686 | 27% | ||
masallar | 0 | 209,095,204 | 43% | ||
bensucani | 0 | 239,222,553 | 48% | ||
kaanyilmaz | 0 | 82,560,337 | 22% | ||
beneklikopek | 0 | 245,248,023 | 49% | ||
sacvar | 0 | 191,016,310 | 40% | ||
dssdsds | 0 | 3,220,041,048 | 21.27% | ||
jayplayco | 0 | 11,036,381,006 | 21.27% | ||
kerimkan | 0 | 208,992,656 | 43% | ||
salihbag | 0 | 123,032,425 | 29% | ||
temizyurek | 0 | 82,507,871 | 22% | ||
sonuncukus | 0 | 178,877,231 | 38% | ||
somuncubaba | 0 | 190,923,401 | 40% | ||
cryptouno | 0 | 519,812,179 | 5% | ||
fran.frey | 0 | 340,832,339 | 10.63% | ||
mops2e | 0 | 192,113,708 | 15.22% | ||
jrevilla | 0 | 134,023,452 | 21.27% | ||
bottomse1 | 0 | 196,687,549 | 41% | ||
cynonw | 0 | 244,821,705 | 49% | ||
wellowe2 | 0 | 70,335,390 | 20% | ||
carwinleys | 0 | 184,654,010 | 39% | ||
marskef | 0 | 208,721,088 | 43% | ||
seatong | 0 | 190,670,780 | 40% | ||
milldc | 0 | 130,503,085 | 30% | ||
beverleyer | 0 | 238,804,936 | 48% | ||
beldondf | 0 | 94,402,468 | 24% | ||
hodgees | 0 | 190,670,780 | 40% | ||
artledr | 0 | 142,536,624 | 32% | ||
coledaletu | 0 | 82,368,929 | 22% | ||
oughtershawuas5 | 0 | 58,301,851 | 18% | ||
greasbyas | 0 | 94,402,468 | 24% | ||
harleyses90 | 0 | 227,692,353 | 47% | ||
blackhazelse | 0 | 154,570,163 | 34% | ||
scotchells | 0 | 142,536,624 | 32% | ||
badseyse | 0 | 142,536,624 | 32% | ||
blackwaterses90 | 0 | 142,536,624 | 32% | ||
livertonses | 0 | 64,318,621 | 19% | ||
cottonshope | 0 | 112,452,776 | 27% | ||
skeltone | 0 | 232,788,166 | 47% | ||
powas | 0 | 238,804,936 | 48% | ||
tarretef | 0 | 94,402,468 | 24% | ||
elleres | 0 | 244,819,972 | 49% | ||
valleyes | 0 | 232,788,166 | 47% | ||
scandaled | 0 | 94,402,468 | 24% | ||
hindwelleg | 0 | 202,702,834 | 42% | ||
easingtoneg | 0 | 82,368,151 | 22% | ||
luptoneg | 0 | 64,317,949 | 19% | ||
emraleg | 0 | 182,453,415 | 39% | ||
stennackeg | 0 | 130,503,085 | 30% | ||
lillyet | 0 | 82,368,151 | 22% | ||
uswayet | 0 | 154,570,163 | 34% | ||
lydelandet | 0 | 76,052,881 | 21% | ||
goldmirerr | 0 | 160,585,695 | 35% | ||
venfordef | 0 | 196,683,450 | 41% | ||
houxtyer | 0 | 148,552,226 | 33% | ||
birkiner | 0 | 58,301,215 | 18% | ||
peaseyo | 0 | 76,350,060 | 21% | ||
hammondo | 0 | 226,769,770 | 46% | ||
heachamo | 0 | 238,803,238 | 48% | ||
umborneo | 0 | 118,466,746 | 28% | ||
risedaleo | 0 | 232,783,467 | 47% | ||
cardinhamo | 0 | 226,769,770 | 46% | ||
amkol | 0 | 82,368,151 | 22% | ||
bedburnk | 0 | 226,769,770 | 46% | ||
backk | 0 | 118,468,556 | 28% | ||
follye | 0 | 196,686,099 | 41% | ||
hetherg | 0 | 118,468,556 | 28% | ||
bowg | 0 | 130,502,024 | 30% | ||
savickg | 0 | 58,300,051 | 18% | ||
womse | 0 | 82,366,729 | 22% | ||
pilleri | 0 | 130,500,085 | 30% | ||
brislingtone | 0 | 142,535,492 | 32% | ||
pinsleye | 0 | 232,783,467 | 47% | ||
arklee | 0 | 184,652,631 | 39% | ||
chyandourere | 0 | 70,334,683 | 20% | ||
skirdene | 0 | 244,816,806 | 49% | ||
egfordr | 0 | 142,535,492 | 32% | ||
borrowe | 0 | 172,619,163 | 37% | ||
jubileerr | 0 | 250,836,706 | 50% | ||
dowlessr | 0 | 166,602,429 | 36% | ||
roeyue | 0 | 172,616,772 | 37% | ||
ridleesy | 0 | 94,400,068 | 24% | ||
dittony | 0 | 184,652,631 | 39% | ||
trevillety | 0 | 100,416,738 | 25% | ||
baileyy | 0 | 178,635,897 | 38% | ||
amicomber | 0 | 106,435,088 | 26% | ||
lamtrs | 0 | 64,317,949 | 19% | ||
stonethwaitet | 0 | 226,766,797 | 46% | ||
colnet | 0 | 190,669,365 | 40% | ||
gairt | 0 | 184,652,631 | 39% | ||
pilesr | 0 | 142,533,424 | 32% | ||
wellhamsr | 0 | 238,800,136 | 48% | ||
sleightholmer | 0 | 232,783,467 | 47% | ||
carrockr | 0 | 226,769,770 | 46% | ||
trentr | 0 | 64,316,721 | 19% | ||
stonegaterr | 0 | 76,350,060 | 21% | ||
crippsu | 0 | 154,568,961 | 34% | ||
cowfoldu | 0 | 81,071,862 | 22% | ||
yewdaleu | 0 | 100,416,738 | 25% | ||
todde | 0 | 76,350,060 | 21% | ||
kingstone | 0 | 208,719,568 | 43% | ||
abbeye | 0 | 106,464,501 | 26% | ||
avone | 0 | 244,819,972 | 49% | ||
pulworthye | 0 | 124,483,416 | 29% | ||
billinghame | 0 | 196,686,099 | 41% | ||
fiveheade | 0 | 190,669,365 | 40% | ||
earbye | 0 | 82,368,151 | 22% | ||
cheatones | 0 | 238,803,238 | 48% | ||
sleightholmes | 0 | 82,366,729 | 22% | ||
hollocombes | 0 | 232,786,504 | 47% | ||
eyesi | 0 | 202,702,834 | 42% | ||
barneysi | 0 | 112,451,822 | 27% | ||
lamornas | 0 | 152,524,692 | 34% | ||
bottomses | 0 | 226,769,770 | 46% | ||
langdens | 0 | 208,719,568 | 43% | ||
barbones | 0 | 244,819,972 | 49% | ||
muddilakes | 0 | 130,502,024 | 30% | ||
hoaroaks | 0 | 124,485,290 | 29% | ||
meecese | 0 | 250,836,706 | 50% | ||
maglina | 0 | 130,502,024 | 30% | ||
churchx | 0 | 136,516,755 | 31% | ||
keasdenx | 0 | 88,383,399 | 23% | ||
erringag | 0 | 70,333,390 | 20% | ||
langworthyx | 0 | 206,704,188 | 43% | ||
whickhopez | 0 | 100,416,738 | 25% | ||
humberg | 0 | 244,816,806 | 49% | ||
blackbridgeas | 0 | 220,750,128 | 45% | ||
wheeldaleas | 0 | 100,407,248 | 25% | ||
bearleya | 0 | 184,636,661 | 39% | ||
flaghamas | 0 | 124,473,415 | 29% | ||
kingsesra | 0 | 88,374,668 | 23% | ||
hindwellag | 0 | 94,390,958 | 24% | ||
balaseer | 0 | 196,669,310 | 41% | ||
scopeg | 0 | 196,667,886 | 41% | ||
washforde | 0 | 178,608,505 | 38% | ||
swapsteem | 0 | 1,894,471,301 | 21.27% | ||
buttera | 0 | 82,344,604 | 22% | ||
seocrush | 0 | 3,524,273,894 | 100% | ||
stem-espanol | 0 | 11,702,416,024 | 21.27% | ||
antigourmet | 0 | 4,394,942,243 | 100% | ||
gasbagphenol | 0 | 82,922,954 | 22% | ||
quaintshingles | 0 | 143,342,478 | 32% | ||
tupleapplied | 0 | 227,929,812 | 46% | ||
stadiumadorable | 0 | 137,300,526 | 31% | ||
firsthandtokens | 0 | 209,803,955 | 43% | ||
ophiuchusd | 0 | 209,803,955 | 43% | ||
davidpleasing | 0 | 179,594,193 | 38% | ||
handshakecheese | 0 | 173,552,240 | 37% | ||
delightedcrude | 0 | 143,342,478 | 32% | ||
chamoisbind | 0 | 173,552,240 | 37% | ||
spongestriped | 0 | 227,929,812 | 46% | ||
slugarse | 0 | 179,594,193 | 38% | ||
pedlarbaked | 0 | 185,636,145 | 39% | ||
wanservices | 0 | 101,048,811 | 25% | ||
hoaryheap | 0 | 64,797,097 | 19% | ||
broncohorseshoes | 0 | 173,552,240 | 37% | ||
centroidmango | 0 | 107,090,764 | 26% | ||
weightscrucible | 0 | 179,594,193 | 38% | ||
saucesparliament | 0 | 58,755,144 | 18% | ||
oakumdumplings | 0 | 107,090,764 | 26% | ||
mulleredclash | 0 | 221,887,860 | 45% | ||
gazelleplug | 0 | 183,382,220 | 39% | ||
hospitablegorill | 0 | 149,384,431 | 33% | ||
sharepheasant | 0 | 143,342,478 | 32% | ||
stressfootprints | 0 | 209,803,955 | 43% | ||
cheepingteammate | 0 | 221,887,860 | 45% | ||
booleansport | 0 | 215,845,907 | 44% | ||
desirednumberles | 0 | 185,636,145 | 39% | ||
ensignpancakes | 0 | 240,013,717 | 48% | ||
halleyovenbird | 0 | 64,634,888 | 19% | ||
nearwhimsical | 0 | 101,048,811 | 25% | ||
lateenburger | 0 | 173,552,240 | 37% | ||
elbrusgases | 0 | 137,300,526 | 31% | ||
pickaxesgorbelli | 0 | 221,887,860 | 45% | ||
crystallineslove | 0 | 149,384,431 | 33% | ||
permitborrowing | 0 | 64,797,097 | 19% | ||
chippingkernel | 0 | 233,971,765 | 47% | ||
transitabscisic | 0 | 213,458,833 | 44% | ||
pridefulquantum | 0 | 167,510,288 | 36% | ||
placespotters | 0 | 252,097,622 | 50% | ||
tunalink | 0 | 58,755,144 | 18% | ||
vietnameselength | 0 | 93,687,900 | 24% | ||
royalstrict | 0 | 209,803,955 | 43% | ||
biggestitalic | 0 | 209,803,955 | 43% | ||
muddypops | 0 | 58,755,144 | 18% | ||
crudepaltry | 0 | 246,055,669 | 49% | ||
querulousfeedbag | 0 | 173,552,240 | 37% | ||
livinggraves | 0 | 161,468,335 | 35% | ||
alkaliscancer | 0 | 101,048,811 | 25% | ||
suggestflowery | 0 | 197,720,050 | 41% | ||
bowlingvitamin | 0 | 209,803,955 | 43% | ||
physicianisraeli | 0 | 137,300,526 | 31% | ||
politedeleted | 0 | 88,964,906 | 23% | ||
reticuluminspire | 0 | 58,755,144 | 18% | ||
shockingmushroom | 0 | 191,678,098 | 40% | ||
buyerbury | 0 | 143,342,478 | 32% | ||
snarlinghawking | 0 | 119,174,668 | 28% | ||
fizzytrophic | 0 | 197,720,050 | 41% | ||
growconstruction | 0 | 173,552,240 | 37% | ||
buttersailboat | 0 | 131,258,573 | 30% | ||
doughycommittee | 0 | 179,594,193 | 38% | ||
ursaprune | 0 | 185,636,145 | 39% | ||
forestsuranus | 0 | 197,720,050 | 41% | ||
harshhijack | 0 | 101,048,811 | 25% | ||
respirationgrist | 0 | 240,013,717 | 48% | ||
festivalsymbolic | 0 | 95,006,859 | 24% | ||
powerlessurinal | 0 | 233,971,765 | 47% | ||
valueboo | 0 | 76,881,001 | 21% | ||
motorboatperegri | 0 | 240,013,717 | 48% | ||
untimelyweenie | 0 | 252,097,622 | 50% | ||
plaguefacts | 0 | 88,964,906 | 23% | ||
yeomanross | 0 | 252,097,622 | 50% | ||
postsspeaking | 0 | 131,258,573 | 30% | ||
snowflakebew | 0 | 209,803,955 | 43% | ||
capitalistcities | 0 | 57,779,369 | 18% | ||
dufferpastebin | 0 | 119,174,668 | 28% | ||
wickedexponent | 0 | 240,013,717 | 48% | ||
pentagonyummy | 0 | 82,922,954 | 22% | ||
robibm | 0 | 82,922,954 | 22% | ||
quartilevariscan | 0 | 155,426,383 | 34% | ||
frapnitrate | 0 | 101,048,811 | 25% | ||
wildfowlpampers | 0 | 64,797,097 | 19% | ||
hurdlecranky | 0 | 64,797,097 | 19% | ||
mitralancestor | 0 | 246,055,669 | 49% | ||
popcorntrumpet | 0 | 197,720,050 | 41% | ||
toesoverripe | 0 | 82,922,954 | 22% | ||
scalyfunds | 0 | 107,090,764 | 26% | ||
paganlumber | 0 | 143,342,478 | 32% | ||
officebastard | 0 | 227,929,812 | 46% | ||
wycollerk | 0 | 233,971,765 | 47% | ||
covenflick | 0 | 243,930,236 | 49% | ||
tugofwarambivale | 0 | 82,922,954 | 22% | ||
discontentbimbo | 0 | 179,594,193 | 38% | ||
eggthorny | 0 | 137,300,526 | 31% | ||
cabotmurder | 0 | 185,636,145 | 39% | ||
newlyn | 0 | 215,845,907 | 44% | ||
ethanoatestress | 0 | 119,174,668 | 28% | ||
spacersmoussier | 0 | 252,097,622 | 50% | ||
hoveramphora | 0 | 179,594,193 | 38% | ||
remorsefulart | 0 | 227,929,812 | 46% | ||
titteringgorilla | 0 | 143,342,478 | 32% | ||
liuzhixiang | 0 | 598,610,416 | 18.18% | ||
up1 | 0 | 913,703,912 | 2.29% | ||
liucixin | 0 | 609,042,620 | 5% | ||
merlin7 | 0 | 268,108,985 | 0.01% | ||
steemjetmedia | 0 | 381,595,137,370 | 100% | ||
mco | 0 | 1,035,920,490 | 12.97% | ||
steem-ua | 0 | 1,144,829,260,323 | 11.11% | ||
giulyfarci52 | 0 | 180,728,728 | 10.63% | ||
lereve | 0 | 987,596,236 | 0.84% | ||
kaczynski | 0 | 107,550,849 | 100% | ||
kamo.munshi | 0 | 2,197,570,012 | 100% | ||
dvf-1 | 0 | 120,138,617,721 | 100% | ||
steemrente | 0 | 21,678,448,698 | 100% | ||
jaffgrah | 0 | 3,062,454,293 | 100% | ||
alex-hm | 0 | 905,889,196 | 50% | ||
kakakk | 0 | 3,195,499,269 | 21.27% | ||
mrsbozz | 0 | 165,182,638 | 6% | ||
ascorphat | 0 | 2,116,011,573 | 2.5% | ||
smartmonsters | 0 | 187,408,418,310 | 46.82% | ||
thistle-rock | 0 | 9,174,219,567 | 100% | ||
eugenezh | 0 | 2,115,889,804 | 100% | ||
circa | 0 | 134,899,669,178 | 100% | ||
rewarding | 0 | 6,449,077,711 | 71.27% | ||
igbotier | 0 | 2,994,002,367 | 100% | ||
someaddons | 0 | 7,531,449,997 | 100% | ||
shadonchandra | 0 | 3,339,122,424 | 100% | ||
skymin | 0 | 1,990,414,628 | 12.76% | ||
dvf-ventures-2 | 0 | 127,767,660,664 | 100% | ||
jk6276.mons | 0 | 1,713,262,348 | 42.55% | ||
curation.trail | 0 | 1,102,435,802 | 1.8% | ||
jaxson2011 | 0 | 1,609,354,887 | 42.55% | ||
eternalinferno | 0 | 202,858,178 | 42.55% | ||
merlin4 | 0 | 8,913,870,260 | 100% | ||
anddal | 0 | 3,713,475,017 | 100% | ||
utopian.trail | 0 | 16,795,151,631 | 42.55% |
Thank you @nawab69 for your contribution!. 1. I can see you are wrapping APIs upon the official full node - which you might want to extract that into a common configuration - if the node fails, you may want to have a fall-over mechanism to try next one. 2. The header should really be before your *echo*. Otherwise, depending on network latency, sometimes the browsers may have a warning. 3. Your APIs are not unit tested - could be good to have some tests 4. You don't need the `?>` which is recommended in API, otherwise, you might accidently put extra blank lines after - which will be valid HTML outputs, and you don't want that. 5. Your `curl` code could be extracted into a function/class - this is to remove code duplication in your APIs. Your contribution has been evaluated according to [Utopian policies and guidelines](https://join.utopian.io/guidelines), as well as a predefined set of questions pertaining to the category. To view those questions and the relevant answers related to your post, [click here](https://review.utopian.io/result/3/2-2-2-2-2-2-2-). ---- Need help? Chat with us on [Discord](https://discord.gg/uTyJkNm). [[utopian-moderator]](https://join.utopian.io/)
author | justyy |
---|---|
permlink | re-nawab69-steemtools-rest-api-has-been-released-20190305t215941627z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"users":["nawab69"],"links":["https://join.utopian.io/guidelines","https://review.utopian.io/result/3/2-2-2-2-2-2-2-","https://discord.gg/uTyJkNm","https://join.utopian.io/"],"app":"steemit/0.1"} |
created | 2019-03-05 21:59:42 |
last_update | 2019-03-05 21:59:42 |
depth | 1 |
children | 1 |
last_payout | 2019-03-12 21:59:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 9.752 HBD |
curator_payout_value | 3.123 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,196 |
author_reputation | 280,616,224,641,976 |
root_title | "SteemTools Rest API has been Released" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 80,789,834 |
net_rshares | 17,036,773,934,709 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
happyukgo | 0 | 512,643,921 | 25% | ||
mys | 0 | 4,139,517,442 | 4.82% | ||
codingdefined | 0 | 27,969,380,558 | 20% | ||
osm0sis | 0 | 2,654,656,992 | 4% | ||
superbing | 0 | 2,571,248,833 | 25% | ||
dailyfortune | 0 | 36,589,568 | 25% | ||
espoem | 0 | 28,449,739,521 | 15% | ||
dailystats | 0 | 7,541,504,571 | 25% | ||
utopian-io | 0 | 16,818,066,523,672 | 12.11% | ||
jaff8 | 0 | 44,300,651,241 | 21.05% | ||
zapncrap | 0 | 2,843,106,146 | 4% | ||
amosbastian | 0 | 63,701,458,924 | 21.05% | ||
curx | 0 | 2,712,055,191 | 4% | ||
dailychina | 0 | 7,089,335,027 | 25% | ||
amico | 0 | 1,794,872,024 | 0.6% | ||
turtlegraphics | 0 | 2,505,361,324 | 25% | ||
ulockblock | 0 | 9,001,924,556 | 2.92% | ||
witnesstools | 0 | 2,416,700,247 | 25% | ||
ilovecoding | 0 | 2,396,622,482 | 25% | ||
curbot | 0 | 2,377,429,087 | 100% | ||
steemfuckeos | 0 | 1,563,492,060 | 25% | ||
ascorphat | 0 | 2,129,121,322 | 2.5% |
Thank you for your review, @justyy! Keep up the good work!
author | utopian-io |
---|---|
permlink | re-re-nawab69-steemtools-rest-api-has-been-released-20190305t215941627z-20190307t231328z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.17"}" |
created | 2019-03-07 23:13:30 |
last_update | 2019-03-07 23:13:30 |
depth | 2 |
children | 0 |
last_payout | 2019-03-14 23:13: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 | 58 |
author_reputation | 152,955,367,999,756 |
root_title | "SteemTools Rest API has been Released" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 80,894,398 |
net_rshares | 0 |
#### Hi @nawab69! Your post was upvoted by @steem-ua, new Steem dApp, using UserAuthority for algorithmic post curation! Your post is eligible for our upvote, thanks to our collaboration with @utopian-io! **Feel free to join our [@steem-ua Discord server](https://discord.gg/KpBNYGz)**
author | steem-ua |
---|---|
permlink | re-steemtools-rest-api-has-been-released-20190306t002824z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.18"}" |
created | 2019-03-06 00:28:27 |
last_update | 2019-03-06 00:28:27 |
depth | 1 |
children | 0 |
last_payout | 2019-03-13 00:28:27 |
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 | 286 |
author_reputation | 23,214,230,978,060 |
root_title | "SteemTools Rest API has been Released" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 80,794,204 |
net_rshares | 0 |
Congratulations @nawab69! You have completed the following achievement on the Steem blockchain and have been rewarded with new badge(s) : <table><tr><td>https://steemitimages.com/60x70/http://steemitboard.com/@nawab69/voted.png?201903060047</td><td>You received more than 1000 upvotes. Your next target is to reach 2000 upvotes.</td></tr> </table> <sub>_[Click here to view your Board](https://steemitboard.com/@nawab69)_</sub> <sub>_If you no longer want to receive notifications, reply to this comment with the word_ `STOP`</sub> **Do not miss the last post from @steemitboard:** <table><tr><td><a href="https://steemit.com/carnival/@steemitboard/carnival-2019"><img src="https://steemitimages.com/64x128/http://i.cubeupload.com/rltzHT.png"></a></td><td><a href="https://steemit.com/carnival/@steemitboard/carnival-2019">Carnival Challenge - Collect badge and win 5 STEEM</a></td></tr></table> > You can upvote this notification to help all Steem users. Learn how [here](https://steemit.com/steemitboard/@steemitboard/http-i-cubeupload-com-7ciqeo-png)!
author | steemitboard |
---|---|
permlink | steemitboard-notify-nawab69-20190306t011335000z |
category | utopian-io |
json_metadata | {"image":["https://steemitboard.com/img/notify.png"]} |
created | 2019-03-06 01:13:33 |
last_update | 2019-03-06 01:13:33 |
depth | 1 |
children | 0 |
last_payout | 2019-03-13 01:13: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 | 1,060 |
author_reputation | 38,975,615,169,260 |
root_title | "SteemTools Rest API has been Released" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 80,795,479 |
net_rshares | 0 |
Hey, @nawab69! **Thanks for contributing on Utopian**. Weβre already looking forward to your next contribution! **Get higher incentives and support Utopian.io!** Simply set @utopian.pay as a 5% (or higher) payout beneficiary on your contribution post (via [SteemPlus](https://chrome.google.com/webstore/detail/steemplus/mjbkjgcplmaneajhcbegoffkedeankaj?hl=en) or [Steeditor](https://steeditor.app)). **Want to chat? Join us on Discord https://discord.gg/h52nFrV.** <a href='https://steemconnect.com/sign/account-witness-vote?witness=utopian-io&approve=1'>Vote for Utopian Witness!</a>
author | utopian-io |
---|---|
permlink | re-steemtools-rest-api-has-been-released-20190306t002507z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.17"}" |
created | 2019-03-06 00:25:09 |
last_update | 2019-03-06 00:25:09 |
depth | 1 |
children | 0 |
last_payout | 2019-03-13 00:25:09 |
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 | 589 |
author_reputation | 152,955,367,999,756 |
root_title | "SteemTools Rest API has been Released" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 80,794,093 |
net_rshares | 0 |