Skip to content

Available Methods

dez1337 edited this page Aug 27, 2017 · 30 revisions

TOC

  • Follow API

Database API

Plugins

The node needs to enable those plugins

Market API

Account by key

History API

Block Info

Block statistics

Follow API

The follow_api covers all api calls related to blogs, feeds, and followes.

TOC

getFollowers

Use this method to find out if an account is following another one or get a list of all followers of an account.

Back to TOC

getFollowing

Back to TOC

getFollowCount

Back to TOC

getFeedEntries

Back to TOC

getFeed

Back to TOC

getBlogEntries

Back to TOC

getBlog

Back to TOC

getAccountReputations

This next method can be used to get the reputation for one or more accounts.

Parameters

Back to TOC

getRebloggedBy

Back to TOC

getBlogAuthors

Use this method to find out, how many blog entries of which authors have been published by an account.

The method only requires an account name of the blog owner to analzse, so a method call could look like this.

List<PostsPerAuthorPair> blogAuthors = steemApiWrapper.getBlogAuthors(new AccountName("dez1337"));

And would return a list of pairs, while earch pair consists of an author name and the number of blog entries that dez1337 has resteemed from this author.

ausbitbank: 1
good-karma: 3
...

In this case two pairs have been returned, providing the information that dez1337 has currently resteemed one post from ausbitsbank in his blog history, and three posts from good-karma.

Back to TOC

Clone this wiki locally