diff --git a/_data/apidefinitions/condenser_api.yml b/_data/apidefinitions/condenser_api.yml
index ab209ebf7a8847c3833e3d3abe850878a1f81737..9913fe13e1ad337768dced9a352ccd08d3f8a9fd 100644
--- a/_data/apidefinitions/condenser_api.yml
+++ b/_data/apidefinitions/condenser_api.yml
@@ -59,19 +59,19 @@
       trx_num: 0
       expired: false
     curl_examples:
-    - '{"jsonrpc":"2.0", "method":"condenser_api.broadcast_transaction_synchronous",
-      "params":[{"ref_block_num":1097,"ref_block_prefix":2181793527,"expiration":"2016-03-24T18:00:21","operations":[["vote",{"voter":"hiveio","author":"alice","permlink":"a-post-by-alice","weight":10000}]],"extensions":[],"signatures":[]}],
-      "id":1}'
-    - '{"jsonrpc":"2.0", "method":"condenser_api.broadcast_transaction_synchronous",
-      "params":[{"ref_block_num":1097,"ref_block_prefix":2181793527,"expiration":"2016-03-24T18:00:21","operations":[["pow",{"worker_account":"cloop3","block_id":"00000449f7860b82b4fbe2f317c670e9f01d6d9a","nonce":3899,"work":{"worker":"STM7P5TDnA87Pj9T4mf6YHrhzjC1KbPZpNxLWCcVcHxNYXakpoT4F","input":"ae8e7c677119d22385f8c48026fee7aad7bba693bf788d7f27047f40b47738c0","signature":"1f38fe9a3f9989f84bd94aa5bbc88beaf09b67f825aa4450cf5105d111149ba6db560b582c7dbb026c7fc9c2eb5051815a72b17f6896ed59d3851d9a0f9883ca7a","work":"000e7b209d58f2e64b36e9bf12b999c6c7af168cc3fc41eb7f8a4bf796c174c3"},"props":{"account_creation_fee":{"amount":"10000","precision":3,"nai":"@@000000021"},"maximum_block_size":131072,"hbd_interest_rate":1000}}]],"extensions":[],"signatures":[]}],
-      "id":1}'
+      - '{"jsonrpc":"2.0", "method":"condenser_api.broadcast_transaction_synchronous",
+        "params":[{"ref_block_num":1097,"ref_block_prefix":2181793527,"expiration":"2016-03-24T18:00:21","operations":[["vote",{"voter":"hiveio","author":"alice","permlink":"a-post-by-alice","weight":10000}]],"extensions":[],"signatures":[]}],
+        "id":1}'
+      - '{"jsonrpc":"2.0", "method":"condenser_api.broadcast_transaction_synchronous",
+        "params":[{"ref_block_num":1097,"ref_block_prefix":2181793527,"expiration":"2016-03-24T18:00:21","operations":[["pow",{"worker_account":"cloop3","block_id":"00000449f7860b82b4fbe2f317c670e9f01d6d9a","nonce":3899,"work":{"worker":"STM7P5TDnA87Pj9T4mf6YHrhzjC1KbPZpNxLWCcVcHxNYXakpoT4F","input":"ae8e7c677119d22385f8c48026fee7aad7bba693bf788d7f27047f40b47738c0","signature":"1f38fe9a3f9989f84bd94aa5bbc88beaf09b67f825aa4450cf5105d111149ba6db560b582c7dbb026c7fc9c2eb5051815a72b17f6896ed59d3851d9a0f9883ca7a","work":"000e7b209d58f2e64b36e9bf12b999c6c7af168cc3fc41eb7f8a4bf796c174c3"},"props":{"account_creation_fee":{"amount":"10000","precision":3,"nai":"@@000000021"},"maximum_block_size":131072,"hbd_interest_rate":1000}}]],"extensions":[],"signatures":[]}],
+        "id":1}'
     expected_curl_responses:
-    - missing required posting authority
-    - transaction tapos exception
+      - missing required posting authority
+      - transaction tapos exception
     client_docs:
-    - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#broadcast-api)"
-    - "[beem](https://beem.readthedocs.io/en/latest/beem.transactionbuilder.html)"
-    - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/TransactionBuilder)"
+      - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#broadcast-api)"
+      - "[beem](https://beem.readthedocs.io/en/latest/beem.transactionbuilder.html)"
+      - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/TransactionBuilder)"
   - api_method: condenser_api.get_account_count
     purpose: Returns the number of accounts.
     parameter_json: []
@@ -79,6 +79,8 @@
     curl_examples:
     - '{"jsonrpc":"2.0", "method":"condenser_api.get_account_count", "params":[],
       "id":1}'
+    client_docs:
+      - "[hivexplorer](https://hivexplorer.com/api-docs?q=get_account_count)"
   - api_method: condenser_api.get_account_history
     purpose: |
       Returns a history of all operations for a given account.  Parameters:
@@ -103,9 +105,9 @@
 
       Also see: [account_history_api.get_account_history]({{ '/apidefinitions/#account_history_api.get_account_history' | relative_url }}), [Paginated API Methods]({{ '/tutorials-recipes/paginated-api-methods.html#condenser_apiget_account_history' | relative_url }})
     parameter_json:
-    - ''
-    - 0
-    - 1000
+      - ''
+      - 0
+      - 1000
     expected_response_json: |
       [99, {
         "trx_id": "0000000000000000000000000000000000000000",
@@ -117,23 +119,22 @@
         "op": {}
       }]
     curl_examples:
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_account_history", "params":["hiveio",
-      1000, 1000], "id":1}'
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_account_history", "params":["hiveio",
-      -1, 1000], "id":1}'
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_account_history", "params":["bob",
-      -1, 1000, 1], "id":1}'
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_account_history", "params":["charlie",
-      -1, 1000, 262144], "id":1}'
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_account_history", "params":["emma",
-      -1, 1000, 0, 1], "id":1}'
-    client_docs:
-    - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-account-history)"
-    - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-account-history)"
-    - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
-    - "[hivesql](https://docs.hivesql.io/technical-informations/state-tables/followers)"
-    - "[hivesql](https://docs.hivesql.io/technical-informations/state-tables/mutes)"
-    - "[hivesql](https://docs.hivesql.io/technical-informations/state-tables/mutesfollows)"
+      - '{"jsonrpc":"2.0", "method":"condenser_api.get_account_history", "params":["hiveio",
+        1000, 1000], "id":1}'
+      - '{"jsonrpc":"2.0", "method":"condenser_api.get_account_history", "params":["hiveio",
+        -1, 1000], "id":1}'
+      - '{"jsonrpc":"2.0", "method":"condenser_api.get_account_history", "params":["bob",
+        -1, 1000, 1], "id":1}'
+      - '{"jsonrpc":"2.0", "method":"condenser_api.get_account_history", "params":["charlie",
+        -1, 1000, 262144], "id":1}'
+      - '{"jsonrpc":"2.0", "method":"condenser_api.get_account_history", "params":["emma",
+        -1, 1000, 0, 1], "id":1}'
+    client_docs:
+      - "[hivexplorer](https://hivexplorer.com/api-docs?q=get_account_history)"
+      - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-account-history)"
+      - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-account-history)"
+      - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
+      - "[hivesql](https://docs.hivesql.io/technical-informations/state-tables/followers)"
   - api_method: condenser_api.get_account_reputations
     since: HF13
     purpose: |
@@ -146,28 +147,19 @@
 
       Also see: [follow_api.get_account_reputations]({{ '/apidefinitions/#follow_api.get_account_reputations' | relative_url }})
     parameter_json:
-    - ''
-    - 1000
+      - ''
+      - 1000
     expected_response_json: []
     curl_examples:
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_account_reputations", "params":["hiveio",
-      1], "id":1}'
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_account_reputations", "params":["a",
+      - '{"jsonrpc":"2.0", "method":"condenser_api.get_account_reputations", "params":["hiveio",
+        1], "id":1}'
+      - '{"jsonrpc":"2.0", "method":"condenser_api.get_account_reputations", "params":["a",
       10], "id":1}'
     client_docs:
-    - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-account-reputations)"
-    - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-account-reputations)"
-    - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
-  - api_method: condenser_api.get_account_votes
-    disabled: true
-    purpose: |
-      No longer supported.  Use: [database_api.list_votes]({{ '/apidefinitions/#database_api.list_votes' | relative_url }})
-
-      <p>&nbsp;</p><p>&nbsp;</p><p>&nbsp;</p><p>&nbsp;</p><p>&nbsp;</p>
-    client_docs:
-    - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-account-votes)"
-    - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-account-votes)"
-    - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
+      - "[hivexplorer](https://hivexplorer.com/api-docs?q=get_account_reputations)"
+      - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-account-reputations)"
+      - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-account-reputations)"
+      - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
   - api_method: condenser_api.get_accounts
     purpose: |
       Returns accounts, queried by name.  Parameters: `account:string array`; `delayed_votes_active:boolean`
@@ -179,7 +171,7 @@
 
       Also see: [database_api.find_accounts]({{ '/apidefinitions/#database_api.find_accounts' | relative_url }})
     parameter_json:
-    - - ''
+      - - ''
     expected_response_json: |
       {
         "id": 1370484,
@@ -305,13 +297,14 @@
         "guest_bloggers": []
       }
     curl_examples:
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_accounts", "params":[["hiveio"]], "id":1}'
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_accounts", "params":[["hiveio", "alice"], true], "id":1}'
+      - '{"jsonrpc":"2.0", "method":"condenser_api.get_accounts", "params":[["hiveio"]], "id":1}'
+      - '{"jsonrpc":"2.0", "method":"condenser_api.get_accounts", "params":[["hiveio", "alice"], true], "id":1}'
     client_docs:
-    - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-accounts)"
-    - "[beem](https://beem.readthedocs.io/en/latest/beem.blockchain.html#beem.blockchain.Blockchain.get_all_accounts)"
-    - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
-    - "[hivesql](https://docs.hivesql.io/technical-informations/state-tables/accounts)"
+      - "[hivexplorer](https://hivexplorer.com/api-docs?q=get_accounts)"
+      - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-accounts)"
+      - "[beem](https://beem.readthedocs.io/en/latest/beem.blockchain.html#beem.blockchain.Blockchain.get_all_accounts)"
+      - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
+      - "[hivesql](https://docs.hivesql.io/technical-informations/state-tables/accounts)"
   - api_method: condenser_api.get_active_votes
     purpose: |
       Returns all votes for the given post.  Parameters: `author:string`; `permlink:string`
@@ -321,27 +314,28 @@
       | `"hiveio"` | `"firstpost"` | Queries votes for content with a slug `@hiveio/firstpost` |
       | `"alice"` | `"a-post-by-alice"` | Queries votes for content with a slug `@alice/a-post-by-alice` |
     parameter_json:
-    - ''
-    - ''
+      - ''
+      - ''
     expected_response_json:
-    - voter: ''
-      weight: ''
-      rshares: 0
-      percent: 0
-      reputation: ''
-      time: '1970-01-01T00:00:00'
+      - voter: ''
+        weight: ''
+        rshares: 0
+        percent: 0
+        reputation: ''
+        time: '1970-01-01T00:00:00'
     curl_examples:
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_active_votes", "params":["hiveio",
-      "firstpost"], "id":1}'
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_active_votes", "params":["alice",
-      "a-post-by-alice"], "id":1}'
+      - '{"jsonrpc":"2.0", "method":"condenser_api.get_active_votes", "params":["hiveio",
+        "firstpost"], "id":1}'
+      - '{"jsonrpc":"2.0", "method":"condenser_api.get_active_votes", "params":["alice",
+        "a-post-by-alice"], "id":1}'
     expected_curl_responses:
-    - Invalid parameters
-    - Invalid parameters
+      - Invalid parameters
+      - Invalid parameters
     client_docs:
-    - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-active-votes)"
-    - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-active-votes)"
-    - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
+      - "[hivexplorer](https://hivexplorer.com/api-docs?q=get_active_votes)"
+      - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-active-votes)"
+      - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-active-votes)"
+      - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
   - api_method: condenser_api.get_active_witnesses
     purpose: |
       Returns the list of active witnesses.
@@ -350,13 +344,14 @@
     parameter_json: []
     expected_response_json: []
     curl_examples:
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_active_witnesses", "params":[],
+      - '{"jsonrpc":"2.0", "method":"condenser_api.get_active_witnesses", "params":[],
       "id":1}'
     client_docs:
-    - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-active-witnesses)"
-    - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-active-witnesses)"
-    - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
-    - "[hivesql](https://docs.hivesql.io/technical-informations/state-tables/witnesses)"
+      - "[hivexplorer](https://hivexplorer.com/api-docs?q=get_active_witnesses)"
+      - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-active-witnesses)"
+      - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-active-witnesses)"
+      - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
+      - "[hivesql](https://docs.hivesql.io/technical-informations/state-tables/witnesses)"
   - api_method: condenser_api.get_block
     purpose: |
       Returns a block.  Parameters: `block_num:int`
@@ -382,14 +377,15 @@
       signing_key: STM8GC13uCZbP44HzMLV6zPZGwVQ8Nt4Kji8PapsPiNq1BK153XTX
       transaction_ids: []
     curl_examples:
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_block", "params":[1], "id":1}'
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_block", "params":[8675309], "id":1}'
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_block", "params":[62396745],
+      - '{"jsonrpc":"2.0", "method":"condenser_api.get_block", "params":[1], "id":1}'
+      - '{"jsonrpc":"2.0", "method":"condenser_api.get_block", "params":[8675309], "id":1}'
+      - '{"jsonrpc":"2.0", "method":"condenser_api.get_block", "params":[62396745],
       "id":1}'
     client_docs:
-    - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-block)"
-    - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-block)"
-    - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
+      - "[hivexplorer](https://hivexplorer.com/api-docs?q=get_block)"
+      - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-block)"
+      - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-block)"
+      - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
   - api_method: condenser_api.get_block_header
     purpose: |
       Returns a block header.  Parameters: `block_num:int`
@@ -402,7 +398,7 @@
 
       Also see: [block_api.get_block_header]({{ '/apidefinitions/#block_api.get_block_header' | relative_url }})
     parameter_json:
-    - 1
+      - 1
     expected_response_json:
       previous: '0000000000000000000000000000000000000000'
       timestamp: '2016-03-24T16:05:00'
