{% extends "layout.html" %} {% block title %}API endpoints{% endblock %} {% block content %}
This lists the current API endpoints for version 1. For a more general description, please refer to the main documentation.
{% for route, doc in doc_routes %} {% if 'tags' in doc and doc['tags'] is not none %} {% else %} {% endif %} {% endfor %}
Route Status Description
{{ route }} {{ ', '.join(doc['tags']) }}{{ route }} opened{{ doc['docstring'] | safe_docstring_display | safe }}
{% endblock %}