Hive Developer Portal
Methods:
Searches Hivemind-indexed posts.
search_api.find_text
Finds posts matching a text pattern.
Required parameters:
pattern- text pattern to search for in indexed postssort- result ordering; known values includerelevance,trending, andcreated
Optional parameters:
author- restricts results to posts by a single author accountstart_author- author of the last post from the previous page; use withstart_permlinkfor paginationstart_permlink- permlink of the last post from the previous page; use withstart_authorfor paginationlimit- maximum number of posts to returnobserver- account used for observer-specific context, such as mute or blacklist statetruncate_body- when greater than0, truncates returned post bodies to the requested length
Query Parameters JSON
{
"pattern": "aggrandizement",
"sort": "relevance",
"author": "",
"start_author": "",
"start_permlink": "",
"limit": 1,
"observer": "",
"truncate_body": 160
}
Expected Response JSON
[
{
"url": "/aggrandizement/@aggrandizement/aggrandizement",
"body": "> Aggrandizement is the act of enlarging or expanding something's power or status. It's hard sometimes to tell if politicians run for office in order to help th",
"depth": 0,
"stats": {
"gray": true,
"hide": false,
"flag_weight": 0,
"total_votes": 12,
"muted_reasons": [3]
},
"title": "aggrandizement",
"author": "aggrandizement",
"payout": 7.232,
"created": "2018-02-05T06:52:39",
"category": "aggrandizement",
"children": 6,
"permlink": "aggrandizement",
"blacklists": ["reputation-0"],
"active_votes": [
{
"voter": "tuck-fheman",
"rshares": 20209795818
}
],
"json_metadata": {
"app": "steemit/0.1",
"tags": ["aggrandizement"],
"format": "markdown"
},
"author_reputation": -4.69,
"pending_payout_value": "0.000 HBD"
}
]
Example curl
curl -s --data '{"jsonrpc":"2.0", "method":"search_api.find_text", "params":{"pattern":"aggrandizement","sort":"relevance","author":"","start_author":"","start_permlink":"","limit":1,"observer":"","truncate_body":160}, "id":1}' https://api.hive.blog