@@ -410,16 +406,17 @@
       transaction_merkle_root: '0000000000000000000000000000000000000000'
       extensions: []
     curl_examples:
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_block_header", "params":[1],
-      "id":1}'
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_block_header", "params":[8675309],
-      "id":1}'
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_block_header", "params":[62396745],
-      "id":1}'
-    client_docs:
-    - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-block-header)"
-    - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-block-header)"
-    - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
+      - '{"jsonrpc":"2.0", "method":"condenser_api.get_block_header", "params":[1],
+        "id":1}'
+      - '{"jsonrpc":"2.0", "method":"condenser_api.get_block_header", "params":[8675309],
+        "id":1}'
+      - '{"jsonrpc":"2.0", "method":"condenser_api.get_block_header", "params":[62396745],
+        "id":1}'
+    client_docs:
+      - "[hivexplorer](https://hivexplorer.com/api-docs?q=get_block_header)"
+      - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-block-header)"
+      - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-block-header)"
+      - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
   - api_method: condenser_api.get_blog
     purpose: |
       Returns the list of blog entries for an account.  Parameters: `account:string`; `start_entry_id:int`; `limit:int` up to 500
@@ -431,69 +428,70 @@
 
       Also see: [Paginated API Methods]({{ '/tutorials-recipes/paginated-api-methods.html#condenser_apiget_blog' | relative_url }})
     parameter_json:
-    - hiveio
-    - 0
-    - 1
+      - hiveio
+      - 0
+      - 1
     expected_response_json:
-    - comment:
-        id: 0
-        author: hiveio
-        permlink: firstpost
-        category: meta
-        parent_author: ''
-        parent_permlink: meta
-        title: Welcome to Hive!
-        body: Hive is a social media platform where anyone can earn HIVE points by
-          posting. The more people who like a post, the more HIVE the poster earns.
-          Anyone can sell their HIVE for cash or vest it to boost their voting power.
-        json_metadata: ''
-        last_update: '2016-03-30T18:30:18'
-        created: '2016-03-30T18:30:18'
-        active: '2018-04-09T12:00:42'
-        last_payout: '2016-08-24T19:59:42'
-        depth: 0
-        children: 336
-        net_rshares: 0
-        abs_rshares: 0
-        vote_rshares: 0
-        children_abs_rshares: '26169324897669'
-        cashout_time: '1969-12-31T23:59:59'
-        max_cashout_time: '1969-12-31T23:59:59'
-        total_vote_weight: 0
-        reward_weight: 10000
-        total_payout_value:
-          amount: '942'
-          precision: 3
-          nai: "@@000000013"
-        curator_payout_value:
-          amount: '756'
-          precision: 3
-          nai: "@@000000013"
-        author_rewards: 3548
-        net_votes: 90
-        root_author: hiveio
-        root_permlink: firstpost
-        max_accepted_payout:
-          amount: '1000000000'
-          pecision: 3
-          nai: "@@000000013"
-        percent_hbd: 10000
-        allow_replies: true
-        allow_votes: true
-        allow_curation_rewards: true
-        beneficiaries: []
-      blog: hiveio
-      reblog_on: '1970-01-01T00:00:00'
-      entry_id: 0
-    curl_examples:
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_blog", "params":["hiveio",0,1],
-      "id":1}'
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_blog", "params":["alice",0,50],
-      "id":1}'
-    client_docs:
-    - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-blog)"
-    - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-blog)"
-    - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
+      - comment:
+          id: 0
+          author: hiveio
+          permlink: firstpost
+          category: meta
+          parent_author: ''
+          parent_permlink: meta
+          title: Welcome to Hive!
+          body: Hive is a social media platform where anyone can earn HIVE points by
+            posting. The more people who like a post, the more HIVE the poster earns.
+            Anyone can sell their HIVE for cash or vest it to boost their voting power.
+          json_metadata: ''
+          last_update: '2016-03-30T18:30:18'
+          created: '2016-03-30T18:30:18'
+          active: '2018-04-09T12:00:42'
+          last_payout: '2016-08-24T19:59:42'
+          depth: 0
+          children: 336
+          net_rshares: 0
+          abs_rshares: 0
+          vote_rshares: 0
+          children_abs_rshares: '26169324897669'
+          cashout_time: '1969-12-31T23:59:59'
+          max_cashout_time: '1969-12-31T23:59:59'
+          total_vote_weight: 0
+          reward_weight: 10000
+          total_payout_value:
+            amount: '942'
+            precision: 3
+            nai: "@@000000013"
+          curator_payout_value:
+            amount: '756'
+            precision: 3
+            nai: "@@000000013"
+          author_rewards: 3548
+          net_votes: 90
+          root_author: hiveio
+          root_permlink: firstpost
+          max_accepted_payout:
+            amount: '1000000000'
+            pecision: 3
+            nai: "@@000000013"
+          percent_hbd: 10000
+          allow_replies: true
+          allow_votes: true
+          allow_curation_rewards: true
+          beneficiaries: []
+        blog: hiveio
+        reblog_on: '1970-01-01T00:00:00'
+        entry_id: 0
+    curl_examples:
+      - '{"jsonrpc":"2.0", "method":"condenser_api.get_blog", "params":["hiveio",0,1],
+        "id":1}'
+      - '{"jsonrpc":"2.0", "method":"condenser_api.get_blog", "params":["alice",0,50],
+      "id":1}'
+    client_docs:
+      - "[hivexplorer](https://hivexplorer.com/api-docs?q=get_blog)"
+      - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-blog)"
+      - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-blog)"
+      - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
   - api_method: condenser_api.get_blog_authors
     purpose: |
       Returns a list of authors that have had their content reblogged on a given blog account.  Parameters: `account:string`
@@ -503,19 +501,19 @@
       | `"hiveio"` | Queries for account named "hiveio". |
       | `"alice"` | Queries for accounts named alice". |
     parameter_json:
-    - ''
+      - ''
     expected_response_json:
-    - author: ''
-      count: 0
+      - author: ''
+        count: 0
     curl_examples:
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_blog_authors", "params":["hiveio"],
-      "id":1}'
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_blog_authors", "params":["alice"],
-      "id":1}'
+      - '{"jsonrpc":"2.0", "method":"condenser_api.get_blog_authors", "params":["hiveio"],
+        "id":1}'
+      - '{"jsonrpc":"2.0", "method":"condenser_api.get_blog_authors", "params":["alice"],
+        "id":1}'
     client_docs:
-    - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-blog-authors)"
-    - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-blog-authors)"
-    - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
+      - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-blog-authors)"
+      - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-blog-authors)"
+      - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
   - api_method: condenser_api.get_blog_entries
     purpose: |
       Returns a list of blog entries for an account.  Parameters: `account:string`; `start_entry_id:int`; `limit:int` up to 500
@@ -527,24 +525,25 @@
 
       Also see: [Paginated API Methods]({{ '/tutorials-recipes/paginated-api-methods.html#condenser_apiget_blog_entries' | relative_url }})
     parameter_json:
-    - hiveio
-    - 0
-    - 1
+      - hiveio
+      - 0
+      - 1
     expected_response_json:
-    - author: hiveio
-      permlink: firstpost
-      blog: hiveio
-      reblog_on: '1970-01-01T00:00:00'
-      entry_id: 0
-    curl_examples:
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_blog_entries", "params":["hiveio",0,1],
-      "id":1}'
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_blog_entries", "params":["alice",0,50],
-      "id":1}'
-    client_docs:
-    - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-blog-entries)"
-    - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-blog-entries)"
-    - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
+      - author: hiveio
+        permlink: firstpost
+        blog: hiveio
+        reblog_on: '1970-01-01T00:00:00'
+        entry_id: 0
+    curl_examples:
+      - '{"jsonrpc":"2.0", "method":"condenser_api.get_blog_entries", "params":["hiveio",0,1],
+        "id":1}'
+      - '{"jsonrpc":"2.0", "method":"condenser_api.get_blog_entries", "params":["alice",0,50],
+        "id":1}'
+    client_docs:
+      - "[hivexplorer](https://hivexplorer.com/api-docs?q=get_blog_entries)"
+      - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-blog-entries)"
+      - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-blog-entries)"
+      - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
   - api_method: condenser_api.get_chain_properties
     purpose: Returns the chain properties.
     parameter_json: []
@@ -554,12 +553,13 @@
       hbd_interest_rate: 1000
       account_subsidy_limit: 0
     curl_examples:
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_chain_properties", "params":[],
-      "id":1}'
+      - '{"jsonrpc":"2.0", "method":"condenser_api.get_chain_properties", "params":[],
+        "id":1}'
     client_docs:
-    - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-chain-properties)"
-    - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-chain-properties)"
-    - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
+      - "[hivexplorer](https://hivexplorer.com/api-docs?q=get_chain_properties)"
+      - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-chain-properties)"
+      - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-chain-properties)"
+      - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
   - api_method: condenser_api.get_comment_discussions_by_payout
     since: HF17
     purpose: |
@@ -575,15 +575,16 @@
       truncate_body: 0
     expected_response_json: []
     curl_examples:
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_comment_discussions_by_payout",
-      "params":[{"tag":"hive","limit":1}], "id":1}'
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_comment_discussions_by_payout",
-      "params":[{"tag":"photography","limit":10,"truncate_body":0}], "id":1}'
+      - '{"jsonrpc":"2.0", "method":"condenser_api.get_comment_discussions_by_payout",
+        "params":[{"tag":"hive","limit":1}], "id":1}'
+      - '{"jsonrpc":"2.0", "method":"condenser_api.get_comment_discussions_by_payout",
+        "params":[{"tag":"photography","limit":10,"truncate_body":0}], "id":1}'
     client_docs:
-    - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-comment-discussions-by-payout)"
-    - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-comment-discussions-by-payout)"
-    - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
-    - "[hivesql](https://docs.hivesql.io/technical-informations/state-tables/tags)"
+      - "[hivexplorer](https://hivexplorer.com/api-docs?q=get_comment_discussions_by_payout)"
+      - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-comment-discussions-by-payout)"
+      - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-comment-discussions-by-payout)"
+      - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
+      - "[hivesql](https://docs.hivesql.io/technical-informations/state-tables/tags)"
   - api_method: condenser_api.get_config
     purpose: |
       Returns information about compile-time constants.  See: [Understanding
@@ -593,11 +594,12 @@
     parameter_json: []
     expected_response_json: {}
     curl_examples:
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_config", "params":[], "id":1}'
+      - '{"jsonrpc":"2.0", "method":"condenser_api.get_config", "params":[], "id":1}'
     client_docs:
-    - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-config)"
-    - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-config)"
-    - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
+      - "[hivexplorer](https://hivexplorer.com/api-docs?q=get_config)"
+      - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-config)"
+      - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-config)"
+      - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
   - api_method: condenser_api.get_content
     purpose: |
       Returns the content (post or comment).  Parameters: `author:string`; `permlink:string`
@@ -607,8 +609,8 @@
       | `"hiveio"` | `"firstpost"` | Queries content with a slug `@hiveio/firstpost` |
       | `"alice"` | `"a-post-by-alice"` | Queries content with a slug `@alice/a-post-by-alice` |
     parameter_json:
-    - ''
-    - ''
+      - ''
+      - ''
     expected_response_json:
       id: 0
       author: ''
@@ -656,18 +658,19 @@
       body_length: 0
       reblogged_by: []
     curl_examples:
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_content", "params":["hiveio",
-      "firstpost"], "id":1}'
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_content", "params":["alice",
-      "a-post-by-alice"], "id":1}'
+      - '{"jsonrpc":"2.0", "method":"condenser_api.get_content", "params":["hiveio",
+        "firstpost"], "id":1}'
+      - '{"jsonrpc":"2.0", "method":"condenser_api.get_content", "params":["alice",
+        "a-post-by-alice"], "id":1}'
     expected_curl_responses:
-    - Invalid parameters
-    - Invalid parameters
-    client_docs:
-    - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-content)"
-    - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-content)"
-    - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
-    - "[hivesql](https://docs.hivesql.io/technical-informations/state-tables/comments)"
+      - Invalid parameters
+      - Invalid parameters
+    client_docs:
+      - "[hivexplorer](https://hivexplorer.com/api-docs?q=get_content)"
+      - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-content)"
+      - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-content)"
+      - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
+      - "[hivesql](https://docs.hivesql.io/technical-informations/state-tables/comments)"
   - api_method: condenser_api.get_content_replies
     purpose: |
       Returns a list of replies.  Parameters: `author:string`; `permlink:string`
@@ -680,8 +683,8 @@
 
       Also see: [tags_api.get_content_replies]({{ '/apidefinitions/#tags_api.get_content_replies' | relative_url }})
     parameter_json:
-    - ''
-    - ''
+      - ''
+      - ''
     expected_response_json:
       id: 0
       author: ''
@@ -729,17 +732,18 @@
       body_length: 0
       reblogged_by: []
     curl_examples:
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_content_replies", "params":["hiveio",
-      "firstpost"], "id":1}'
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_content_replies", "params":["alice",
-      "a-post-by-alice"], "id":1}'
+      - '{"jsonrpc":"2.0", "method":"condenser_api.get_content_replies", "params":["hiveio",
+        "firstpost"], "id":1}'
+      - '{"jsonrpc":"2.0", "method":"condenser_api.get_content_replies", "params":["alice",
+        "a-post-by-alice"], "id":1}'
     expected_curl_responses:
-    - Invalid parameters
-    - Invalid parameters
+      - Invalid parameters
+      - Invalid parameters
     client_docs:
-    - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-content-replies)"
-    - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-content-replies)"
-    - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
+      - "[hivexplorer](https://hivexplorer.com/api-docs?q=get_content_replies)"
+      - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-content-replies)"
+      - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-content-replies)"
+      - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
   - api_method: condenser_api.get_conversion_requests
     purpose: |
       Returns a list of conversion request.  Parameters: `id:integer`
@@ -750,17 +754,18 @@
 
       Also see: [database_api.list_hbd_conversion_requests]({{ '/apidefinitions/#database_api.list_hbd_conversion_requests' | relative_url }})
     parameter_json:
-    - 0
+      - 0
     expected_response_json: []
     curl_examples:
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_conversion_requests", "params":[1234],
-      "id":1}'
+      - '{"jsonrpc":"2.0", "method":"condenser_api.get_conversion_requests", "params":[1234],
+        "id":1}'
     expected_curl_responses:
-    - Given account does not exist
+      - Given account does not exist
     client_docs:
-    - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-conversion-requests)"
-    - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-conversion-requests)"
-    - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
+      - "[hivexplorer](https://hivexplorer.com/api-docs?q=get_conversion_requests)"
+      - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-conversion-requests)"
+      - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-conversion-requests)"
+      - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
   - api_method: condenser_api.get_current_median_history_price
     purpose:
     parameter_json: []
