{{ title }}

{{ description }}

{% for app_key, app_data in api_structure.items %} {% for endpoint in app_data.endpoints %}

{{ endpoint.name }}

{{ endpoint.method }} {{ endpoint.url }}

{{ endpoint.description }}

{% if endpoint.parameters %}

Parameters

{% for param in endpoint.parameters %} {% endfor %}
Name Type Required Description
{{ param.name }} {{ param.type }} {% if param.required %} Required {% else %} Optional {% endif %} {{ param.description }}
{% endif %}

Response Examples

{% for response_type, response_data in endpoint.response_examples.items %} {% endfor %}
{% for response_type, response_data in endpoint.response_examples.items %}
{{ response_data|safe }}
{% endfor %}
{% endfor %} {% endfor %}