create account

Upcoming Changes to api.steemit.com by steemitdev

View this thread on: hive.blogpeakd.comecency.com
· @steemitdev ·
Upcoming Changes to api.steemit.com
![API changes.jpg](https://cdn.steemitimages.com/DQmP3ZHBdc18DFVUzQSnyZbTME6rP4FMS8k3kNCpRuu8FTi/API%20changes.jpg) 

In as soon as 7 days (2018-12-07 23:00:00 UTC), the api.steemit.com endpoint will begin to route select steemd methods directly to hivemind. If you rely on this endpoint for any of the methods below, you should begin testing your applications against api.steemitdev.com as soon as possible.

This is in preparation for the removal of `tags` and `follows` plugins from our full nodes, the functionality of which has been ported to the hivemind service. While hivemind attempts to mimic the existing request/response format as well as all of the underlying logic, there are notable exceptions which will be outlined in this post.

As we disclosed in our [last post](https://steemit.com/steem/@ned/2fajh9-steemit-update), Steemit Inc.’s top priority is dramatically lowering the cost of running a Steem node. By routing these API calls to Hivemind, we greatly decrease the amount of resources our full nodes use. 

<h2>Background</h2>

Hive's `condenser_api` implementation goal is to port a relevant subset of steemd's `tags` and `follows` functionalities to support instances of `condenser` with minimal changes required. This allows node operators to lower `steemd` resource requirements while laying the infrastructure for next-generation social APIs.

While we have attempted to ensure relevant data is still available, in some cases this is simply impossible. A prime example of this is the `get_state` call, whose response is a monolith which attempts to account for an extremely wide variety of data. Portions of the returned data is irrelevant to most apps, and some of it is entirely out of hive's scope (example: witness schedule). As another example, when loading a discussion thread, all involved accounts objects are returned *in full* (including balances, authorities, statistics). This results in a lot of extra bandwidth used when only a small fraction of the information is relevant.

In some cases, portions of API responses unused by `condenser` have simply not been implemented in hive -- either to save time or complexity. In other cases, expected values may be slightly different but of a compatible format. Hive cannot guarantee data is accurate as of the latest block. Because interfaces often rely on supporting information such as `steem_per_vests` or `feed_price`, hive does store and return some marginally-out-of-scope-yet-accessible data, but it will be cached with a TTL of up to several minutes. Those values can still be obtained through other API calls to steemd.


-----


<h1>API Changes - Overview</h1>

We will migrate the API by *overriding* specific steemd methods passed to api.steemit.com.

These methods will now be served by hivemind:

```
Follows Queries

    get_followers                 [following, start_follower, follow_type, limit]
    get_following                 [follower, start_following, follow_type, limit]
    get_follow_count              [account]

Content Monolith

    get_state                     [path]

Trending Tags

    get_trending_tags             [start_tag, limit]         (!) only supports ('', 250)

Discussion Queries

    get_discussions_by_trending   {tag, limit, start_author, start_permlink}    trending
    get_discussions_by_hot        {tag, limit, start_author, start_permlink}    hot
    get_discussions_by_promoted   {tag, limit, start_author, start_permlink}    promoted
    get_discussions_by_created    {tag, limit, start_author, start_permlink}    created

    get_discussions_by_blog       {tag, limit, start_author, start_permlink}    account-blog
    get_discussions_by_feed       {tag, limit, start_author, start_permlink}    account-feed
    get_discussions_by_comments        {limit, start_author, start_permlink}    account-comments
    get_replies_by_last_update    [author, permlink, limit];                    account-replies
```


#### Exceptions

These calls will NOT be forwarded to hivemind, and will be forwarded to a light steemd node:

```
get_state.params=['@<user>/transfers']
get_state.params=['~witnesses']
```

### Not ported

```
Deprecated/Unused Discussion Queries - NOT ported!

    get_post_discussions_by_payout        {tag, limit, start_author, start_permlink}    payout
    get_comment_discussions_by_payout     {tag, limit, start_author, start_permlink}    payout_comments
    get_discussions_by_cashout            {tag, limit, start_author, start_permlink}    UNUSED/cashout
    get_discussions_by_children           {tag, limit, start_author, start_permlink}    UNUSED/responses
    get_discussions_by_votes              {tag, limit, start_author, start_permlink}    UNUSED/votes
    get_discussions_by_active             {tag, limit, start_author, start_permlink}    DEPRECATED
    get_discussions_by_trending30         {tag, limit, start_author, start_permlink}    DEPRECATED (DNE)
    get_discussions_by_payout             {tag, limit, start_author, start_permlink}    UNUSED (DNE)
    get_discussions_by_author_before_date [author, start_permlink, before_date, limit]  UNUSED
```
<br>
Additionally, the following have not been ported, which means they may become unavailable. 

```
    get_feed_entries()
    get_feed()
    get_blog_entries()
    get_blog()

    get_account_reputations()
    get_reblogged_by()
    get_blog_authors()
    get_tags_used_by_author()
```
<br>
These *may* be available for some time, but will be served by a light node. We cannot guarantee their availability.

Many of these calls are very similar (or identical) to one of the supported methods. If this is not the case, please leave a comment and we'll evaluate the options.

<h3>Not ported, still available through steemd's condenser_api</h3>

As these are still part of consensus and consumers often expect them to be 100% accurate and up-to-date, they are not currently served by hivemind and will continue to be available through steemd.

```
Content Primitives

    get_content                   [author, permlink]
    get_content_replies           [parent_author, parent_permlink]

    get_active_votes              [author, permlink]
    get_account_votes             [account]
```

<h2>Steemd configuration changes</h2>

After a period of testing, the `follow` and `tags` plugins will be removed from our API nodes. We will however add the `reputation` plugin, which allows us to continue using the existing reputation metrict. It used to be a subset of `follow` plugin functionality, and it's the only piece logic which is not easily reproducible outside of steemd. If you were relying on reputation methods provided by `follow_api`, you will need to update your code to use `reputation_api`.


-----


## API Changes - Detail

### Legacy `call` method

```
call         ['condenser_api', method, params]
```

The legacy-style `call` method takes `[api, method, [params]]` as parameters. Hive routes these calls to the appropriate internal method.

##### Concerns

 - `api` *must* be set to `condenser_api`
 - It is not recommended to use this method

---

### Follows Queries

```
condenser_api.get_followers
condenser_api.get_following
condenser_api.get_follow_count
```

These are straightforward, simple replacements.

##### Concerns

 - steemd follows plugin can hold multiple follow 'states'; hive enforces one
   - the feature is undocumented but small chance of edge cases
   - internally, hive follow state must be blank, followed or muted

---

### Content Primitives

```
condenser_api.get_content
condenser_api.get_content_replies
```
<br>

**Important**: while hive offers these methods as part of its `condenser_api`, api.steemit.com will continue to serve these directly from `steemd`. However, hive does leverage it internally to build responses for `get_state` as well as the various `get_discussions_*` methods.

##### Concerns

 - hive's `comment` response format is a subset of steemd's.
 - deprecated/useless fields have been removed or normalized
 - some fields of questionable utility are not unimplemented

---

### Content Monolith

```
condenser_api.get_state
```

Notice! Hive will refuse to serve these routes:

 - `/@account/transfers`
 - `/witnesses` and `/~witnesses`

Hive does serve these routes, requested by condenser, which are not mapped to anything, but steemd handles them anyway:

 - `/@account/followed` - dummy
 - `/@account/followers` - dummy
 - `/@account/permissions` - dummy
 - `/@account/password` - dummy
 - `/@account/settings` - dummy

##### Concerns

 - embedded get_dynamic_global_properties data is truncated
 - hive does not keep up-to-date keys for accounts.. but on `/@account/xxx` pages, it still serves minimal account data.

---

### Trending Tags

```
condenser_api.get_trending_tags
```

##### Concerns

 - the parameters `[start_tag, limit]` must be left blank or passed as `['', 250]`
 - only primary tags ("category") counted in these stats (not all tags, as per current implementation)

---

### Discussion Queries

**Global**

```
condenser_api.get_discussions_by_trending
condenser_api.get_discussions_by_hot
condenser_api.get_discussions_by_promoted
condenser_api.get_discussions_by_created
```

**Account/blog-specific**

```
condenser_api.get_discussions_by_blog
condenser_api.get_discussions_by_feed
condenser_api.get_discussions_by_comments
condenser_api.get_replies_by_last_update
```

##### Concerns

 - all `get_content` concerns apply here; otherwise identical


------


<h2>Testing & Feedback</h2>

**If your app or service relies on any of the above calls and uses api.steemit.com, please begin testing against api.steemitdev.com as soon as possible.** If there is an unsupported API call on which you are critically relying on, let us know in the comments and we'll find a solution.

Note that at this time, no `steemd` APIs are changing -- only the API as provided by api.steemit.com.

If any apps are still relying on `get_state`, we highly recommend ceasing use as soon as possible.

_The Steemit Team_
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 757 others
properties (23)
authorsteemitdev
permlinkupcoming-changes-to-api-steemit-com
categorysteemit
json_metadata{"tags":["steemit","api","hivemind","hive"],"image":["https://cdn.steemitimages.com/DQmP3ZHBdc18DFVUzQSnyZbTME6rP4FMS8k3kNCpRuu8FTi/API%20changes.jpg"],"links":["https://steemit.com/steem/@ned/2fajh9-steemit-update"],"app":"steemit/0.1","format":"markdown"}
created2018-12-01 00:11:12
last_update2018-12-01 00:11:12
depth0
children73
last_payout2018-12-08 00:11:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length10,017
author_reputation17,757,631,438,715
root_title"Upcoming Changes to api.steemit.com"
beneficiaries[]
max_accepted_payout0.000 HBD
percent_hbd10,000
post_id76,172,748
net_rshares103,142,746,851,229
author_curate_reward""
vote details (821)
@cardboard ·
$0.31
Hi guys.
If I want to get the list of @user's posts, how can I do it instead of get_blog?

<sub>Posted using [Steeve](https://www.steeve.app/@steeveapp), an AI-powered Steem interface</sub>
👍  , , ,
properties (23)
authorcardboard
permlinkre-steemitdev-upcoming-changes-to-api-steemit-com-20181201t032610667z
categorysteemit
json_metadata{"tags":["steemit"],"format":"markdown","app":"steeve/0.1"}
created2018-12-01 03:26:57
last_update2018-12-01 03:26:57
depth1
children10
last_payout2018-12-08 03:26:57
cashout_time1969-12-31 23:59:59
total_payout_value0.235 HBD
curator_payout_value0.077 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length189
author_reputation31,522,757,177,122
root_title"Upcoming Changes to api.steemit.com"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id76,178,744
net_rshares514,453,953,297
author_curate_reward""
vote details (4)
@crokkon · (edited)
.
.
👍  ,
properties (23)
authorcrokkon
permlinkre-cardboard-re-steemitdev-upcoming-changes-to-api-steemit-com-20181201t060922690z
categorysteemit
json_metadata"{"app": ""}"
created2018-12-01 06:09:24
last_update2022-09-18 10:08:42
depth2
children7
last_payout2018-12-08 06:09:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1
author_reputation81,214,366,861,104
root_title"Upcoming Changes to api.steemit.com"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id76,183,760
net_rshares3,214,338,355
author_curate_reward""
vote details (2)
@cardboard ·
Thank you!
properties (22)
authorcardboard
permlinkre-crokkon-re-cardboard-re-steemitdev-upcoming-changes-to-api-steemit-com-20181201t114854497z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-12-01 11:48:54
last_update2018-12-01 11:48:54
depth3
children6
last_payout2018-12-08 11:48:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length10
author_reputation31,522,757,177,122
root_title"Upcoming Changes to api.steemit.com"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id76,193,791
net_rshares0
@themarkymark ·
$0.02
Walk account history
👍  ,
properties (23)
authorthemarkymark
permlinkre-cardboard-re-steemitdev-upcoming-changes-to-api-steemit-com-20181201t044006512z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-12-01 04:40:06
last_update2018-12-01 04:40:06
depth2
children1
last_payout2018-12-08 04:40:06
cashout_time1969-12-31 23:59:59
total_payout_value0.019 HBD
curator_payout_value0.005 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length20
author_reputation1,784,334,923,424,849
root_title"Upcoming Changes to api.steemit.com"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id76,181,209
net_rshares41,573,919,405
author_curate_reward""
vote details (2)
@cardboard ·
Thanks!
properties (22)
authorcardboard
permlinkre-themarkymark-re-cardboard-re-steemitdev-upcoming-changes-to-api-steemit-com-20181201t114848606z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-12-01 11:48:48
last_update2018-12-01 11:48:48
depth3
children0
last_payout2018-12-08 11:48:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length7
author_reputation31,522,757,177,122
root_title"Upcoming Changes to api.steemit.com"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id76,193,787
net_rshares0
@clumsysilverdad ·
what will be the percent increase in odds of hacking?
properties (22)
authorclumsysilverdad
permlinkre-steemitdev-upcoming-changes-to-api-steemit-com-20181201t021318402z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-12-01 02:13:12
last_update2018-12-01 02:13:12
depth1
children1
last_payout2018-12-08 02:13:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length53
author_reputation28,166,630,869,767
root_title"Upcoming Changes to api.steemit.com"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id76,176,340
net_rshares0
@roadscape ·
None, these are all read-only APIs.
properties (22)
authorroadscape
permlinkre-clumsysilverdad-re-steemitdev-upcoming-changes-to-api-steemit-com-20181203t184904372z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-12-03 18:49:03
last_update2018-12-03 18:49:03
depth2
children0
last_payout2018-12-10 18:49:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length35
author_reputation27,406,317,697,121
root_title"Upcoming Changes to api.steemit.com"
beneficiaries[]
max_accepted_payout0.000 HBD
percent_hbd10,000
post_id76,307,525
net_rshares0
@crimsonclad ·
$0.35
Hive has been one of the things I've been most ready to see get up and really  rolling. I'm going to be very interested in seeing the spread of findings and needs of the dApps out there as they start testing.
👍  , , , , , ,
properties (23)
authorcrimsonclad
permlinkre-steemitdev-upcoming-changes-to-api-steemit-com-20181201t004344558z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-12-01 00:43:39
last_update2018-12-01 00:43:39
depth1
children3
last_payout2018-12-08 00:43:39
cashout_time1969-12-31 23:59:59
total_payout_value0.307 HBD
curator_payout_value0.038 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length208
author_reputation323,763,088,722,311
root_title"Upcoming Changes to api.steemit.com"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id76,173,688
net_rshares672,115,216,947
author_curate_reward""
vote details (7)
@jarvie ·
do you think 1 week is gonna be enough for them?
properties (22)
authorjarvie
permlinkre-crimsonclad-re-steemitdev-upcoming-changes-to-api-steemit-com-20181201t013536580z
categorysteemit
json_metadata{"tags":["steemit"],"community":"steempeak","app":"steempeak"}
created2018-12-01 01:35:39
last_update2018-12-01 01:35:39
depth2
children2
last_payout2018-12-08 01:35:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length48
author_reputation388,515,652,617,149
root_title"Upcoming Changes to api.steemit.com"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id76,175,129
net_rshares0
@andrarchy ·
Hive has been running for many months now. We're just moving more data over to it. We can always switch from Hive back to steemd very quickly and I believe this is actually part of the testing plans. More details coming, but this is a very low risk change due to it being so easily reversible and having nothing to do with the blockchain.
👍  
properties (23)
authorandrarchy
permlinkre-jarvie-re-crimsonclad-re-steemitdev-upcoming-changes-to-api-steemit-com-20181201t151503171z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-12-01 15:15:03
last_update2018-12-01 15:15:03
depth3
children0
last_payout2018-12-08 15:15:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length338
author_reputation230,168,201,522,782
root_title"Upcoming Changes to api.steemit.com"
beneficiaries[]
max_accepted_payout0.000 HBD
percent_hbd10,000
post_id76,201,233
net_rshares296,726,168,919
author_curate_reward""
vote details (1)
@crimsonclad ·
Andy beat me to the punch. I do hope so. We've seen hive making things faster and smoother in some cases for a while now already, but tags and follows especially is a biggie, hurdle wise. One week should be enough to suss out if things aren't forwarding properly, I imagine... It just means that people actually *have* to point their services at it sometime in the next week and see if it all goes tits up. Won't know if people don't try.
properties (22)
authorcrimsonclad
permlinkre-jarvie-re-crimsonclad-re-steemitdev-upcoming-changes-to-api-steemit-com-20181201t212154758z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-12-01 21:21:54
last_update2018-12-01 21:21:54
depth3
children0
last_payout2018-12-08 21:21:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length438
author_reputation323,763,088,722,311
root_title"Upcoming Changes to api.steemit.com"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id76,214,031
net_rshares0
@cryptofunk ·
Are there any public nodes available anymore, there used to be all these but they are all offline to me? http://steemistry.com/nodes/
properties (22)
authorcryptofunk
permlinkre-steemitdev-upcoming-changes-to-api-steemit-com-20181201t011653933z
categorysteemit
json_metadata{"tags":["steemit"],"links":["http://steemistry.com/nodes/"],"app":"steemit/0.1"}
created2018-12-01 01:16:57
last_update2018-12-01 01:16:57
depth1
children4
last_payout2018-12-08 01:16:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length133
author_reputation22,006,702,786,195
root_title"Upcoming Changes to api.steemit.com"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id76,174,508
net_rshares0
@crimsonclad ·
$0.02
This is our old page and it's wildly out of date/broken since a few changes ago, with me not having had a chance to get back to it! I recommend checking https://geo.steem.pl. This is a good kick in the ass reminder to fix it.
👍  ,
properties (23)
authorcrimsonclad
permlinkre-cryptofunk-re-steemitdev-upcoming-changes-to-api-steemit-com-20181201t090937235z
categorysteemit
json_metadata{"tags":["steemit"],"links":["https://geo.steem.pl"],"app":"steemit/0.1"}
created2018-12-01 09:09:36
last_update2018-12-01 09:09:36
depth2
children3
last_payout2018-12-08 09:09:36
cashout_time1969-12-31 23:59:59
total_payout_value0.018 HBD
curator_payout_value0.005 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length225
author_reputation323,763,088,722,311
root_title"Upcoming Changes to api.steemit.com"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id76,189,171
net_rshares38,911,390,752
author_curate_reward""
vote details (2)
@cryptofunk · (edited)
Are there any wss connections, I built an old script based on piston?
properties (22)
authorcryptofunk
permlinkre-crimsonclad-re-cryptofunk-re-steemitdev-upcoming-changes-to-api-steemit-com-20181201t182208590z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-12-01 18:22:09
last_update2018-12-01 18:22:18
depth3
children2
last_payout2018-12-08 18:22:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length69
author_reputation22,006,702,786,195
root_title"Upcoming Changes to api.steemit.com"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id76,208,283
net_rshares0
@ennosan ·
get_reblogged_by is no longer supported?
Is there a replacement or should I read 30,000,000 blocks to find out who is resteeming my articles?

I also use 
get_discussions_by_author_before_date
get_feed
get_content
get_active_votes
get_account_votes
👍  
properties (23)
authorennosan
permlinkre-steemitdev-upcoming-changes-to-api-steemit-com-20190113t152311561z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2019-01-13 15:23:12
last_update2019-01-13 15:23:12
depth1
children0
last_payout2019-01-20 15:23:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length248
author_reputation5,418,187,494,175
root_title"Upcoming Changes to api.steemit.com"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id78,320,770
net_rshares571,965,947
author_curate_reward""
vote details (1)
@igormuba ·
please, the only thing I request is to take a break from adding and changing functionalities and spend some weeks on building easier and better documentation and tutorials! 
Really the API is amazing, but the documentation is not beginner friendly at all! I am working on a tutorial series trying to make things simple for non programmers to understand because I want people to be bottlenecked by their creativity only, not their technical knowledge, but I alone can't do it, please, take your time to make a tutorial series, does not matter if you "steal" my students and my earnings from the tutorials but put more effort on making tutorials and noob friendly documentation, this is a must for scalability! people just can't understand easily how to use your API to the fullest, you can add and modify as many functionalities as you want, but if steem dapps development stays intellectually elitist we won't have mass adoption because some people might have great ideas for simple apps but they can't execute it without breaking their backs trying to understand how does it work!

Posted using [Partiko Android](https://steemit.com/@partiko-android)
👍  ,
properties (23)
authorigormuba
permlinkigormuba-re-steemitdev-upcoming-changes-to-api-steemit-com-20181201t002616840z
categorysteemit
json_metadata{"app":"partiko"}
created2018-12-01 00:26:18
last_update2018-12-01 00:26:18
depth1
children3
last_payout2018-12-08 00:26:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,151
author_reputation129,826,667,899,336
root_title"Upcoming Changes to api.steemit.com"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id76,173,185
net_rshares10,084,811,977
author_curate_reward""
vote details (2)
@inertia ·
> spend some weeks on building easier and better documentation and tutorials!

@igormuba, nope that's up to the community now.
👍  ,
properties (23)
authorinertia
permlinkre-igormuba-igormuba-re-steemitdev-upcoming-changes-to-api-steemit-com-20181201t011416265z
categorysteemit
json_metadata{"tags":["steemit"],"users":["igormuba"],"app":"steemit/0.1"}
created2018-12-01 01:14:15
last_update2018-12-01 01:14:15
depth2
children2
last_payout2018-12-08 01:14:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length126
author_reputation346,568,901,399,561
root_title"Upcoming Changes to api.steemit.com"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id76,174,433
net_rshares2,335,263,477
author_curate_reward""
vote details (2)
@igormuba · (edited)
I don't deny the community should also do something, as part of my witness campaign I am trying the best I can to make beginner friendly tutorials and translate them to 2 languages, but I am just only person and I feel overwhelmed by some many things and tasks left to do, sadly I can't find other people that care about bringing Steem API development to the masses...

Posted using [Partiko Android](https://steemit.com/@partiko-android)
properties (22)
authorigormuba
permlinkigormuba-re-inertia-re-igormuba-igormuba-re-steemitdev-upcoming-changes-to-api-steemit-com-20181201t012141073z
categorysteemit
json_metadata{"app":"partiko"}
created2018-12-01 01:21:42
last_update2018-12-01 01:21:54
depth3
children1
last_payout2018-12-08 01:21:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length438
author_reputation129,826,667,899,336
root_title"Upcoming Changes to api.steemit.com"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id76,174,684
net_rshares0
@igster · (edited)
Hello, I'm using Steem.js personally and I'm trying to to filter trending query with multiple tags but can't find a way to do this from official docs. Is this still possible?

Select_tags : [tag1, tag2] doesn't work anymore with hivemind it seems.
properties (22)
authorigster
permlinkpt1fcz
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2019-06-13 12:43:48
last_update2019-06-13 12:44:24
depth1
children0
last_payout2019-06-20 12:43:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length247
author_reputation17,415,198,441,969
root_title"Upcoming Changes to api.steemit.com"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id86,557,941
net_rshares0
@jarvie ·
$0.43
Ok we shall have @asgarth take a look for @steempeak functionality.  Didn't realize it would be 2 days after the announcements and 7 days notice. But it is what it is we will make it 
👍  , , ,
properties (23)
authorjarvie
permlinkre-steemitdev-upcoming-changes-to-api-steemit-com-20181201t012942319z
categorysteemit
json_metadata{"tags":["steemit"],"community":"steempeak","app":"steempeak"}
created2018-12-01 01:29:45
last_update2018-12-01 01:29:45
depth1
children1
last_payout2018-12-08 01:29:45
cashout_time1969-12-31 23:59:59
total_payout_value0.324 HBD
curator_payout_value0.107 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length183
author_reputation388,515,652,617,149
root_title"Upcoming Changes to api.steemit.com"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id76,174,939
net_rshares710,718,999,957
author_curate_reward""
vote details (4)
@jarvie ·
Oh I should update... we're ready to go thanks @roadscape for the help along the way. Hopefully asgarth helped test the system nicely.
properties (22)
authorjarvie
permlinkre-jarvie-re-steemitdev-upcoming-changes-to-api-steemit-com-20181206t112814246z
categorysteemit
json_metadata{"tags":["steemit"],"community":"steempeak","app":"steempeak"}
created2018-12-06 11:28:21
last_update2018-12-06 11:28:21
depth2
children0
last_payout2018-12-13 11:28:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length134
author_reputation388,515,652,617,149
root_title"Upcoming Changes to api.steemit.com"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id76,444,667
net_rshares0
@masterthematrix ·
Good to see that the first steps are already being made to cut costs.

Posted using [Partiko Android](https://steemit.com/@partiko-android)
properties (22)
authormasterthematrix
permlinkmasterthematrix-re-steemitdev-upcoming-changes-to-api-steemit-com-20181201t023314058z
categorysteemit
json_metadata{"app":"partiko"}
created2018-12-01 02:33:15
last_update2018-12-01 02:33:15
depth1
children0
last_payout2018-12-08 02:33:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length139
author_reputation9,868,666,626,842
root_title"Upcoming Changes to api.steemit.com"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id76,176,996
net_rshares0
@navidgoalpure ·
hello
when i using  "get_discussions_by_blog" with "filter_tags" or "select_tags ", i come across with this error "filter_tags not supported (hivemind-alpha)" 
Can I not use this combination?
this is my code: http://dpaste.com/13ZHMKC
thank you
properties (22)
authornavidgoalpure
permlinkre-steemitdev-upcoming-changes-to-api-steemit-com-20190507t081258666z
categorysteemit
json_metadata{"tags":["steemit"],"links":["http://dpaste.com/13ZHMKC"],"app":"steemit/0.1"}
created2019-05-07 08:13:00
last_update2019-05-07 08:13:00
depth1
children0
last_payout2019-05-14 08:13:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length244
author_reputation40,665,243,400
root_title"Upcoming Changes to api.steemit.com"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id84,394,251
net_rshares0
@oyvindsabo ·
As long as everything is well documented, I'm sure there won't be any significant issues.
👍  
properties (23)
authoroyvindsabo
permlinkre-steemitdev-upcoming-changes-to-api-steemit-com-20181201t002029063z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-12-01 00:20:30
last_update2018-12-01 00:20:30
depth1
children0
last_payout2018-12-08 00:20:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length89
author_reputation1,341,628,885,463
root_title"Upcoming Changes to api.steemit.com"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id76,173,028
net_rshares4,123,343,229
author_curate_reward""
vote details (1)
@penguinpablo ·
$0.49
How can I keep using the discussion queries in Steem.JS like steem.api.getDiscussionsByBlog() or steem.api.getDiscussionsByTrending()?

When I try these functions on api.steemit**dev**.com I get this error: RPCError: Server error.
👍  , , , , ,
properties (23)
authorpenguinpablo
permlinkre-steemitdev-upcoming-changes-to-api-steemit-com-20181203t100157939z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-12-03 10:01:57
last_update2018-12-03 10:01:57
depth1
children11
last_payout2018-12-10 10:01:57
cashout_time1969-12-31 23:59:59
total_payout_value0.367 HBD
curator_payout_value0.121 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length230
author_reputation792,312,678,950,166
root_title"Upcoming Changes to api.steemit.com"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id76,285,562
net_rshares786,443,755,924
author_curate_reward""
vote details (6)
@roadscape ·
Hi @penguinpablo, could you share the exact request? Working to get better error details exposed from the server but the most common cause is omitting some arguments.
properties (22)
authorroadscape
permlinkre-penguinpablo-re-steemitdev-upcoming-changes-to-api-steemit-com-20181203t184954793z
categorysteemit
json_metadata{"tags":["steemit"],"users":["penguinpablo"],"app":"steemit/0.1"}
created2018-12-03 18:49:54
last_update2018-12-03 18:49:54
depth2
children10
last_payout2018-12-10 18:49:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length166
author_reputation27,406,317,697,121
root_title"Upcoming Changes to api.steemit.com"
beneficiaries[]
max_accepted_payout0.000 HBD
percent_hbd10,000
post_id76,307,553
net_rshares0
@penguinpablo · (edited)
Hi @roadscape! Thanks for your response.
Here's the Javascript code:

```javascript
steem.api.setOptions({url:'https://api.steemitdev.com'});
steem.api.getDiscussionsByBlog({tag:'penguinpablo',limit:1}, function(err, result) {
 console.log(err);
});
```

Results in:
```
RPCError: Server error
```

It works using api.steemit.com, but not on api.steemitdev.com.
properties (22)
authorpenguinpablo
permlinkre-roadscape-re-penguinpablo-re-steemitdev-upcoming-changes-to-api-steemit-com-20181203t192843048z
categorysteemit
json_metadata{"tags":["steemit"],"users":["roadscape"],"app":"steemit/0.1"}
created2018-12-03 19:28:42
last_update2018-12-03 19:29:21
depth3
children9
last_payout2018-12-10 19:28:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length361
author_reputation792,312,678,950,166
root_title"Upcoming Changes to api.steemit.com"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id76,309,058
net_rshares0
@richatvns ·
Wow finally deciding to Optimize, that means you guys weren't doing it along the way...

That's why Agile programming practices suck!

You did not have a Chief Architect and Lead Designers and the classic top down hierarchy.  These issues would have been caught early QA and you wouldn't be in the desperate situation your in now @ned.

Hopefully you've learned your lesson and get someone in there who has built a firm from the 15 to 200 employee stage and then bring in someone else to move the firm to the next level. 

A Leader who sees the both the good and more importantly the pitfalls from experience and inspires people to come up with solutions and think when it is right to go tried and true and when outside the box is needed.

Not a Boss who just tells people what has to go on.

You need to learn something from the AMC show run of "Halt or Catch Fire.".
👍  
properties (23)
authorrichatvns
permlinkre-steemitdev-upcoming-changes-to-api-steemit-com-20181204t122520536z
categorysteemit
json_metadata{"tags":["steemit"],"users":["ned"],"app":"steemit/0.1"}
created2018-12-04 12:25:21
last_update2018-12-04 12:25:21
depth1
children0
last_payout2018-12-11 12:25:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length868
author_reputation243,323,637,506,719
root_title"Upcoming Changes to api.steemit.com"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id76,342,212
net_rshares470,027,434
author_curate_reward""
vote details (1)
@steemchiller ·
$0.90
I'm using 'get_discussions_by_author_before_date' in my tools because it returns the account's posts without the resteems and I can load up to 100 posts with only one call. Is there any way to achieve this with 'get_discussions_by_blog'?

I've seen that there was a resteems-filter in earlier versions (params.hide == "resteemed", later by setting a discussion_query_filter with params.filter_by), but it seems not to be possible anymore in newer versions.

I think that's an important thing to think about because it will otherwise create much overhead for loading 100 posts and I guess many apps would use that instead of filtering the received posts on the client-side.
👍  , , , , , ,
properties (23)
authorsteemchiller
permlinkre-steemitdev-upcoming-changes-to-api-steemit-com-20181203t160057923z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-12-03 16:00:57
last_update2018-12-03 16:00:57
depth1
children13
last_payout2018-12-10 16:00:57
cashout_time1969-12-31 23:59:59
total_payout_value0.681 HBD
curator_payout_value0.222 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length672
author_reputation219,937,669,501,793
root_title"Upcoming Changes to api.steemit.com"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id76,300,528
net_rshares1,468,811,907,078
author_curate_reward""
vote details (7)
@roadscape ·
Hi @steemchiller, adding support for this call as it's become clear there is no replacement for it. As far as I can tell, the `before_date` parameter is broken, is that true? Do you paginate at all via `start_permlink`?
👍  
properties (23)
authorroadscape
permlinkre-steemchiller-re-steemitdev-upcoming-changes-to-api-steemit-com-20181203t184821406z
categorysteemit
json_metadata{"tags":["steemit"],"users":["steemchiller"],"app":"steemit/0.1"}
created2018-12-03 18:48:21
last_update2018-12-03 18:48:21
depth2
children12
last_payout2018-12-10 18:48:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length219
author_reputation27,406,317,697,121
root_title"Upcoming Changes to api.steemit.com"
beneficiaries[]
max_accepted_payout0.000 HBD
percent_hbd10,000
post_id76,307,501
net_rshares28,088,698,415
author_curate_reward""
vote details (1)
@steemchiller ·
$0.46
Thanks @roadscape, great to hear! Yes, if I remember correctly, both the `before_date` and `start_permlink` parameters did never really work. I don't need them currently but would be nice to get the `start_permlink` param to work in future.
👍  , ,
properties (23)
authorsteemchiller
permlinkre-roadscape-re-steemchiller-re-steemitdev-upcoming-changes-to-api-steemit-com-20181203t200150124z
categorysteemit
json_metadata{"tags":["steemit"],"users":["roadscape"],"app":"steemit/0.1"}
created2018-12-03 20:01:51
last_update2018-12-03 20:01:51
depth3
children11
last_payout2018-12-10 20:01:51
cashout_time1969-12-31 23:59:59
total_payout_value0.349 HBD
curator_payout_value0.115 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length240
author_reputation219,937,669,501,793
root_title"Upcoming Changes to api.steemit.com"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id76,310,309
net_rshares756,486,711,624
author_curate_reward""
vote details (3)
@steemvoter ·
$0.16
This post has been selected by the Steemvoter (SV) Guild, standby for incoming vote support courtesy of @buildteam and @steemvoter. 
 
<center>https://steemitimages.com/DQmQyUEXjJ16T7Gz76ZxrsykLPgrN2SYW26ike8kWpKJ3ea/image.png</center>
👍  ,
👎  ,
properties (23)
authorsteemvoter
permlinkre-steemitdev-upcoming-changes-to-api-steemit-com-20181201t003609009z
categorysteemit
json_metadata{"tags":["steemit"],"users":["buildteam","steemvoter"],"image":["https://steemitimages.com/DQmQyUEXjJ16T7Gz76ZxrsykLPgrN2SYW26ike8kWpKJ3ea/image.png"],"app":"steemit/0.1"}
created2018-12-01 00:36:09
last_update2018-12-01 00:36:09
depth1
children0
last_payout2018-12-08 00:36:09
cashout_time1969-12-31 23:59:59
total_payout_value0.128 HBD
curator_payout_value0.036 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length235
author_reputation205,124,311,476,054
root_title"Upcoming Changes to api.steemit.com"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id76,173,453
net_rshares282,471,007,638
author_curate_reward""
vote details (4)
@thecryptodrive ·
Reducing the resource cost of full nodes is great news, thanks for this. standby for some additional votes incoming for further visibility.
👍  ,
properties (23)
authorthecryptodrive
permlinkre-steemitdev-upcoming-changes-to-api-steemit-com-20181201t003106208z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-12-01 00:31:06
last_update2018-12-01 00:31:06
depth1
children0
last_payout2018-12-08 00:31:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length139
author_reputation103,594,115,164,820
root_title"Upcoming Changes to api.steemit.com"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id76,173,319
net_rshares7,655,657,743
author_curate_reward""
vote details (2)
@theguruasia ·
$0.14
@steemitdev,
Sounds good and wanna see how it works soon! One more thing, cost deduction is a good idea, but try to manage it while keeping Steem future at the bright side!

Cheers~
👍  , , ,
properties (23)
authortheguruasia
permlinkre-steemitdev-upcoming-changes-to-api-steemit-com-20181201t034708751z
categorysteemit
json_metadata{"tags":["steemit"],"users":["steemitdev"],"app":"steemit/0.1"}
created2018-12-01 03:47:06
last_update2018-12-01 03:47:06
depth1
children0
last_payout2018-12-08 03:47:06
cashout_time1969-12-31 23:59:59
total_payout_value0.108 HBD
curator_payout_value0.035 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length181
author_reputation72,767,896,727,210
root_title"Upcoming Changes to api.steemit.com"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id76,179,445
net_rshares237,455,118,826
author_curate_reward""
vote details (4)
@therealwolf ·
$0.04
Exactly what I want to see. Great progress! Testing asap.
👍  , , , , ,
properties (23)
authortherealwolf
permlinkre-steemitdev-upcoming-changes-to-api-steemit-com-20181201t004052692z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-12-01 00:40:51
last_update2018-12-01 00:40:51
depth1
children0
last_payout2018-12-08 00:40:51
cashout_time1969-12-31 23:59:59
total_payout_value0.029 HBD
curator_payout_value0.008 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length57
author_reputation582,208,885,469,814
root_title"Upcoming Changes to api.steemit.com"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id76,173,591
net_rshares64,790,884,567
author_curate_reward""
vote details (6)
@thevillan ·
$0.02
So if I use steemit.js with a call like `steem.api.getState` how do I go about converting/updating.
This couldn't have come at a worse time for me as I'm moving house. Will probably have to put @steeming-hot out of action for a while
👍  ,
properties (23)
authorthevillan
permlinkre-steemitdev-upcoming-changes-to-api-steemit-com-20181201t022815334z
categorysteemit
json_metadata{"tags":["steemit"],"users":["steeming-hot"],"app":"steemit/0.1"}
created2018-12-01 02:28:15
last_update2018-12-01 02:28:15
depth1
children6
last_payout2018-12-08 02:28:15
cashout_time1969-12-31 23:59:59
total_payout_value0.016 HBD
curator_payout_value0.004 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length233
author_reputation60,795,561,647,995
root_title"Upcoming Changes to api.steemit.com"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id76,176,846
net_rshares36,864,810,283
author_curate_reward""
vote details (2)
@inertia ·
$0.02
You should first see if your app works with `getState` on `api.steemitdev.com`.  If it does, you're good.  If not, this is how to switch if you were using dsteem:

https://developers.steem.io/tutorials-javascript/get_state_replacement_api

But the general point is, if you use their `getState(‘witnesses’)`, use `databaseAPI.call('get_witnesses_by_vote', ['', 10])
` instead.
👍  ,
properties (23)
authorinertia
permlinkre-thevillan-re-steemitdev-upcoming-changes-to-api-steemit-com-20181201t061929475z
categorysteemit
json_metadata{"tags":["steemit"],"links":["https://developers.steem.io/tutorials-javascript/get_state_replacement_api"],"app":"steemit/0.1"}
created2018-12-01 06:19:30
last_update2018-12-01 06:19:30
depth2
children2
last_payout2018-12-08 06:19:30
cashout_time1969-12-31 23:59:59
total_payout_value0.016 HBD
curator_payout_value0.004 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length375
author_reputation346,568,901,399,561
root_title"Upcoming Changes to api.steemit.com"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id76,184,071
net_rshares35,308,777,502
author_curate_reward""
vote details (2)
@thevillan ·
$0.45
Hey thanks @inertia I don't think I will have to modify the code as i use `steem.api.getState('@username/blog', function(err, result)`

Guess I will find out next weekend :)
👍  ,
properties (23)
authorthevillan
permlinkre-inertia-re-thevillan-re-steemitdev-upcoming-changes-to-api-steemit-com-20181201t090842485z
categorysteemit
json_metadata{"tags":["steemit"],"users":["inertia"],"app":"steemit/0.1"}
created2018-12-01 09:08:42
last_update2018-12-01 09:08:42
depth3
children1
last_payout2018-12-08 09:08:42
cashout_time1969-12-31 23:59:59
total_payout_value0.342 HBD
curator_payout_value0.112 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length173
author_reputation60,795,561,647,995
root_title"Upcoming Changes to api.steemit.com"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id76,189,135
net_rshares742,610,598,929
author_curate_reward""
vote details (2)
@roadscape ·
All you do is change the endpoint from `api.steemit.com` to `api.stemitdev.com` and make sure your scripts still work :-)
👍  
properties (23)
authorroadscape
permlinkre-thevillan-re-steemitdev-upcoming-changes-to-api-steemit-com-20181203t163519614z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-12-03 16:35:18
last_update2018-12-03 16:35:18
depth2
children2
last_payout2018-12-10 16:35:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length121
author_reputation27,406,317,697,121
root_title"Upcoming Changes to api.steemit.com"
beneficiaries[]
max_accepted_payout0.000 HBD
percent_hbd10,000
post_id76,302,062
net_rshares36,306,607,123
author_curate_reward""
vote details (1)
@thevillan ·
$0.19
So I'm guessing as long as I pull the steem.js file from the steemit cdn it should update accordingly
👍  , , ,
properties (23)
authorthevillan
permlinkre-roadscape-re-thevillan-re-steemitdev-upcoming-changes-to-api-steemit-com-20181203t194434551z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-12-03 19:44:36
last_update2018-12-03 19:44:36
depth3
children1
last_payout2018-12-10 19:44:36
cashout_time1969-12-31 23:59:59
total_payout_value0.142 HBD
curator_payout_value0.045 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length101
author_reputation60,795,561,647,995
root_title"Upcoming Changes to api.steemit.com"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id76,309,637
net_rshares309,899,127,800
author_curate_reward""
vote details (4)
@thevillan ·
$0.03
Hi, I use `steem.api.getRebloggedBy` in my bot, whats an alternative to this as it no longer works. Thanks :)
👍  ,
properties (23)
authorthevillan
permlinkre-steemitdev-upcoming-changes-to-api-steemit-com-20181225t050006295z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-12-25 05:00:06
last_update2018-12-25 05:00:06
depth1
children0
last_payout2019-01-01 05:00:06
cashout_time1969-12-31 23:59:59
total_payout_value0.020 HBD
curator_payout_value0.006 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length109
author_reputation60,795,561,647,995
root_title"Upcoming Changes to api.steemit.com"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id77,348,068
net_rshares47,499,424,489
author_curate_reward""
vote details (2)
@tts ·
To listen to the audio version of this article click on the play image.
[![](https://s18.postimg.org/51o0kpijd/play200x46.png)](http://ec2-52-72-169-104.compute-1.amazonaws.com/steemitdev__upcoming-changes-to-api-steemit-com.mp3)
Brought to you by [@tts](https://steemit.com/tts/@tts/introduction). If you find it useful please consider upvoting this reply.
properties (22)
authortts
permlinkre-upcoming-changes-to-api-steemit-com-20181201t004107
categorysteemit
json_metadata""
created2018-12-01 00:41:06
last_update2018-12-01 00:41:06
depth1
children0
last_payout2018-12-08 00:41:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length357
author_reputation-4,535,154,553,995
root_title"Upcoming Changes to api.steemit.com"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id76,173,598
net_rshares0