@@ -768,271 +773,35 @@
       base: 0.000 HIVE
       quote: 0.000 HIVE
     curl_examples:
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_current_median_history_price",
-      "params":[], "id":1}'
-    client_docs:
-    - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-current-median-history-price)"
-    - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-current-median-history-price)"
-    - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
-  - api_method: condenser_api.get_discussions_by_active
-    purpose: Returns a list of discussions based on active.
-    parameter_json:
-    - tag: ''
-      limit: 0
-      filter_tags: []
-      select_authors: []
-      select_tags: []
-      truncate_body: 0
-    expected_response_json: []
-    curl_examples:
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_discussions_by_active", "params":[{"tag":"hive","limit":1}],
-      "id":1}'
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_discussions_by_active", "params":[{"tag":"photography","limit":10,"truncate_body":0}],
-      "id":1}'
+      - '{"jsonrpc":"2.0", "method":"condenser_api.get_current_median_history_price",
+        "params":[], "id":1}'
     client_docs:
-    - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-discussions-by-active)"
-    - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-discussions-by-active)"
-    - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
-    - "[hivesql](https://docs.hivesql.io/technical-informations/state-tables/tags)"
+      - "[hivexplorer](https://hivexplorer.com/api-docs?q=get_current_median_history_price)"
+      - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-current-median-history-price)"
+      - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-current-median-history-price)"
+      - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
   - api_method: condenser_api.get_discussions_by_author_before_date
     purpose: |
       Returns a list of discussions based on author before date.
 
       Also see: [tags_api.get_discussions_by_author_before_date]({{ '/apidefinitions/#tags_api.get_discussions_by_author_before_date' | relative_url }}), [Paginated API Methods]({{ '/tutorials-recipes/paginated-api-methods.html#condenser_apiget_discussions_by_author_before_date' | relative_url }})
     parameter_json:
-    - ''
-    - ''
-    - '1970-01-01T00:00:00'
-    - 100
-    expected_response_json: []
-    curl_examples:
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_discussions_by_author_before_date",
-      "params":["hiveio","firstpost","2016-04-19T22:49:43",1], "id":1}'
-    expected_curl_responses:
-    - Invalid parameters
-    client_docs:
-    - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-discussions-by-author-before-date)"
-    - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-discussions-by-author-before-date)"
-    - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
-    - "[hivesql](https://docs.hivesql.io/technical-informations/state-tables/tags)"
-  - api_method: condenser_api.get_discussions_by_blog
-    purpose: |
-      Returns a list of discussions by blog.
-
-      Also see: [tags_api.get_discussions_by_blog]({{ '/apidefinitions/#tags_api.get_discussions_by_blog' | relative_url }})
-    parameter_json:
-    - tag: ''
-      limit: 0
-      filter_tags: []
-      select_authors: []
-      select_tags: []
-      truncate_body: 0
-    expected_response_json: []
-    curl_examples:
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_discussions_by_blog", "params":[{"tag":"hiveio","limit":1}],
-      "id":1}'
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_discussions_by_blog", "params":[{"tag":"alice","limit":10}],
-      "id":1}'
-    client_docs:
-    - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-discussions-by-blog)"
-    - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-discussions-by-blog)"
-    - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
-    - "[hivesql](https://docs.hivesql.io/technical-informations/state-tables/tags)"
-  - api_method: condenser_api.get_discussions_by_cashout
-    purpose: Returns a list of discussions by cashout.
-    parameter_json:
-    - tag: ''
-      limit: 0
-      filter_tags: []
-      select_authors: []
-      select_tags: []
-      truncate_body: 0
-    expected_response_json: []
-    curl_examples:
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_discussions_by_cashout", "params":[{"tag":"hive","limit":1}],
-      "id":1}'
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_discussions_by_cashout", "params":[{"tag":"photography","limit":10,"truncate_body":0}],
-      "id":1}'
-    client_docs:
-    - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-discussions-by-cashout)"
-    - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-discussions-by-cashout)"
-    - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
-    - "[hivesql](https://docs.hivesql.io/technical-informations/state-tables/tags)"
-  - api_method: condenser_api.get_discussions_by_children
-    purpose: Returns a list of discussions by children.
-    parameter_json:
-    - tag: ''
-      limit: 0
-      filter_tags: []
-      select_authors: []
-      select_tags: []
-      truncate_body: 0
-    expected_response_json: []
-    curl_examples:
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_discussions_by_children", "params":[{"tag":"hive","limit":1}],
-      "id":1}'
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_discussions_by_children", "params":[{"tag":"photography","limit":10,"truncate_body":0}],
-      "id":1}'
-    client_docs:
-    - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-discussions-by-children)"
-    - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-discussions-by-children)"
-    - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
-    - "[hivesql](https://docs.hivesql.io/technical-informations/state-tables/tags)"
-  - api_method: condenser_api.get_discussions_by_comments
-    purpose: |
-      Returns a list of discussions by comments.
-
-      Also see: [tags_api.get_discussions_by_comments]({{ '/apidefinitions/#tags_api.get_discussions_by_comments' | relative_url }})
-    parameter_json:
-    - start_author: ''
-      start_permlink: ''
-      limit: 100
+      - ''
+      - ''
+      - '1970-01-01T00:00:00'
+      - 100
     expected_response_json: []
     curl_examples:
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_discussions_by_comments", "params":[{"start_author":"hiveio","start_permlink":"firstpost","limit":1}],
-      "id":1}'
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_discussions_by_comments", "params":[{"start_author":"alice","start_permlink":"a-post-by-alice","limit":10,"truncate_body":0}],
-      "id":1}'
+      - '{"jsonrpc":"2.0", "method":"condenser_api.get_discussions_by_author_before_date",
+        "params":["hiveio","firstpost","2016-04-19T22:49:43",1], "id":1}'
     expected_curl_responses:
-    - Invalid parameters
-    - Invalid parameters
-    client_docs:
-    - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-discussions-by-comments)"
-    - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-discussions-by-comments)"
-    - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
-    - "[hivesql](https://docs.hivesql.io/technical-informations/state-tables/tags)"
-  - api_method: condenser_api.get_discussions_by_created
-    purpose: |
-      Returns a list of discussions by created.
-
-      Also see: [tags_api.get_discussions_by_created]({{ '/apidefinitions/#tags_api.get_discussions_by_created' | relative_url }})
-    parameter_json:
-    - tag: ''
-      limit: 0
-      filter_tags: []
-      select_authors: []
-      select_tags: []
-      truncate_body: 0
-    expected_response_json: []
-    curl_examples:
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_discussions_by_created", "params":[{"tag":"hive","limit":1}],
-      "id":1}'
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_discussions_by_created", "params":[{"tag":"photography","limit":10,"truncate_body":0}],
-      "id":1}'
-    client_docs:
-    - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-discussions-by-created)"
-    - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-discussions-by-created)"
-    - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
-    - "[hivesql](https://docs.hivesql.io/technical-informations/state-tables/tags)"
-  - api_method: condenser_api.get_discussions_by_feed
-    since: HF14
-    purpose: Returns a list of discussions by feed.
-    parameter_json:
-    - tag: ''
-      start_author: ''
-      start_permlink: ''
-      limit: 100
-    expected_response_json: []
-    curl_examples:
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_discussions_by_feed", "params":[{"tag":"hive","limit":1}],
-      "id":1}'
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_discussions_by_feed", "params":[{"tag":"photography","limit":10,"truncate_body":0}],
-      "id":1}'
-    client_docs:
-    - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-discussions-by-feed)"
-    - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-discussions-by-feed)"
-    - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
-    - "[hivesql](https://docs.hivesql.io/technical-informations/state-tables/tags)"
-  - api_method: condenser_api.get_discussions_by_hot
-    purpose: |
-      Returns a list of discussions by hot.
-
-      Also see: [tags_api.get_discussions_by_hot]({{ '/apidefinitions/#tags_api.get_discussions_by_hot' | relative_url }})
-    parameter_json:
-    - tag: ''
-      limit: 0
-      filter_tags: []
-      select_authors: []
-      select_tags: []
-      truncate_body: 0
-    expected_response_json: []
-    curl_examples:
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_discussions_by_hot", "params":[{"tag":"hive","limit":1}],
-      "id":1}'
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_discussions_by_hot", "params":[{"tag":"photography","limit":10,"truncate_body":0}],
-      "id":1}'
-    client_docs:
-    - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-discussions-by-hot)"
-    - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-discussions-by-hot)"
-    - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
-    - "[hivesql](https://docs.hivesql.io/technical-informations/state-tables/tags)"
-  - api_method: condenser_api.get_discussions_by_promoted
-    since: HF13
-    purpose: |
-      Returns a list of discussions by promoted.
-
-      Also see: [tags_api.get_discussions_by_promoted]({{ '/apidefinitions/#tags_api.get_discussions_by_promoted' | relative_url }})
-    parameter_json:
-    - tag: ''
-      limit: 0
-      filter_tags: []
-      select_authors: []
-      select_tags: []
-      truncate_body: 0
-    expected_response_json: []
-    curl_examples:
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_discussions_by_promoted", "params":[{"tag":"hive","limit":1}],
-      "id":1}'
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_discussions_by_promoted", "params":[{"tag":"photography","limit":10,"truncate_body":0}],
-      "id":1}'
-    client_docs:
-    - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-discussions-by-promoted)"
-    - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-discussions-by-promoted)"
-    - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
-    - "[hivesql](https://docs.hivesql.io/technical-informations/state-tables/tags)"
-  - api_method: condenser_api.get_discussions_by_trending
-    purpose: |
-      Returns a list of discussions by trending.
-
-      Also see: [tags_api.get_discussions_by_trending]({{ '/apidefinitions/#tags_api.get_discussions_by_trending' | relative_url }})
-    parameter_json:
-    - tag: ''
-      limit: 0
-      filter_tags: []
-      select_authors: []
-      select_tags: []
-      truncate_body: 0
-    expected_response_json: []
-    curl_examples:
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_discussions_by_trending", "params":[{"tag":"hive","limit":1}],
-      "id":1}'
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_discussions_by_trending", "params":[{"tag":"photography","limit":10,"truncate_body":0}],
-      "id":1}'
-    client_docs:
-    - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-discussions-by-trending)"
-    - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-discussions-by-trending)"
-    - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
-    - "[hivesql](https://docs.hivesql.io/technical-informations/state-tables/tags)"
-  - api_method: condenser_api.get_discussions_by_votes
-    purpose: Returns a list of discussions by votes.
-    parameter_json:
-    - tag: ''
-      limit: 0
-      filter_tags: []
-      select_authors: []
-      select_tags: []
-      truncate_body: 0
-    expected_response_json: []
-    curl_examples:
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_discussions_by_votes", "params":[{"tag":"hive","limit":1}],
-      "id":1}'
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_discussions_by_votes", "params":[{"tag":"photography","limit":10,"truncate_body":0}],
-      "id":1}'
+      - Invalid parameters
     client_docs:
-    - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-discussions-by-votes)"
-    - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-discussions-by-votes)"
-    - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
-    - "[hivesql](https://docs.hivesql.io/technical-informations/state-tables/tags)"
+      - "[hivexplorer](https://hivexplorer.com/api-docs?q=get_discussions_by_author_before_date)"
+      - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-discussions-by-author-before-date)"
+      - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-discussions-by-author-before-date)"
+      - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
+      - "[hivesql](https://docs.hivesql.io/technical-informations/state-tables/tags)"
   - api_method: condenser_api.get_dynamic_global_properties
     purpose: |
       Returns the current dynamic global properties.  See: [Understanding
@@ -1067,13 +836,14 @@
       last_irreversible_block_num: 0
       vote_power_reserve_rate: 40
     curl_examples:
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_dynamic_global_properties", "params":[],
-      "id":1}'
+      - '{"jsonrpc":"2.0", "method":"condenser_api.get_dynamic_global_properties", "params":[],
+        "id":1}'
     client_docs:
-    - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-dynamic-global-properties)"
-    - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-dynamic-global-properties)"
-    - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
-    - "[hivesql](https://docs.hivesql.io/technical-informations/state-tables/dynamicglobalproperties)"
+      - "[hivexplorer](https://hivexplorer.com/api-docs?q=get_dynamic_global_properties)"
+      - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-dynamic-global-properties)"
+      - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-dynamic-global-properties)"
+      - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
+      - "[hivesql](https://docs.hivesql.io/technical-informations/state-tables/dynamicglobalproperties)"
   - api_method: condenser_api.get_escrow
     since: HF14
     purpose: |
@@ -1085,12 +855,13 @@
     - 0
     expected_response_json:
     curl_examples:
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_escrow", "params":["hiveio",
-      1234], "id":1}'
+      - '{"jsonrpc":"2.0", "method":"condenser_api.get_escrow", "params":["hiveio",
+        1234], "id":1}'
     client_docs:
-    - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-escrow)"
-    - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-escrow)"
-    - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
+      - "[hivexplorer](https://hivexplorer.com/api-docs?q=get_escrow)"
+      - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-escrow)"
+      - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-escrow)"
+      - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
   - api_method: condenser_api.get_expiring_vesting_delegations
     since: HF17
     purpose: |
@@ -1101,73 +872,24 @@
       | `"hiveio"` | `"2018-01-01T00:00:00"` | Queries for expiring vesting after January 1st, 2018. |
       | `"alice"` | `"2017-12-01T00:00:00"` | Queries for expiring vesting after December 1st, 2017. |
     parameter_json:
-    - ''
-    - '1970-01-01T00:00:00'
+      - ''
+      - '1970-01-01T00:00:00'
     expected_response_json:
