Methods: {% for sections in include.api_data %} {{ sections.description | liquify | markdownify }} {% for method in sections.methods %} {% if method.removed %}

{{method.api_method}}

{% else %}

{{method.api_method}}

{% endif %} {{ method.purpose | liquify | markdownify }} {% if method.parameter_json %}
Query Parameters JSON
```json {{method.parameter_json | neat_json}} ``` {% endif %} {% if method.parameter_json %}
Expected Response JSON
```json {{method.expected_response_json | neat_json}} ``` {% endif %} {% if method.curl_examples %}
Example curl
{% for curl in method.curl_examples %} ```bash curl -s --data '{{curl}}' https://api.hive.blog ``` {% endfor %} {% endif %} --- {% endfor %} {% endfor %}