{% extends "sentry/bases/organization.html" %} {% load crispy_forms_tags %} {% load i18n %} {% load sentry_helpers %} {% block title %}{% trans "API Keys" %} | {{ block.super }}{% endblock %} {% block org_apikeys_nav %}active{% endblock %} {% block inner %}

API keys grant access to the developer web API. If you're looking to configure a Sentry client, you'll need a client key which is available in our platform documentation or your project's settings.


{% if key_list %} {% for key in key_list %} {% endfor %} {% else %} {% endif %}
{{ key.label }}
{{ key.key }}
{% csrf_token %}

You haven't yet created any API keys for this organization.

{% endblock %}