-    - id: 0
-      delegator: ''
-      vesting_shares: 0.000000 VESTS
-      expiration: '1970-01-01T00:00:00'
-    curl_examples:
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_expiring_vesting_delegations",
-      "params":["hiveio","2018-01-01T00:00:00"], "id":1}'
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_expiring_vesting_delegations",
-      "params":["alice","2017-12-01T00:00:00"], "id":1}'
-    client_docs:
-    - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#api-call)"
-    - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-expiring-vesting-delegations)"
-    - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
-    - "[hivesql](https://docs.hivesql.io/technical-informations/state-tables/delegations)"
-  - api_method: condenser_api.get_feed
-    since: HF14
-    purpose: |
-      Returns a list of items in an account's feed.  Parameters: `account:string`; `start_entry_id:int`; `limit:int` up to 500
-
-      | `account` (string) | `start_entry_id` (int) | `limit` (int) | |
-      |-------------------|---------------|---------------|-|
-      | `"hiveio"` | `0` | `1` | Queries the account named `hiveio` starting on the first item, up to 1 result. |
-      | `"alice"` | `1` | `10` | Queries the account named `alice` starting on the second item, up to 10 results. |
-
-      Also see: [Paginated API Methods]({{ '/tutorials-recipes/paginated-api-methods.html#condenser_apiget_feed' | relative_url }})
-    parameter_json:
-    - ''
-    - 0
-    - 1
-    expected_response_json: []
-    curl_examples:
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_feed", "params":["hiveio",0,1],
-      "id":1}'
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_feed", "params":["alice",1,10],
-      "id":1}'
-    client_docs:
-    - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-feed)"
-    - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-feed)"
-    - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
-  - api_method: condenser_api.get_feed_entries
-    since: HF14
-    purpose: |
-      Returns a list of entries in an account's feed.  Parameters: `account:string`; `start_entry_id:int`; `limit:int` up to 500
-
-      | `account` (string) | `start_entry_id` (int) | `limit` (int) | |
-      |-------------------|---------------|---------------|-|
-      | `"hiveio"` | `0` | `1` | Queries the account named `hiveio` starting on the first item, up to 1 result. |
-      | `"alice"` | `1` | `10` | Queries the account named `alice` starting on the second item, up to 10 results. |
-
-      Also see: [Paginated API Methods]({{ '/tutorials-recipes/paginated-api-methods.html#condenser_apiget_feed_entries' | relative_url }})
-    parameter_json:
-    - ''
-    - 0
-    - 1
-    expected_response_json: []
-    curl_examples:
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_feed_entries", "params":["hiveio",0,1],
-      "id":1}'
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_feed_entries", "params":["alice",1,10],
-      "id":1}'
-    client_docs:
-    - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-feed-entries)"
-    - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-feed-entries)"
-    - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
+      - id: 0
+        delegator: ''
+        vesting_shares: 0.000000 VESTS
+        expiration: '1970-01-01T00:00:00'
+    curl_examples:
+      - '{"jsonrpc":"2.0", "method":"condenser_api.get_expiring_vesting_delegations",
+        "params":["hiveio","2018-01-01T00:00:00"], "id":1}'
+      - '{"jsonrpc":"2.0", "method":"condenser_api.get_expiring_vesting_delegations",
+        "params":["alice","2017-12-01T00:00:00"], "id":1}'
+    client_docs:
+      - "[hivexplorer](https://hivexplorer.com/api-docs?q=get_expiring_vesting_delegations)"
+      - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#api-call)"
+      - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-expiring-vesting-delegations)"
+      - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
+      - "[hivesql](https://docs.hivesql.io/technical-informations/state-tables/delegations)"
   - api_method: condenser_api.get_feed_history
     purpose: |
       Returns the history of price feed values.
@@ -1181,11 +903,12 @@
         quote: 0.000 HIVE
       price_history: []
     curl_examples:
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_feed_history", "params":[], "id":1}'
+      - '{"jsonrpc":"2.0", "method":"condenser_api.get_feed_history", "params":[], "id":1}'
     client_docs:
-    - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-feed-history)"
-    - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-feed-history)"
-    - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
+      - "[hivexplorer](https://hivexplorer.com/api-docs?q=get_feed_history)"
+      - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-feed-history)"
+      - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-feed-history)"
+      - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
   - api_method: condenser_api.get_follow_count
     since: HF9
     purpose: |
@@ -1196,23 +919,22 @@
       | `"hiveio"` | Queries the account named `hiveio`. |
       | `"alice"` | Queries the account named `alice`. |
     parameter_json:
-    - ''
+      - ''
     expected_response_json:
       account: ''
       follower_count: 0
       following_count: 0
     curl_examples:
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_follow_count", "params":["hiveio"],
-      "id":1}'
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_follow_count", "params":["alice"],
-      "id":1}'
+      - '{"jsonrpc":"2.0", "method":"condenser_api.get_follow_count", "params":["hiveio"],
+        "id":1}'
+      - '{"jsonrpc":"2.0", "method":"condenser_api.get_follow_count", "params":["alice"],
+        "id":1}'
     client_docs:
-    - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-follow-count)"
-    - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-follow-count)"
-    - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
-    - "[hivesql](https://docs.hivesql.io/technical-informations/state-tables/followers)"
-    - "[hivesql](https://docs.hivesql.io/technical-informations/state-tables/mutes)"
-    - "[hivesql](https://docs.hivesql.io/technical-informations/state-tables/mutesfollows)"
+      - "[hivexplorer](https://hivexplorer.com/api-docs?q=get_follow_count)"
+      - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-follow-count)"
+      - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-follow-count)"
+      - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
+      - "[hivesql](https://docs.hivesql.io/technical-informations/state-tables/followers)"
   - api_method: condenser_api.get_followers
     since: HF9
     purpose: |
@@ -1225,16 +947,16 @@
 
       Also see: [Paginated API Methods]({{ '/tutorials-recipes/paginated-api-methods.html#condenser_apiget_followers' | relative_url }})
     parameter_json:
-    - ''
-    - ''
-    - ''
-    - 1
+      - ''
+      - ''
+      - ''
+      - 1
     expected_response_json: []
     curl_examples:
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_followers", "params":["hiveio",null,"blog",10],
-      "id":1}'
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_followers", "params":["alice",null,"ignore",100],
-      "id":1}'
+      - '{"jsonrpc":"2.0", "method":"condenser_api.get_followers", "params":["hiveio",null,"blog",10],
+        "id":1}'
+      - '{"jsonrpc":"2.0", "method":"condenser_api.get_followers", "params":["alice",null,"ignore",100],
+        "id":1}'
     mainnet:
       working: true
       detail: ''
@@ -1243,12 +965,11 @@
       detail: Will not work because this function requires jussi to work correctly
         which is not available on the testnet
     client_docs:
-    - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-followers)"
-    - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-followers)"
-    - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
-    - "[hivesql](https://docs.hivesql.io/technical-informations/state-tables/followers)"
-    - "[hivesql](https://docs.hivesql.io/technical-informations/state-tables/mutes)"
-    - "[hivesql](https://docs.hivesql.io/technical-informations/state-tables/mutesfollows)"
+      - "[hivexplorer](https://hivexplorer.com/api-docs?q=get_followers)"
+      - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-followers)"
+      - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-followers)"
+      - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
+      - "[hivesql](https://docs.hivesql.io/technical-informations/state-tables/followers)"
   - api_method: condenser_api.get_following
     since: HF9
     purpose: |
@@ -1261,23 +982,22 @@
 
       Also see: [Paginated API Methods]({{ '/tutorials-recipes/paginated-api-methods.html#condenser_apiget_following' | relative_url }})
     parameter_json:
-    - ''
-    - ''
-    - ''
-    - 1
+      - ''
+      - ''
+      - ''
+      - 1
     expected_response_json: []
     curl_examples:
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_following", "params":["hiveio",null,"blog",10],
-      "id":1}'
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_following", "params":["alice",null,"ignore",100],
-      "id":1}'
+      - '{"jsonrpc":"2.0", "method":"condenser_api.get_following", "params":["hiveio",null,"blog",10],
+        "id":1}'
+      - '{"jsonrpc":"2.0", "method":"condenser_api.get_following", "params":["alice",null,"ignore",100],
+        "id":1}'
     client_docs:
-    - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-following)"
-    - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-following)"
-    - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
-    - "[hivesql](https://docs.hivesql.io/technical-informations/state-tables/followers)"
-    - "[hivesql](https://docs.hivesql.io/technical-informations/state-tables/mutes)"
-    - "[hivesql](https://docs.hivesql.io/technical-informations/state-tables/mutesfollows)"
+      - "[hivexplorer](https://hivexplorer.com/api-docs?q=get_following)"
+      - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-following)"
+      - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-following)"
+      - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
+      - "[hivesql](https://docs.hivesql.io/technical-informations/state-tables/followers)"
   - api_method: condenser_api.get_hardfork_version
     purpose: |
       Returns the current hardfork version.
@@ -1286,12 +1006,13 @@
     parameter_json: []
     expected_response_json: 0.0.0
     curl_examples:
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_hardfork_version", "params":[],
-      "id":1}'
+      - '{"jsonrpc":"2.0", "method":"condenser_api.get_hardfork_version", "params":[],
+        "id":1}'
     client_docs:
-    - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-hardfork-version)"
-    - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-hardfork-version)"
-    - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
+      - "[hivexplorer](https://hivexplorer.com/api-docs?q=get_hardfork_version)"
+      - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-hardfork-version)"
+      - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-hardfork-version)"
+      - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
   - api_method: condenser_api.get_key_references
     since: HF16
     purpose: |
@@ -1299,16 +1020,17 @@
 
       Also see: [account_by_key_api.get_key_references]({{ '/apidefinitions/#account_by_key_api.get_key_references' | relative_url }})
     parameter_json:
-    - - STM6vJmrwaX5TjgTS9dPH8KsArso5m91fVodJvv91j7G765wqcNM9
+      - - STM6vJmrwaX5TjgTS9dPH8KsArso5m91fVodJvv91j7G765wqcNM9
     expected_response_json:
-    - - hiveio
+      - - hiveio
     curl_examples:
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_key_references", "params":[["STM6vJmrwaX5TjgTS9dPH8KsArso5m91fVodJvv91j7G765wqcNM9"]],
-      "id":1}'
+      - '{"jsonrpc":"2.0", "method":"condenser_api.get_key_references", "params":[["STM6vJmrwaX5TjgTS9dPH8KsArso5m91fVodJvv91j7G765wqcNM9"]],
+        "id":1}'
     client_docs:
-    - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-key-references)"
-    - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-key-references)"
-    - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
+      - "[hivexplorer](https://hivexplorer.com/api-docs?q=get_key_references)"
+      - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-key-references)"
+      - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-key-references)"
+      - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
   - api_method: condenser_api.get_market_history
     purpose: |
       Returns the market history for the internal HBD:HIVE market.  Parameters: `bucket_seconds:int`; `start:timestamp`; `end:timestamp`
@@ -1323,40 +1045,41 @@
 
       Also see: [market_history_api.get_market_history]({{ '/apidefinitions/#market_history_api.get_market_history' | relative_url }})
     parameter_json:
-    - 0
-    - '1970-01-01T00:00:00'
-    - '1970-01-01T00:00:00'
+      - 0
+      - '1970-01-01T00:00:00'
+      - '1970-01-01T00:00:00'
     expected_response_json:
-    - id: 0
-      open: '1970-01-01T00:00:00'
-      seconds: 0
-      hive:
-        high: 0
-        low: 0
-        open: 0
-        close: 0
-        volume: 0
-      non_hive:
-        high: 0
-        low: 0
-        open: 0
-        close: 0
-        volume: 0
-    curl_examples:
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_market_history", "params":[15,"2018-01-01T00:00:00","2018-01-02T00:00:00"],
-      "id":1}'
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_market_history", "params":[60,"2018-01-01T00:00:00","2018-01-02T00:00:00"],
-      "id":1}'
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_market_history", "params":[300,"2018-01-01T00:00:00","2018-01-02T00:00:00"],
-      "id":1}'
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_market_history", "params":[3600,"2018-01-01T00:00:00","2018-01-02T00:00:00"],
-      "id":1}'
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_market_history", "params":[86400,"2018-01-01T00:00:00","2018-01-02T00:00:00"],
-      "id":1}'
-    client_docs:
-    - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#api-call)"
-    - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-market-history)"
-    - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
+      - id: 0
+        open: '1970-01-01T00:00:00'
+        seconds: 0
+        hive:
+          high: 0
+          low: 0
+          open: 0
+          close: 0
+          volume: 0
+        non_hive:
+          high: 0
+          low: 0
+          open: 0
+          close: 0
+          volume: 0
+    curl_examples:
+      - '{"jsonrpc":"2.0", "method":"condenser_api.get_market_history", "params":[15,"2018-01-01T00:00:00","2018-01-02T00:00:00"],
+        "id":1}'
+      - '{"jsonrpc":"2.0", "method":"condenser_api.get_market_history", "params":[60,"2018-01-01T00:00:00","2018-01-02T00:00:00"],
+        "id":1}'
+      - '{"jsonrpc":"2.0", "method":"condenser_api.get_market_history", "params":[300,"2018-01-01T00:00:00","2018-01-02T00:00:00"],
+        "id":1}'
+      - '{"jsonrpc":"2.0", "method":"condenser_api.get_market_history", "params":[3600,"2018-01-01T00:00:00","2018-01-02T00:00:00"],
+        "id":1}'
+      - '{"jsonrpc":"2.0", "method":"condenser_api.get_market_history", "params":[86400,"2018-01-01T00:00:00","2018-01-02T00:00:00"],
+        "id":1}'
+    client_docs:
+      - "[hivexplorer](https://hivexplorer.com/api-docs?q=get_market_history)"
+      - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#api-call)"
+      - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-market-history)"
+      - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
   - api_method: condenser_api.get_market_history_buckets
     purpose: |
       Returns the bucket seconds being tracked by the plugin.
@@ -1364,18 +1087,19 @@
       Also see: [market_history_api.get_market_history_buckets]({{ '/apidefinitions/#market_history_api.get_market_history_buckets' | relative_url }})
     parameter_json: []
     expected_response_json:
-    - 15
-    - 60
-    - 300
-    - 3600
-    - 86400
-    curl_examples:
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_market_history_buckets", "params":[],
-      "id":1}'
-    client_docs:
-    - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-market-history-buckets)"
-    - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-market-history-buckets)"
-    - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
+      - 15
+      - 60
+      - 300
+      - 3600
+      - 86400
+    curl_examples:
+      - '{"jsonrpc":"2.0", "method":"condenser_api.get_market_history_buckets", "params":[],
+        "id":1}'
+    client_docs:
+      - "[hivexplorer](https://hivexplorer.com/api-docs?q=get_market_history_buckets)"
+      - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-market-history-buckets)"
+      - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-market-history-buckets)"
+      - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
   - api_method: condenser_api.get_next_scheduled_hardfork
     purpose: |
       Returns the next scheduled hardfork.
@@ -1386,29 +1110,31 @@
       hf_version: 0.0.0
       live_time: '1970-01-01T00:00:00'
     curl_examples:
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_next_scheduled_hardfork", "params":[],
-      "id":1}'
+      - '{"jsonrpc":"2.0", "method":"condenser_api.get_next_scheduled_hardfork", "params":[],
+        "id":1}'
     client_docs:
-    - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-next-scheduled-hardfork)"
-    - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-next-scheduled-hardfork)"
-    - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
+      - "[hivexplorer](https://hivexplorer.com/api-docs?q=get_next_scheduled_hardfork)"
+      - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-next-scheduled-hardfork)"
+      - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-next-scheduled-hardfork)"
+      - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
   - api_method: condenser_api.get_open_orders
     purpose: |
       Returns the open orders for an account.  `account:string`
 
       Also see: [database_api.list_limit_orders]({{ '/apidefinitions/#database_api.list_limit_orders' | relative_url }})
     parameter_json:
