Steem API – Get Curation Stats


api Steem API - Get Curation Stats API SteemIt

api

How much can you earn by upvoting steemit posts (curation) per day? You can see curation rewards for the last 7 days via (Rewards -> Curation Rewards)

I spent some time providing this handy Steem API to get the curation states i.e. replace the ID part in the URL.

https://uploadbeta.com/api/steemit/account/curation/?cached&id=justyy

It returns the JSON data

{"24hr": 2.8020695257949124, "avg": 2.6121824377557816, "7d": 18.285277064290472}

that corresponds to your curation rewards for the last 24 hours, average per day and last 7 days.

You can pass the value via a more secure POST method, like this.

1
curl -s -X POST 'https://uploadbeta.com/api/steemit/account/curation/' -d 'id=tumutanzi'
curl -s -X POST 'https://uploadbeta.com/api/steemit/account/curation/' -d 'id=tumutanzi'

More SP, more curation rewards.

{"avg": 96.34443079687016, "24hr": 91.77042842951606, "7d": 674.4110155780911}

The API fetches realtime data from Steem Blockchain unless you invoke the API via GET with parameter ?cached, which stores the cached results in the CloudFlare edge servers for an hour.

I will also integrate this in the Wechat Subscription Channel (justyyuk) and wechat daily ranking table later.

You may also like:
SteemIt Tools, APIs and Tutorial.
SteemIt 如何查看你平均的点赞数据?

–EOF (The Ultimate Computing & Technology Blog) —

GD Star Rating
loading...
331 words
Last Post: SteemSQL Tutorial - Finding Inactive Steemians that You Follow
Next Post: SQL Exercise - How to Swap Columns? (MySQL)

The Permanent URL is: Steem API – Get Curation Stats

Leave a Reply