{% extends "base.html" %} {% block title %}API documentation{% endblock %} {% block head %} {{ super() }} {% endblock %} {% block header %}

API documentation

{% endblock %} {% block content %}

{{method}} {{path}}

{% if text is defined %} {{text}} {% endif %} {% if params is defined %}

Query parameters:

{% for param in params %} {% endfor %}
parameter type description
{{param.name}} {{param.type}} {{param.docs}}
{% endif %} {% if return is defined %}

Return:

{{return}} {% endif %} {% if example is defined %}

Request example:

    
{{example}}
    
{% endif %} {% if result_example is defined %}

Response example:

    
{{result_example}}
    
{% endif %} {% endblock %}