{% extends 'dashboard.html' %} {% block page %}

API Keys

{% for key in api_keys %} {% else %} {% endfor %}
Name Key Prefix Scopes Rate Limit Created Last Used Delete
{{ key.name }} {{ key.key[:8] }}...
{% if key.scopes == ['*'] %} Full Access {% else %} {{ key.scopes|length }} Scopes {% endif %}
{% if key.rate_limit_count %} {{ key.rate_limit_count }} / {{ key.rate_limit_period }} {% else %} Unlimited {% endif %}
{{ key.created_at.strftime('%Y-%m-%d') }} {{ key.last_used_at.strftime('%Y-%m-%d %H:%M') if key.last_used_at else 'Never' }}
No API keys found. Generate one to get started.

Generate New API Key

Or limit to specific functions:

{% for function in functions %} {% endfor %}

Select "Full Access" or specific functions.

{% endblock %}