{% extends "base.html" %} {% block title %}API Keys - Vindicara{% endblock %} {% block content %}

API Keys

Create, scope, and manage your API keys

{% if new_key %}
Key Created - Copy Now (shown once only)
{{ new_key }}
{% endif %}
Create New Key
Active Keys
{% for key in keys %} {% endfor %} {% if not keys %}{% endif %}
NameKeyScopesCreatedActions
{{ key.name }} {{ key.key_prefix }} {{ key.scopes | join(", ") }} {{ key.created_at[:10] }}
No API keys created yet
{% endblock %}