-    - ''
+      - ''
     expected_response_json: []
     curl_examples:
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_open_orders", "params":["hiveio"],
-      "id":1}'
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_open_orders", "params":["alice"],
-      "id":1}'
+      - '{"jsonrpc":"2.0", "method":"condenser_api.get_open_orders", "params":["hiveio"],
+        "id":1}'
+      - '{"jsonrpc":"2.0", "method":"condenser_api.get_open_orders", "params":["alice"],
+        "id":1}'
     client_docs:
-    - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-open-orders)"
-    - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-open-orders)"
-    - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
+      - "[hivexplorer](https://hivexplorer.com/api-docs?q=get_open_orders)"
+      - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-open-orders)"
+      - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-open-orders)"
+      - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
   - api_method: condenser_api.get_ops_in_block
     purpose: |
       Returns all operations contained in a block.  Parameters: `block_num:int`; `only_virtual:boolean`
@@ -1420,28 +1146,29 @@
 
       Also see: [account_history_api.get_ops_in_block]({{ '/apidefinitions/#account_history_api.get_ops_in_block' | relative_url }})
     parameter_json:
-    - 0
-    - false
+      - 0
+      - false
     expected_response_json:
-    - trx_id: '0000000000000000000000000000000000000000'
-      block: 0
-      trx_in_block: 0
-      op_in_trx: 0
-      virtual_op: 0
-      timestamp: '2016-10-01T06:31:24'
-      op:
-      - producer_reward
-      - producer: ''
-        vesting_shares: 0.000000 VESTS
-    curl_examples:
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_ops_in_block", "params":[1,false],
-      "id":1}'
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_ops_in_block", "params":[5443322,true],
-      "id":1}'
-    client_docs:
-    - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-ops-in-block)"
-    - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-ops-in-block)"
-    - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
+      - trx_id: '0000000000000000000000000000000000000000'
+        block: 0
+        trx_in_block: 0
+        op_in_trx: 0
+        virtual_op: 0
+        timestamp: '2016-10-01T06:31:24'
+        op:
+        - producer_reward
+        - producer: ''
+          vesting_shares: 0.000000 VESTS
+    curl_examples:
+      - '{"jsonrpc":"2.0", "method":"condenser_api.get_ops_in_block", "params":[1,false],
+        "id":1}'
+      - '{"jsonrpc":"2.0", "method":"condenser_api.get_ops_in_block", "params":[5443322,true],
+        "id":1}'
+    client_docs:
+      - "[hivexplorer](https://hivexplorer.com/api-docs?q=get_ops_in_block)"
+      - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-ops-in-block)"
+      - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-ops-in-block)"
+      - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
   - api_method: condenser_api.get_order_book
     purpose: |
       Returns the internal market order book.  Parameters: `limit:int` up to 500
@@ -1453,17 +1180,18 @@
 
       Also see: [database_api.get_order_book]({{ '/apidefinitions/#database_api.get_order_book' | relative_url }}), [market_history_api.get_order_book]({{ '/apidefinitions/#market_history_api.get_order_book' | relative_url }})
     parameter_json:
-    - 0
+      - 0
     expected_response_json:
       bids: []
       asks: []
     curl_examples:
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_order_book", "params":[10], "id":1}'
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_order_book", "params":[50], "id":1}'
+      - '{"jsonrpc":"2.0", "method":"condenser_api.get_order_book", "params":[10], "id":1}'
+      - '{"jsonrpc":"2.0", "method":"condenser_api.get_order_book", "params":[50], "id":1}'
     client_docs:
-    - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-order-book)"
-    - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-order-book)"
-    - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
+      - "[hivexplorer](https://hivexplorer.com/api-docs?q=get_order_book)"
+      - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-order-book)"
+      - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-order-book)"
+      - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
   - api_method: condenser_api.get_owner_history
     purpose: |
       Returns the owner history of an account.  Parameters: `account:string`
@@ -1474,59 +1202,36 @@
 
       Also see: [database_api.list_owner_histories]({{ '/apidefinitions/#database_api.list_owner_histories' | relative_url }})
     parameter_json:
-    - ''
-    expected_response_json: []
-    curl_examples:
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_owner_history", "params":["hiveio"],
-      "id":1}'
-    client_docs:
-    - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-owner-history)"
-    - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-owner-history)"
-    - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
-  - api_method: condenser_api.get_post_discussions_by_payout
-    since: HF17
-    purpose: |
-      Returns a list of post discussions by payout.
-
-      Also see: [tags_api.get_post_discussions_by_payout]({{ '/apidefinitions/#tags_api.get_post_discussions_by_payout' | relative_url }})
-    parameter_json:
-    - tag: ''
-      limit: 0
-      filter_tags: []
-      select_authors: []
-      select_tags: []
-      truncate_body: 0
+      - ''
     expected_response_json: []
     curl_examples:
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_post_discussions_by_payout",
-      "params":[{"tag":"hive","limit":1}], "id":1}'
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_post_discussions_by_payout",
-      "params":[{"tag":"photography","limit":10,"truncate_body":0}], "id":1}'
+      - '{"jsonrpc":"2.0", "method":"condenser_api.get_owner_history", "params":["hiveio"],
+        "id":1}'
     client_docs:
-    - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-post-discussions-by-payout)"
-    - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-post-discussions-by-payout)"
-    - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
-    - "[hivesql](https://docs.hivesql.io/technical-informations/state-tables/tags)"
+      - "[hivexplorer](https://hivexplorer.com/api-docs?q=get_owner_history)"
+      - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-owner-history)"
+      - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-owner-history)"
+      - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
   - api_method: condenser_api.get_potential_signatures
     purpose: |
       This method will return the set of all public keys that could possibly sign for a given transaction.
 
       Also see: [database_api.get_potential_signatures]({{ '/apidefinitions/#database_api.get_potential_signatures' | relative_url }})
     parameter_json:
-    - ref_block_num: 0
-      ref_block_prefix: 0
-      expiration: '1970-01-01T00:00:00'
-      operations: []
-      extensions: []
-      signatures: []
+      - ref_block_num: 0
+        ref_block_prefix: 0
+        expiration: '1970-01-01T00:00:00'
+        operations: []
+        extensions: []
+        signatures: []
     expected_response_json: []
     curl_examples:
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_potential_signatures", "params":[{"ref_block_num":1097,"ref_block_prefix":2181793527,"expiration":"2016-03-24T18:00:21","operations":[["pow",{"worker_account":"cloop3","block_id":"00000449f7860b82b4fbe2f317c670e9f01d6d9a","nonce":3899,"work":{"worker":"STM7P5TDnA87Pj9T4mf6YHrhzjC1KbPZpNxLWCcVcHxNYXakpoT4F","input":"ae8e7c677119d22385f8c48026fee7aad7bba693bf788d7f27047f40b47738c0","signature":"1f38fe9a3f9989f84bd94aa5bbc88beaf09b67f825aa4450cf5105d111149ba6db560b582c7dbb026c7fc9c2eb5051815a72b17f6896ed59d3851d9a0f9883ca7a","work":"000e7b209d58f2e64b36e9bf12b999c6c7af168cc3fc41eb7f8a4bf796c174c3"},"props":{"account_creation_fee":{"amount":"100000","precision":3,"nai":"@@000000021"},"maximum_block_size":131072,"hbd_interest_rate":1000}}]],"extensions":[],"signatures":[]}],
-      "id":1}'
+      - '{"jsonrpc":"2.0", "method":"condenser_api.get_potential_signatures", "params":[{"ref_block_num":1097,"ref_block_prefix":2181793527,"expiration":"2016-03-24T18:00:21","operations":[["pow",{"worker_account":"cloop3","block_id":"00000449f7860b82b4fbe2f317c670e9f01d6d9a","nonce":3899,"work":{"worker":"STM7P5TDnA87Pj9T4mf6YHrhzjC1KbPZpNxLWCcVcHxNYXakpoT4F","input":"ae8e7c677119d22385f8c48026fee7aad7bba693bf788d7f27047f40b47738c0","signature":"1f38fe9a3f9989f84bd94aa5bbc88beaf09b67f825aa4450cf5105d111149ba6db560b582c7dbb026c7fc9c2eb5051815a72b17f6896ed59d3851d9a0f9883ca7a","work":"000e7b209d58f2e64b36e9bf12b999c6c7af168cc3fc41eb7f8a4bf796c174c3"},"props":{"account_creation_fee":{"amount":"100000","precision":3,"nai":"@@000000021"},"maximum_block_size":131072,"hbd_interest_rate":1000}}]],"extensions":[],"signatures":[]}],
+        "id":1}'
     client_docs:
-    - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-potential-signatures)"
-    - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-potential-signatures)"
-    - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
+      - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-potential-signatures)"
+      - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-potential-signatures)"
+      - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
   - api_method: condenser_api.get_reblogged_by
     since: HF14
     purpose: |
@@ -1537,22 +1242,23 @@
       | `"hiveio"` | `"firstpost"` | Queries reblogs for content with a slug `@hiveio/firstpost` |
       | `"alice"` | `"a-post-by-alice"` | Queries reblogs for content with a slug `@alice/a-post-by-alice` |
     parameter_json:
-    - ''
-    - ''
+      - ''
+      - ''
     expected_response_json: []
     curl_examples:
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_reblogged_by", "params":["hiveio","firstpost"],
-      "id":1}'
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_reblogged_by", "params":["alice","a-post-by-alice"],
-      "id":1}'
+      - '{"jsonrpc":"2.0", "method":"condenser_api.get_reblogged_by", "params":["hiveio","firstpost"],
+        "id":1}'
+      - '{"jsonrpc":"2.0", "method":"condenser_api.get_reblogged_by", "params":["alice","a-post-by-alice"],
+        "id":1}'
     expected_curl_responses:
-    - Invalid parameters
-    - Invalid parameters
-    client_docs:
-    - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-reblogged-by)"
-    - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-reblogged-by)"
-    - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
-    - "[hivesql](https://docs.hivesql.io/technical-informations/state-tables/reblogs)"
+      - Invalid parameters
+      - Invalid parameters
+    client_docs:
+      - "[hivexplorer](https://hivexplorer.com/api-docs?q=get_reblogged_by)"
+      - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-reblogged-by)"
+      - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-reblogged-by)"
+      - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
+      - "[hivesql](https://docs.hivesql.io/technical-informations/state-tables/reblogs)"
   - api_method: condenser_api.get_recent_trades
     purpose: |
       Returns the most recent trades for the internal HBD:HIVE market.  Parameters: `limit:int` up to 1000
@@ -1564,20 +1270,21 @@
 
       Also see: [market_history_api.get_recent_trades]({{ '/apidefinitions/#market_history_api.get_recent_trades' | relative_url }})
     parameter_json:
-    - 1
+      - 1
     expected_response_json:
-    - date: '1970-01-01T00:00:00'
-      current_pays: 0.0 HBD
-      open_pays: 0.0 HIVE
-    curl_examples:
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_recent_trades", "params":[10],
-      "id":1}'
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_recent_trades", "params":[500],
-      "id":1}'
-    client_docs:
-    - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-recent-trades)"
-    - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-recent-trades)"
-    - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
+      - date: '1970-01-01T00:00:00'
+        current_pays: 0.0 HBD
+        open_pays: 0.0 HIVE
+    curl_examples:
+      - '{"jsonrpc":"2.0", "method":"condenser_api.get_recent_trades", "params":[10],
+        "id":1}'
+      - '{"jsonrpc":"2.0", "method":"condenser_api.get_recent_trades", "params":[500],
+        "id":1}'
+    client_docs:
+      - "[hivexplorer](https://hivexplorer.com/api-docs?q=get_recent_trades)"
+      - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-recent-trades)"
+      - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-recent-trades)"
+      - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
   - api_method: condenser_api.get_recovery_request
     since: HF11
     purpose: |
@@ -1589,55 +1296,37 @@
 
       Also see: [database_api.list_account_recovery_requests]({{ '/apidefinitions/#database_api.list_account_recovery_requests' | relative_url }})
     parameter_json:
-    - ''
+      - ''
     expected_response_json:
     curl_examples:
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_recovery_request", "params":["hiveio"],
-      "id":1}'
-    client_docs:
-    - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-recovery-request)"
-    - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-recovery-request)"
-    - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
-  - api_method: condenser_api.get_replies_by_last_update
-    purpose: |
-      Returns a list of replies by last update.  `start_parent_author:string`, `start_permlink:string`, `limit:int` up to 100
-
-      Also see: [Paginated API Methods]({{ '/tutorials-recipes/paginated-api-methods.html#condenser_apiget_replies_by_last_update' | relative_url }})
-    parameter_json:
-    - ''
-    - ''
-    - 1
-    expected_response_json: []
-    curl_examples:
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_replies_by_last_update", "params":["hiveio","firstpost",1],
-      "id":1}'
-    expected_curl_responses:
-    - Invalid parameters
+      - '{"jsonrpc":"2.0", "method":"condenser_api.get_recovery_request", "params":["hiveio"],
+        "id":1}'
     client_docs:
-    - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-replies-by-last-update)"
-    - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-replies-by-last-update)"
-    - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
+      - "[hivexplorer](https://hivexplorer.com/api-docs?q=get_recovery_request)"
+      - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-recovery-request)"
+      - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-recovery-request)"
+      - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
   - api_method: condenser_api.get_required_signatures
     purpose: |
       This API will take a partially signed transaction and a set of public keys that the owner has the ability to sign for and return the minimal subset of public keys that should add signatures to the transaction. Parameters: `trx:object`; `available_keys:[string]`
 
       Also see: [database_api.get_required_signatures]({{ '/apidefinitions/#database_api.get_required_signatures' | relative_url }})
     parameter_json:
