Hive Developer Portal
Methods:
Used to lookup information related to reputation and account follow operations. These AppBase API methods are still under development and subject to change.
follow_api.get_account_reputations
Obsolete. Current Hive source no longer defines the follow_api plugin. Historical documentation is retained for compatibility context.
Returns a list of account reputations.
Also see: Paginated API Methods
Replacement / Successor
- Replacement:
reputation_api.get_account_reputations
Use the dedicated reputation API for reputation lookups.
Query Parameters JSON
{"account_lower_bound": "", "limit": 1000}
Expected Response JSON
{
"reputations": [{"account": "", "reputation": 0}]
}
Example curl
curl -s --data '{"jsonrpc":"2.0", "method":"follow_api.get_account_reputations", "params":{"account_lower_bound":"hiveio", "limit":1}, "id":1}' https://api.hive.blog
curl -s --data '{"jsonrpc":"2.0", "method":"follow_api.get_account_reputations", "params":{"account_lower_bound":"a", "limit":10}, "id":1}' https://api.hive.blog
follow_api.get_blog
Removed since HF24. See successor guidance below.
Also see: Paginated API Methods
Replacement / Successor
- Spiritual successor:
bridge.get_account_posts
Use
sort: blogfor current Hivemind-backed blog and reblog listings.
Replacement / Successor
- None:
No direct documented replacement
Use an indexed Hivemind, HAFSQL, or HiveSQL data source when you need reblog-author aggregates.
follow_api.get_blog_entries
Removed since HF24. See successor guidance below.
Also see: Paginated API Methods
Replacement / Successor
- Spiritual successor:
bridge.get_account_posts
Use
sort: blogfor current Hivemind-backed blog and reblog listings.
follow_api.get_feed
Removed since HF24. See successor guidance below.
Also see: Paginated API Methods
Replacement / Successor
- Spiritual successor:
bridge.get_account_posts
Use
sort: feedfor the current feed-style account post listing.
follow_api.get_feed_entries
Removed since HF24. See successor guidance below.
Also see: Paginated API Methods
Replacement / Successor
- Spiritual successor:
bridge.get_account_posts
Use
sort: feedfor the current feed-style account post listing.
Replacement / Successor
- Spiritual successor:
bridge.get_profile
The profile response includes follower and following counts.
follow_api.get_followers
Removed since HF24. See successor guidance below.
Also see: Paginated API Methods
Replacement / Successor
- None:
No direct documented replacement
Use indexed Hivemind, HAFSQL, or HiveSQL follower data for full follower lists;
bridge.get_relationship_between_accountsonly answers pairwise relationship questions.
follow_api.get_following
Removed since HF24. See successor guidance below.
Also see: Paginated API Methods
Replacement / Successor
- None:
No direct documented replacement
Use indexed Hivemind, HAFSQL, or HiveSQL follower data for full following lists;
bridge.get_relationship_between_accountsonly answers pairwise relationship questions.