{% if endpoints %}
API Info
Available endpoints:
{% for endpoint in endpoints %}
{{ endpoint.route }}
- {{ endpoint.description }} {% if endpoint.parameters %}
Parameters:
{% for param in endpoint.parameters %}
{{ param.name }}:
({{ param.type }}) - {{ param.description }}
{% endfor %}
{% endif %}
{% endfor %}
{% else %}
404 | Page not found
Sorry, the page you are looking for does not exist.
Go back to the homepage
{% endif %}