-    - ref_block_num: 0
-      ref_block_prefix: 0
-      expiration: '1970-01-01T00:00:00'
-      operations: []
-      extensions: []
-      signatures: []
-    - []
+      - ref_block_num: 0
+        ref_block_prefix: 0
+        expiration: '1970-01-01T00:00:00'
+        operations: []
+        extensions: []
+        signatures: []
+      - []
     expected_response_json: []
     curl_examples:
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_required_signatures", "params":[{"ref_block_num":1097,"ref_block_prefix":2181793527,"expiration":"2016-03-24T18:00:21","operations":[["pow",{"worker_account":"cloop3","block_id":"00000449f7860b82b4fbe2f317c670e9f01d6d9a","nonce":3899,"work":{"worker":"STM7P5TDnA87Pj9T4mf6YHrhzjC1KbPZpNxLWCcVcHxNYXakpoT4F","input":"ae8e7c677119d22385f8c48026fee7aad7bba693bf788d7f27047f40b47738c0","signature":"1f38fe9a3f9989f84bd94aa5bbc88beaf09b67f825aa4450cf5105d111149ba6db560b582c7dbb026c7fc9c2eb5051815a72b17f6896ed59d3851d9a0f9883ca7a","work":"000e7b209d58f2e64b36e9bf12b999c6c7af168cc3fc41eb7f8a4bf796c174c3"},"props":{"account_creation_fee":{"amount":"100000","precision":3,"nai":"@@000000021"},"maximum_block_size":131072,"hbd_interest_rate":1000}}]],"extensions":[],"signatures":[]},[]],
-      "id":1}'
+      - '{"jsonrpc":"2.0", "method":"condenser_api.get_required_signatures", "params":[{"ref_block_num":1097,"ref_block_prefix":2181793527,"expiration":"2016-03-24T18:00:21","operations":[["pow",{"worker_account":"cloop3","block_id":"00000449f7860b82b4fbe2f317c670e9f01d6d9a","nonce":3899,"work":{"worker":"STM7P5TDnA87Pj9T4mf6YHrhzjC1KbPZpNxLWCcVcHxNYXakpoT4F","input":"ae8e7c677119d22385f8c48026fee7aad7bba693bf788d7f27047f40b47738c0","signature":"1f38fe9a3f9989f84bd94aa5bbc88beaf09b67f825aa4450cf5105d111149ba6db560b582c7dbb026c7fc9c2eb5051815a72b17f6896ed59d3851d9a0f9883ca7a","work":"000e7b209d58f2e64b36e9bf12b999c6c7af168cc3fc41eb7f8a4bf796c174c3"},"props":{"account_creation_fee":{"amount":"100000","precision":3,"nai":"@@000000021"},"maximum_block_size":131072,"hbd_interest_rate":1000}}]],"extensions":[],"signatures":[]},[]],
+        "id":1}'
     client_docs:
-    - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-required-signatures)"
-    - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-required-signatures)"
-    - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
+      - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-required-signatures)"
+      - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-required-signatures)"
+      - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
   - api_method: condenser_api.get_reward_fund
     since: HF17
     purpose: |
@@ -1645,7 +1334,7 @@
 
       Also see: [database_api.get_reward_funds]({{ '/apidefinitions/#database_api.get_reward_funds' | relative_url }})
     parameter_json:
-    - post
+      - post
     expected_response_json:
       id: 0
       name: ''
@@ -1658,12 +1347,13 @@
       author_reward_curve: quadratic
       curation_reward_curve: '34723648'
     curl_examples:
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_reward_fund", "params":["post"],
-      "id":1}'
+      - '{"jsonrpc":"2.0", "method":"condenser_api.get_reward_fund", "params":["post"],
+        "id":1}'
     client_docs:
-    - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-reward-fund)"
-    - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-reward-fund)"
-    - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
+      - "[hivexplorer](https://hivexplorer.com/api-docs?q=get_reward_fund)"
+      - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-reward-fund)"
+      - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-reward-fund)"
+      - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
   - api_method: condenser_api.get_savings_withdraw_from
     since: HF14
     purpose: |
@@ -1675,15 +1365,16 @@
 
       Also see: [database_api.list_savings_withdrawals]({{ '/apidefinitions/#database_api.list_savings_withdrawals' | relative_url }})
     parameter_json:
-    - ''
+      - ''
     expected_response_json: []
     curl_examples:
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_savings_withdraw_from", "params":["hiveio"],
-      "id":1}'
+      - '{"jsonrpc":"2.0", "method":"condenser_api.get_savings_withdraw_from", "params":["hiveio"],
+        "id":1}'
     client_docs:
-    - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-savings-withdraw-from)"
-    - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-savings-withdraw-from)"
-    - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
+      - "[hivexplorer](https://hivexplorer.com/api-docs?q=get_savings_withdraw_from)"
+      - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-savings-withdraw-from)"
+      - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-savings-withdraw-from)"
+      - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
   - api_method: condenser_api.get_savings_withdraw_to
     since: HF14
     purpose: |
@@ -1695,111 +1386,16 @@
 
       Also see: [database_api.list_savings_withdrawals]({{ '/apidefinitions/#database_api.list_savings_withdrawals' | relative_url }})
     parameter_json:
-    - ''
-    expected_response_json: []
-    curl_examples:
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_savings_withdraw_to", "params":["hiveio"],
-      "id":1}'
-    client_docs:
-    - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-savings-withdraw-to)"
-    - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-savings-withdraw-to)"
-    - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
-  - api_method: condenser_api.get_state
-    deprecated: true
-    purpose: |
-      Returns the state of a path.  **Deprecated.**  Parameters: `path:string`
-
-      See: [JS: Get State Replacement Api]({{ '/tutorials-javascript/get_state_replacement_api.html' | relative_url }})
-    parameter_json:
-    - ''
-    expected_response_json:
-      current_route: ''
-      props:
-        head_block_number: 0
-        head_block_id: '0000000000000000000000000000000000000000'
-        time: '1970-01-01T00:00:00'
-        current_witness: ''
-        total_pow: '18446744073709551615'
-        num_pow_witnesses: 0
-        virtual_supply: 0.000 HIVE
-        current_supply: 0.000 HIVE
-        confidential_supply: 0.000 HIVE
-        current_hbd_supply: 0.000 HIVE
-        confidential_hbd_supply: 0.000 HIVE
-        total_vesting_fund_hive: 0.000 HIVE
-        total_vesting_shares: 0.000 HIVE
-        total_reward_fund_hive: 0.000 HIVE
-        total_reward_shares2: '0'
-        pending_rewarded_vesting_shares: 0.000 HIVE
-        pending_rewarded_vesting_hive: 0.000 HIVE
-        hbd_interest_rate: 0
-        hbd_print_rate: 10000
-        maximum_block_size: 0
-        current_aslot: 0
-        recent_slots_filled: '0'
-        participation_count: 0
-        last_irreversible_block_num: 0
-        vote_power_reserve_rate: 40
-        average_block_size: 0
-        current_reserve_ratio: 1
-        max_virtual_bandwidth: '0'
-      tag_idx:
-        trending: []
-      tags: {}
-      content: {}
-      accounts: {}
-      witnesses: {}
-      discussion_idx: {}
-      witness_schedule:
-        id: 0
-        current_virtual_time: '0'
-        next_shuffle_block_num: 1
-        current_shuffled_witnesses: []
-        num_scheduled_witnesses: 1
-        top19_weight: 1
-        timeshare_weight: 5
-        miner_weight: 1
-        witness_pay_normalization_factor: 25
-        median_props:
-          account_creation_fee: 0.000 HIVE
-          maximum_block_size: 131072
-          hbd_interest_rate: 1000
-        majority_version: 0.0.0
-        max_voted_witnesses: 19
-        max_miner_witnesses: 1
-        max_runner_witnesses: 1
-        hardfork_required_witnesses: 17
-      feed_price:
-        base: 0.000 HIVE
-        quote: 0.000 HIVE
-      error: ''
-    curl_examples:
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_state", "params":["/@hiveio"],
-      "id":1}'
-    client_docs:
-    - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-state)"
-    - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-state)"
-    - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
-    - "[hivesql](https://docs.hivesql.io/technical-informations/state-tables/comments)"
-    - "[hivesql](https://docs.hivesql.io/technical-informations/state-tables/tags)"
-  - api_method: condenser_api.get_tags_used_by_author
-    purpose: |
-      Returns a list of tags used by an author.  Parameters: `author:string`
-
-      | `account` (string) | |
-      |--------------------|-|
-      | `"hiveio"` | Queries the tags used by the account named "hiveio". |
-    parameter_json:
-    - ''
+      - ''
     expected_response_json: []
     curl_examples:
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_tags_used_by_author", "params":["hiveio"],
-      "id":1}'
+      - '{"jsonrpc":"2.0", "method":"condenser_api.get_savings_withdraw_to", "params":["hiveio"],
+        "id":1}'
     client_docs:
-    - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#api-call)"
-    - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-tags-used-by-author)"
-    - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
-    - "[hivesql](https://docs.hivesql.io/technical-informations/state-tables/tags)"
+      - "[hivexplorer](https://hivexplorer.com/api-docs?q=get_savings_withdraw_to)"
+      - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-savings-withdraw-to)"
+      - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-savings-withdraw-to)"
+      - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
   - api_method: condenser_api.get_ticker
     purpose: |
       Returns the market ticker for the internal HBD:HIVE market.
@@ -1814,11 +1410,12 @@
       hive_volume: 0.000 HIVE
       hbd_volume: 0.000 HIVE
     curl_examples:
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_ticker", "params":[], "id":1}'
+      - '{"jsonrpc":"2.0", "method":"condenser_api.get_ticker", "params":[], "id":1}'
     client_docs:
-    - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-ticker)"
-    - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-ticker)"
-    - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
+      - "[hivexplorer](https://hivexplorer.com/api-docs?q=get_ticker)"
+      - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-ticker)"
+      - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-ticker)"
+      - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
   - api_method: condenser_api.get_trade_history
     purpose: |
       Returns the trade history for the internal HBD:HIVE market.  Parameters: `start:timestamp`; `end:timestamp`; `limit:int` up to 1000
@@ -1829,20 +1426,21 @@
 
       Also see: [market_history_api.get_trade_history]({{ '/apidefinitions/#market_history_api.get_trade_history' | relative_url }})
     parameter_json:
-    - '1970-01-01T00:00:00'
-    - '1970-01-01T00:00:00'
-    - 1000
+      - '1970-01-01T00:00:00'
+      - '1970-01-01T00:00:00'
+      - 1000
     expected_response_json:
-    - date: '1970-01-01T00:00:00'
-      current_pays: 0.000 HBD
-      open_pays: 0.000 HIVE
+      - date: '1970-01-01T00:00:00'
+        current_pays: 0.000 HBD
+        open_pays: 0.000 HIVE
     curl_examples:
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_trade_history", "params":["2018-01-01T00:00:00","2018-01-02T00:00:00",10],
-      "id":1}'
+      - '{"jsonrpc":"2.0", "method":"condenser_api.get_trade_history", "params":["2018-01-01T00:00:00","2018-01-02T00:00:00",10],
+        "id":1}'
     client_docs:
-    - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-trade-history)"
-    - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-trade-history)"
-    - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
+      - "[hivexplorer](https://hivexplorer.com/api-docs?q=get_trade_history)"
+      - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-trade-history)"
+      - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-trade-history)"
+      - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
   - api_method: condenser_api.get_transaction
     purpose: |
       Returns the details of a transaction based on a transaction id.  Parameters: `trx_id:string`
@@ -1853,7 +1451,7 @@
 
       Also see: [account_history_api.get_transaction]({{ '/apidefinitions/#account_history_api.get_transaction' | relative_url }})
     parameter_json:
-    - ''
+      - ''
     expected_response_json:
       ref_block_num: 0
       ref_block_prefix: 0
@@ -1865,34 +1463,35 @@
       block_num: 0
       transaction_num: 0
     curl_examples:
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_transaction", "params":["6fde0190a97835ea6d9e651293e90c89911f933c"],
-      "id":1}'
+      - '{"jsonrpc":"2.0", "method":"condenser_api.get_transaction", "params":["6fde0190a97835ea6d9e651293e90c89911f933c"],
+        "id":1}'
     expected_curl_responses:
-    - account_history_api_plugin not enabled
+      - account_history_api_plugin not enabled
     client_docs:
-    - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-transaction)"
-    - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-transaction)"
-    - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
+      - "[hivexplorer](https://hivexplorer.com/api-docs?q=get_transaction)"
+      - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-transaction)"
+      - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-transaction)"
+      - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
   - api_method: condenser_api.get_transaction_hex
     purpose: |
       Returns a hexdump of the serialized binary form of a transaction.
 
       Also see: [database_api.get_transaction_hex]({{ '/apidefinitions/#database_api.get_transaction_hex' | relative_url }})
     parameter_json:
-    - ref_block_num: 0
-      ref_block_prefix: 0
-      expiration: '1970-01-01T00:00:00'
-      operations: []
-      extensions: []
-      signatures: []
+      - ref_block_num: 0
+        ref_block_prefix: 0
+        expiration: '1970-01-01T00:00:00'
+        operations: []
+        extensions: []
+        signatures: []
     expected_response_json: ''
     curl_examples:
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_transaction_hex", "params":[{"ref_block_num":1097,"ref_block_prefix":2181793527,"expiration":"2016-03-24T18:00:21","operations":[["pow",{"worker_account":"cloop3","block_id":"00000449f7860b82b4fbe2f317c670e9f01d6d9a","nonce":3899,"work":{"worker":"STM7P5TDnA87Pj9T4mf6YHrhzjC1KbPZpNxLWCcVcHxNYXakpoT4F","input":"ae8e7c677119d22385f8c48026fee7aad7bba693bf788d7f27047f40b47738c0","signature":"1f38fe9a3f9989f84bd94aa5bbc88beaf09b67f825aa4450cf5105d111149ba6db560b582c7dbb026c7fc9c2eb5051815a72b17f6896ed59d3851d9a0f9883ca7a","work":"000e7b209d58f2e64b36e9bf12b999c6c7af168cc3fc41eb7f8a4bf796c174c3"},"props":{"account_creation_fee":{"amount":"100000","precision":3,"nai":"@@000000021"},"maximum_block_size":131072,"hbd_interest_rate":1000}}]],"extensions":[],"signatures":[]}],
-      "id":1}'
+      - '{"jsonrpc":"2.0", "method":"condenser_api.get_transaction_hex", "params":[{"ref_block_num":1097,"ref_block_prefix":2181793527,"expiration":"2016-03-24T18:00:21","operations":[["pow",{"worker_account":"cloop3","block_id":"00000449f7860b82b4fbe2f317c670e9f01d6d9a","nonce":3899,"work":{"worker":"STM7P5TDnA87Pj9T4mf6YHrhzjC1KbPZpNxLWCcVcHxNYXakpoT4F","input":"ae8e7c677119d22385f8c48026fee7aad7bba693bf788d7f27047f40b47738c0","signature":"1f38fe9a3f9989f84bd94aa5bbc88beaf09b67f825aa4450cf5105d111149ba6db560b582c7dbb026c7fc9c2eb5051815a72b17f6896ed59d3851d9a0f9883ca7a","work":"000e7b209d58f2e64b36e9bf12b999c6c7af168cc3fc41eb7f8a4bf796c174c3"},"props":{"account_creation_fee":{"amount":"100000","precision":3,"nai":"@@000000021"},"maximum_block_size":131072,"hbd_interest_rate":1000}}]],"extensions":[],"signatures":[]}],
+        "id":1}'
     client_docs:
-    - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-transaction-hex)"
-    - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-transaction-hex)"
-    - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
+      - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-transaction-hex)"
+      - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-transaction-hex)"
+      - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
   - api_method: condenser_api.get_trending_tags
     purpose: |
       Returns the list of trending tags.  Parameter: `start_tag:string`; `limit:int` up to 100
@@ -1904,25 +1503,26 @@
 
       Also see: [Paginated API Methods]({{ '/tutorials-recipes/paginated-api-methods.html#condenser_apiget_trending_tags' | relative_url }})
     parameter_json:
-    - ''
-    - 1
+      - ''
+      - 1
     expected_response_json:
-    - name: ''
-      total_payouts: 0.000 HBD
-      net_votes: 0
-      top_posts: 0
-      comments: 0
-      trending: ''
-    curl_examples:
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_trending_tags", "params":[null,100],
-      "id":1}'
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_trending_tags", "params":["hive",10],
-      "id":1}'
-    client_docs:
-    - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-trending-tags)"
-    - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-trending-tags)"
-    - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
-    - "[hivesql](https://docs.hivesql.io/technical-informations/state-tables/tags)"
+      - name: ''
+        total_payouts: 0.000 HBD
+        net_votes: 0
+        top_posts: 0
+        comments: 0
+        trending: ''
+    curl_examples:
+      - '{"jsonrpc":"2.0", "method":"condenser_api.get_trending_tags", "params":[null,100],
+        "id":1}'
+      - '{"jsonrpc":"2.0", "method":"condenser_api.get_trending_tags", "params":["hive",10],
+        "id":1}'
+    client_docs:
+      - "[hivexplorer](https://hivexplorer.com/api-docs?q=get_trending_tags)"
+      - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-trending-tags)"
+      - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-trending-tags)"
+      - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
+      - "[hivesql](https://docs.hivesql.io/technical-informations/state-tables/tags)"
   - api_method: condenser_api.get_version
     purpose: |
       Returns the versions of blockchain, hive, and FC.
@@ -1934,11 +1534,12 @@
       hive_revision: ''
       fc_revision: ''
     curl_examples:
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_version", "params":[], "id":1}'
+      - '{"jsonrpc":"2.0", "method":"condenser_api.get_version", "params":[], "id":1}'
     client_docs:
-    - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-version)"
-    - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-version)"
-    - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
+      - "[hivexplorer](https://hivexplorer.com/api-docs?q=get_version)"
+      - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-version)"
+      - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-version)"
+      - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
   - api_method: condenser_api.get_vesting_delegations
     since: HF17
     purpose: |
@@ -1950,23 +1551,24 @@
 
       Also see: [database_api.list_vesting_delegations]({{ '/apidefinitions/#database_api.list_vesting_delegations' | relative_url }}), [Paginated API Methods]({{ '/tutorials-recipes/paginated-api-methods.html#condenser_apiget_vesting_delegations' | relative_url }})
     parameter_json:
-    - ''
-    - ''
-    - 1
+      - ''
+      - ''
+      - 1
     expected_response_json:
-    - id: 0
-      delegator: ''
-      delegatee: ''
-      vesting_shares: 0.000000 VESTS
-      min_delegation_time: '1970-01-01T00:00:00'
+      - id: 0
+        delegator: ''
+        delegatee: ''
+        vesting_shares: 0.000000 VESTS
+        min_delegation_time: '1970-01-01T00:00:00'
     curl_examples:
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_vesting_delegations", "params":["hiveio",null,10],
-      "id":1}'
+      - '{"jsonrpc":"2.0", "method":"condenser_api.get_vesting_delegations", "params":["hiveio",null,10],
+        "id":1}'
     client_docs:
-    - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-vesting-delegations)"
-    - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-vesting-delegations)"
-    - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
-    - "[hivesql](https://docs.hivesql.io/technical-informations/state-tables/delegations)"
+      - "[hivexplorer](https://hivexplorer.com/api-docs?q=get_vesting_delegations)"
+      - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-vesting-delegations)"
+      - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-vesting-delegations)"
+      - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
+      - "[hivesql](https://docs.hivesql.io/technical-informations/state-tables/delegations)"
   - api_method: condenser_api.get_volume
     purpose: |
       Returns the market volume for the past 24 hours.
@@ -1977,11 +1579,12 @@
       hive_volume: 0.000 HIVE
       hbd_volume: 0.000 HIVE
     curl_examples:
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_volume", "params":[], "id":1}'
+      - '{"jsonrpc":"2.0", "method":"condenser_api.get_volume", "params":[], "id":1}'
     client_docs:
-    - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-volume)"
-    - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-volume)"
-    - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
+      - "[hivexplorer](https://hivexplorer.com/api-docs?q=get_volume)"
+      - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-volume)"
+      - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-volume)"
+      - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
   - api_method: condenser_api.get_withdraw_routes
     purpose: |
       Returns the withdraw routes for an account.  Parameters: `account:string`; `type:string`
@@ -1994,25 +1597,26 @@
 
       Also see: [database_api.list_withdraw_vesting_routes]({{ '/apidefinitions/#database_api.list_withdraw_vesting_routes' | relative_url }})
     parameter_json:
-    - ''
-    - ''
+      - ''
+      - ''
     expected_response_json:
-    - id: 0
-      from_account: ''
-      to_account: ''
-      percent: 0
-      auto_vest: false
-    curl_examples:
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_withdraw_routes", "params":["hiveio","outgoing"],
-      "id":1}'
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_withdraw_routes", "params":["hiveio","incoming"],
-      "id":1}'
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_withdraw_routes", "params":["hiveio","all"],
-      "id":1}'
-    client_docs:
-    - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-withdraw-routes)"
-    - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-withdraw-routes)"
-    - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
+      - id: 0
+        from_account: ''
+        to_account: ''
+        percent: 0
+        auto_vest: false
+    curl_examples:
+      - '{"jsonrpc":"2.0", "method":"condenser_api.get_withdraw_routes", "params":["hiveio","outgoing"],
+        "id":1}'
+      - '{"jsonrpc":"2.0", "method":"condenser_api.get_withdraw_routes", "params":["hiveio","incoming"],
+        "id":1}'
+      - '{"jsonrpc":"2.0", "method":"condenser_api.get_withdraw_routes", "params":["hiveio","all"],
+        "id":1}'
+    client_docs:
+      - "[hivexplorer](https://hivexplorer.com/api-docs?q=get_withdraw_routes)"
+      - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-withdraw-routes)"
+      - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-withdraw-routes)"
+      - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
   - api_method: condenser_api.get_witness_by_account
     purpose: |
       Returns the witness of an account.  Parameters: `account:string`
@@ -2023,7 +1627,7 @@
 
       Also see: [database_api.list_witnesses]({{ '/apidefinitions/#database_api.list_witnesses' | relative_url }})
     parameter_json:
-    - ''
+      - ''
     expected_response_json:
       id: 0
       owner: ''
@@ -2051,24 +1655,26 @@
       hardfork_version_vote: ''
       hardfork_time_vote: '1970-01-01T00:00:00'
     curl_examples:
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_witness_by_account", "params":["hiveio"],
-      "id":1}'
+      - '{"jsonrpc":"2.0", "method":"condenser_api.get_witness_by_account", "params":["hiveio"],
+        "id":1}'
     client_docs:
-    - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-witness-by-account)"
-    - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-witness-by-account)"
-    - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
-    - "[hivesql](https://docs.hivesql.io/technical-informations/state-tables/witnesses)"
+      - "[hivexplorer](https://hivexplorer.com/api-docs?q=get_witness_by_account)"
+      - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-witness-by-account)"
+      - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-witness-by-account)"
+      - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
+      - "[hivesql](https://docs.hivesql.io/technical-informations/state-tables/witnesses)"
   - api_method: condenser_api.get_witness_count
     purpose:
     parameter_json: []
     expected_response_json: 0
     curl_examples:
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_witness_count", "params":[],
-      "id":1}'
+      - '{"jsonrpc":"2.0", "method":"condenser_api.get_witness_count", "params":[],
+        "id":1}'
     client_docs:
-    - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-witness-count)"
-    - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-witness-count)"
-    - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
+      - "[hivexplorer](https://hivexplorer.com/api-docs?q=get_witness_count)"
+      - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-witness-count)"
+      - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-witness-count)"
+      - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
   - api_method: condenser_api.get_witness_schedule
     purpose: |
       Returns the current witness schedule.
@@ -2095,28 +1701,30 @@
       max_runner_witnesses: 1
       hardfork_required_witnesses: 17
     curl_examples:
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_witness_schedule", "params":[],
-      "id":1}'
+      - '{"jsonrpc":"2.0", "method":"condenser_api.get_witness_schedule", "params":[],
+        "id":1}'
     client_docs:
-    - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-witness-schedule)"
-    - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-witness-schedule)"
-    - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
+      - "[hivexplorer](https://hivexplorer.com/api-docs?q=get_witness_schedule)"
+      - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-witness-schedule)"
+      - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-witness-schedule)"
+      - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
   - api_method: condenser_api.get_witnesses
     purpose: |
       Returns current witnesses.
 
       Also see: [database_api.list_witnesses]({{ '/apidefinitions/#database_api.list_witnesses' | relative_url }})
     parameter_json:
-    - - 0
+      - - 0
     expected_response_json: []
     curl_examples:
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_witnesses", "params":[[28]],
-      "id":1}'
+      - '{"jsonrpc":"2.0", "method":"condenser_api.get_witnesses", "params":[[28]],
+        "id":1}'
     client_docs:
-    - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-witnesses)"
-    - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-witnesses)"
-    - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
-    - "[hivesql](https://docs.hivesql.io/technical-informations/state-tables/witnesses)"
+      - "[hivexplorer](https://hivexplorer.com/api-docs?q=get_witnesses)"
+      - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-witnesses)"
+      - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-witnesses)"
+      - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
+      - "[hivesql](https://docs.hivesql.io/technical-informations/state-tables/witnesses)"
   - api_method: condenser_api.get_witnesses_by_vote
     purpose: |
       Returns current witnesses by vote.  Parameters: `start_name:string`; `limit:int` up to 1000
@@ -2128,27 +1736,28 @@
 
       Also see: [database_api.list_witnesses]({{ '/apidefinitions/#database_api.list_witnesses' | relative_url }})
     parameter_json:
-    - ''
-    - 1000
+      - ''
+      - 1000
     expected_response_json: []
     curl_examples:
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_witnesses_by_vote", "params":[null,
-      21], "id":1}'
-    - '{"jsonrpc":"2.0", "method":"condenser_api.get_witnesses_by_vote", "params":["a",
-      1], "id":1}'
+      - '{"jsonrpc":"2.0", "method":"condenser_api.get_witnesses_by_vote", "params":[null,
+        21], "id":1}'
+      - '{"jsonrpc":"2.0", "method":"condenser_api.get_witnesses_by_vote", "params":["a",
+        1], "id":1}'
     client_docs:
-    - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-witnesses-by-vote)"
-    - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-witnesses-by-vote)"
-    - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
-    - "[hivesql](https://docs.hivesql.io/technical-informations/state-tables/witnesses)"
+      - "[hivexplorer](https://hivexplorer.com/api-docs?q=get_witnesses_by_vote)"
+      - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-witnesses-by-vote)"
+      - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#get-witnesses-by-vote)"
+      - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
+      - "[hivesql](https://docs.hivesql.io/technical-informations/state-tables/witnesses)"
   - api_method: condenser_api.lookup_account_names
     purpose: |
       Looks up account names.  Parameters: `accounts:[string]`; `delayed_votes_active:boolean`
 
       Also see: [database_api.find_accounts]({{ '/apidefinitions/#database_api.find_accounts' | relative_url }})
     parameter_json:
-    - - hiveio
-      - true
+      - - hiveio
+        - true
     expected_response_json: |
       {
         "id": 1370484,
@@ -2274,12 +1883,13 @@
         "guest_bloggers": []
       }
     curl_examples:
-    - '{"jsonrpc":"2.0", "method":"condenser_api.lookup_account_names", "params":[["hiveio"]], "id":1}'
-    - '{"jsonrpc":"2.0", "method":"condenser_api.lookup_account_names", "params":[["hiveio"], false], "id":1}'
+      - '{"jsonrpc":"2.0", "method":"condenser_api.lookup_account_names", "params":[["hiveio"]], "id":1}'
+      - '{"jsonrpc":"2.0", "method":"condenser_api.lookup_account_names", "params":[["hiveio"], false], "id":1}'
     client_docs:
-    - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#lookup-account-names)"
-    - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#lookup-account-names)"
-    - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
+      - "[hivexplorer](https://hivexplorer.com/api-docs?q=lookup_account_names)"
+      - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#lookup-account-names)"
+      - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#lookup-account-names)"
+      - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
   - api_method: condenser_api.lookup_accounts
     purpose: |
       Looks up accounts starting with name.  Parameters`lower_bound_name:string`; `limit:int` up to 1000
@@ -2290,16 +1900,17 @@
 
       Also see: [database_api.list_accounts]({{ '/apidefinitions/#database_api.list_accounts' | relative_url }})
     parameter_json:
-    - ''
-    - 1
+      - ''
+      - 1
     expected_response_json: []
     curl_examples:
-    - '{"jsonrpc":"2.0", "method":"condenser_api.lookup_accounts", "params":["a",10],
-      "id":1}'
+      - '{"jsonrpc":"2.0", "method":"condenser_api.lookup_accounts", "params":["a",10],
+        "id":1}'
     client_docs:
-    - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#lookup-accounts)"
-    - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#lookup-accounts)"
-    - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
+      - "[hivexplorer](https://hivexplorer.com/api-docs?q=lookup_accounts)"
+      - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#lookup-accounts)"
+      - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#lookup-accounts)"
+      - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
   - api_method: condenser_api.lookup_witness_accounts
     purpose: |
       Looks up witness accounts starting with name.  Parameters: `lower_bound_name:string`; `limit:int` up to 1000
@@ -2310,65 +1921,38 @@
 
       Also see: [database_api.list_witnesses]({{ '/apidefinitions/#database_api.list_witnesses' | relative_url }})
     parameter_json:
-    - ''
-    - 1
+      - ''
+      - 1
     expected_response_json: []
     curl_examples:
-    - '{"jsonrpc":"2.0", "method":"condenser_api.lookup_witness_accounts", "params":["a",10],
-      "id":1}'
-    client_docs:
-    - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#lookup-witness-accounts)"
-    - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#lookup-witness-accounts)"
-    - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
-    - "[hivesql](https://docs.hivesql.io/technical-informations/state-tables/witnesses)"
-  - api_method: condenser_api.verify_account_authority
-    disabled: true
-    purpose: |
-      **Not Implemented**
-
-      Also see: [database_api.verify_account_authority]({{ '/apidefinitions/#database_api.verify_account_authority' | relative_url }})
-    parameter_json:
-    - ''
-    - - ''
-    expected_response_json: false
-    curl_examples:
-    - '{"jsonrpc":"2.0", "method":"condenser_api.verify_account_authority", "params":["temp",["STM8GC13uCZbP44HzMLV6zPZGwVQ8Nt4Kji8PapsPiNq1BK153XTX"]],
-      "id":1}'
-    expected_curl_responses:
-    - Missing Active Authority hiveio
+      - '{"jsonrpc":"2.0", "method":"condenser_api.lookup_witness_accounts", "params":["a",10],
+        "id":1}'
     client_docs:
-    - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#verify-account-authority)"
-    - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#verify-account-authority)"
-    - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
+      - "[hivexplorer](https://hivexplorer.com/api-docs?q=lookup_witness_accounts)"
+      - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#lookup-witness-accounts)"
+      - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#lookup-witness-accounts)"
+      - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
+      - "[hivesql](https://docs.hivesql.io/technical-informations/state-tables/witnesses)"
   - api_method: condenser_api.verify_authority
     purpose: |
       Returns true if the transaction has all of the required signatures.
 
       Also see: [database_api.verify_authority]({{ '/apidefinitions/#database_api.verify_authority' | relative_url }})
     parameter_json:
-    - ref_block_num: 0
-      ref_block_prefix: 0
-      expiration: '1970-01-01T00:00:00'
-      operations: []
-      extensions: []
-      signatures: []
+      - ref_block_num: 0
+        ref_block_prefix: 0
+        expiration: '1970-01-01T00:00:00'
+        operations: []
+        extensions: []
+        signatures: []
     expected_response_json: false
     curl_examples:
-    - '{"jsonrpc":"2.0", "method":"condenser_api.verify_authority", "params":[{"ref_block_num":1097,"ref_block_prefix":2181793527,"expiration":"2016-03-24T18:00:21","operations":[["pow",{"worker_account":"cloop3","block_id":"00000449f7860b82b4fbe2f317c670e9f01d6d9a","nonce":3899,"work":{"worker":"STM7P5TDnA87Pj9T4mf6YHrhzjC1KbPZpNxLWCcVcHxNYXakpoT4F","input":"ae8e7c677119d22385f8c48026fee7aad7bba693bf788d7f27047f40b47738c0","signature":"1f38fe9a3f9989f84bd94aa5bbc88beaf09b67f825aa4450cf5105d111149ba6db560b582c7dbb026c7fc9c2eb5051815a72b17f6896ed59d3851d9a0f9883ca7a","work":"000e7b209d58f2e64b36e9bf12b999c6c7af168cc3fc41eb7f8a4bf796c174c3"},"props":{"account_creation_fee":{"amount":"100000","precision":3,"nai":"@@000000021"},"maximum_block_size":131072,"hbd_interest_rate":1000}}]],"extensions":[],"signatures":[]}],
-      "id":1}'
-    client_docs:
-    - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#verify-authority)"
-    - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#verify-authority)"
-    - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
-  - api_method: condenser_api.get_account_references
-    disabled: true
-    purpose: |
-      **Not Implemented**
-    parameter_json: "[]"
-    expected_response_json: "[]"
+      - '{"jsonrpc":"2.0", "method":"condenser_api.verify_authority", "params":[{"ref_block_num":1097,"ref_block_prefix":2181793527,"expiration":"2016-03-24T18:00:21","operations":[["pow",{"worker_account":"cloop3","block_id":"00000449f7860b82b4fbe2f317c670e9f01d6d9a","nonce":3899,"work":{"worker":"STM7P5TDnA87Pj9T4mf6YHrhzjC1KbPZpNxLWCcVcHxNYXakpoT4F","input":"ae8e7c677119d22385f8c48026fee7aad7bba693bf788d7f27047f40b47738c0","signature":"1f38fe9a3f9989f84bd94aa5bbc88beaf09b67f825aa4450cf5105d111149ba6db560b582c7dbb026c7fc9c2eb5051815a72b17f6896ed59d3851d9a0f9883ca7a","work":"000e7b209d58f2e64b36e9bf12b999c6c7af168cc3fc41eb7f8a4bf796c174c3"},"props":{"account_creation_fee":{"amount":"100000","precision":3,"nai":"@@000000021"},"maximum_block_size":131072,"hbd_interest_rate":1000}}]],"extensions":[],"signatures":[]}],
+        "id":1}'
     client_docs:
-    - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-account-references)"
-    - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
+      - "[hive-js](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#verify-authority)"
+      - "[beem](https://beem.readthedocs.io/en/latest/apidefinitions.html#verify-authority)"
+      - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
   - api_method: condenser_api.find_proposals
     purpose: |
       Finds proposals by `proposal.id` (not `proposal.proposal_id`).
@@ -2392,10 +1976,11 @@
         }
       ]
     curl_examples:
-    - '{"jsonrpc":"2.0", "method":"condenser_api.find_proposals", "params":[[0]], "id":1}'
+      - '{"jsonrpc":"2.0", "method":"condenser_api.find_proposals", "params":[[0]], "id":1}'
     client_docs:
-    - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
-    - "[hivesql](https://docs.hivesql.io/technical-informations/state-tables/proposals)"
+      - "[hivexplorer](https://hivexplorer.com/api-docs?q=find_proposals)"
+      - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
+      - "[hivesql](https://docs.hivesql.io/technical-informations/state-tables/proposals)"
   - api_method: condenser_api.list_proposal_votes
     purpose: |
       Returns all proposal votes, starting with the specified voter or `proposal.id`.  Parameters: `start:array`; `limit:int`; `order:string`; `order_direction:string`; `status:string`
@@ -2422,7 +2007,7 @@
       | `["alice"]` | 10 | `by_voter_proposal` | `ascending` | `active` | list 10 proposals with active status, ordered by voter, ascending |
       | `[10]` | 1000 | `by_proposal_voter` | `ascending` | `votable` | list 1000 votes on proposal 10, ordered by `proposal.id`, ascending |
 
-      Also see: [datbase_api.list_proposals]({{ '/apidefinitions/#database_api.list_proposal_votes' | relative_url }})
+      Also see: [database_api.list_proposals]({{ '/apidefinitions/#database_api.list_proposal_votes' | relative_url }})
     parameter_json: '[[],0,"by_name","ascending","all"]'
     expected_response_json: |
       [{
@@ -2447,11 +2032,12 @@
         }
       }]
     curl_examples:
-    - '{"jsonrpc":"2.0", "method":"condenser_api.list_proposal_votes", "params":[[""], 10, "by_voter_proposal", "ascending", "active"], "id":1}'
-    - '{"jsonrpc":"2.0", "method":"condenser_api.list_proposal_votes", "params":[[0], 10, "by_proposal_voter", "ascending", "active"], "id":1}'
+      - '{"jsonrpc":"2.0", "method":"condenser_api.list_proposal_votes", "params":[[""], 10, "by_voter_proposal", "ascending", "active"], "id":1}'
+      - '{"jsonrpc":"2.0", "method":"condenser_api.list_proposal_votes", "params":[[0], 10, "by_proposal_voter", "ascending", "active"], "id":1}'
     client_docs:
-    - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
-    - "[hivesql](https://docs.hivesql.io/technical-informations/state-tables/proposalsapprovals)"
+      - "[hivexplorer](https://hivexplorer.com/api-docs?q=list_proposal_votes)"
+      - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
+      - "[hivesql](https://docs.hivesql.io/technical-informations/state-tables/proposalsapprovals)"
   - api_method: condenser_api.list_proposals
     purpose: |
       Returns all proposals, starting with the specified creator or start date.  Parameters: `start:array`; `limit:int`; `order:string`; `order_direction:string`; `status:string`
@@ -2505,18 +2091,16 @@
         }
       ]
     curl_examples:
-    - '{"jsonrpc":"2.0", "method":"condenser_api.list_proposals", "params":[[""], 10, "by_creator", "ascending", "active"], "id":1}'
-    - '{"jsonrpc":"2.0", "method":"condenser_api.list_proposals", "params":[["2019-08-07T16:54:03"], 1000, "order_direction": "ascending", "inactive"], "id":1}'
-    - '{"jsonrpc":"2.0", "method":"condenser_api.list_proposals", "params":[["a"], 1, "by_creator", "ascending", "expired"], "id":1}'
-    - '{"jsonrpc":"2.0", "method":"condenser_api.list_proposals", "params":[["alice"], 10, "by_creator", "ascending", "all"], "id":1}'
-    - '{"jsonrpc":"2.0", "method":"condenser_api.list_proposals", "params":[[""], 1000, "by_creator", "ascending", "votable"], "id":1}'
-    - '{"jsonrpc":"2.0", "method":"condenser_api.list_proposals", "params":[[10], 1000, "by_total_votes", "ascending", "votable"], "id":1}'
+      - '{"jsonrpc":"2.0", "method":"condenser_api.list_proposals", "params":[[""], 10, "by_creator", "ascending", "active"], "id":1}'
+      - '{"jsonrpc":"2.0", "method":"condenser_api.list_proposals", "params":[["2019-08-07T16:54:03"], 1000, "order_direction": "ascending", "inactive"], "id":1}'
+      - '{"jsonrpc":"2.0", "method":"condenser_api.list_proposals", "params":[["a"], 1, "by_creator", "ascending", "expired"], "id":1}'
+      - '{"jsonrpc":"2.0", "method":"condenser_api.list_proposals", "params":[["alice"], 10, "by_creator", "ascending", "all"], "id":1}'
+      - '{"jsonrpc":"2.0", "method":"condenser_api.list_proposals", "params":[[""], 1000, "by_creator", "ascending", "votable"], "id":1}'
+      - '{"jsonrpc":"2.0", "method":"condenser_api.list_proposals", "params":[[10], 1000, "by_total_votes", "ascending", "votable"], "id":1}'
     client_docs:
+      - "[hivexplorer](https://hivexplorer.com/api-docs?q=list_proposals)"
       - '[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)'
       - '[hivesql](https://docs.hivesql.io/technical-informations/state-tables/proposals)'
-    client_docs:
-    - "[hive-ruby](https://www.rubydoc.info/gems/hive-ruby/Hive/Api)"
-    - "[hivesql](https://docs.hivesql.io/technical-informations/state-tables/proposals)"
   - api_method: condenser_api.is_known_transaction
     since: HF25
     purpose: |
@@ -2540,6 +2124,7 @@
     parameter_json: "[]"
     expected_response_json: "[]"
     client_docs:
+      - "[hivexplorer](https://hivexplorer.com/api-docs?q=get_collateralized_conversion_requests)"
       - '[hive-js](https://gitlab.syncad.com/hive/hive-js/-/blob/master/doc/README.md#collateralized-convert)'
       - "[hivesql](https://docs.hivesql.io/technical-informations/operations/txcollateralizedconverts-hf25)"
   - api_method: condenser_api.find_recurrent_transfers
@@ -2564,21 +2149,81 @@
         }
       ]
     curl_examples:
-    - '{"jsonrpc":"2.0", "method":"condenser_api.find_recurrent_transfers", "params":["alice"], "id":1}'
+      - '{"jsonrpc":"2.0", "method":"condenser_api.find_recurrent_transfers", "params":["alice"], "id":1}'
     client_docs:
-    - "[hivesql](https://docs.hivesql.io/technical-informations/operations/txrecurrenttransfers-hf25)"
+      - "[hivexplorer](https://hivexplorer.com/api-docs?q=find_recurrent_transfers)"
+      - "[hivesql](https://docs.hivesql.io/technical-informations/operations/txrecurrenttransfers-hf25)"
   - api_method: condenser_api.find_rc_accounts
     since: HF26
-    purpose:
+    purpose: Returns the available resource credits of accounts.
     parameter_json: "[]"
-    expected_response_json: "[]"
+    expected_response_json: |
+      [
+        {
+          "account":"alice",
+          "delegated_rc":0,
+          "max_rc":135630143570,
+          "max_rc_creation_adjustment":"2020.748973 VESTS",
+          "rc_manabar":{"current_mana":135375191366,"last_update_time":1550731380},
+          "received_delegated_rc":0
+        },
+        {
+          "account":"demo",
+          "delegated_rc":0,
+          "max_rc":50966868081,
+          "max_rc_creation_adjustment":"2020.748973 VESTS",
+          "rc_manabar":{"current_mana":50966868081,"last_update_time":1715912571},
+          "received_delegated_rc":6000000000
+        }
+      ]
+    curl_examples:
+      - '{"jsonrpc":"2.0", "method":"condenser_api.find_rc_accounts", "params":[["alice","demo"]], "id":1}'
+    client_docs:
+      - "[hivexplorer](https://hivexplorer.com/api-docs?q=find_rc_accounts)"
   - api_method: condenser_api.list_rc_accounts
     since: HF26
-    purpose:
+    purpose: Find accounts and their RC delegations
     parameter_json: "[]"
-    expected_response_json: "[]"
+    expected_response_json: | 
+      [
+        {
+          "account":"ecency",
+          "delegated_rc":2065000000000,
+          "max_rc":7671956433568695,
+          "max_rc_creation_adjustment":"5851.327807 VESTS",
+          "rc_manabar":{"current_mana":3221987144996,"last_update_time":1716194709},
+          "received_delegated_rc":4484642315668049
+        },
+        {
+          "account":"ecency-987",
+          "delegated_rc":0,"max_rc":5568323871,
+          "max_rc_creation_adjustment":"5568.323871 VESTS",
+          "rc_manabar":{"current_mana":5568323871,"last_update_time":1637136366},
+          "received_delegated_rc":0
+        }
+      ]
+    curl_examples:
+      - '{"jsonrpc":"2.0", "method":"condenser_api.list_rc_accounts", "params":["ecency",10], "id":1}'
+    client_docs:
+      - "[hivexplorer](https://hivexplorer.com/api-docs?q=list_rc_accounts)"
   - api_method: condenser_api.list_rc_direct_delegations
     since: HF26
-    purpose:
+    purpose: Get list of "from" "to" which account how much RC was delegated.
     parameter_json: "[]"
-    expected_response_json: "[]"
+    expected_response_json: |
+      [
+        {
+          "delegated_rc":15000000000,
+          "from":"ecency",
+          "to":"raitakun501"
+        },
+        {
+          "delegated_rc":15000000000,
+          "from":"ecency",
+          "to":"vivianemitola"
+        }
+      ]
+    curl_examples:
+      - '{"jsonrpc":"2.0", "method":"condenser_api.list_rc_direct_delegations", "params":[["ecency",""],2], "id":1}'
+    client_docs:
+      - "[hivexplorer](https://hivexplorer.com/api-docs?q=list_rc_direct_delegations)"