{% extends "base.html" %} {%load crispy_forms_tags %} {% block title %} VulnerableCode API key request {% endblock %} {% block content %}
{% for message in messages %}
{{ message|linebreaksbr }}
{% endfor %}
{% for field_name, errors in form.errors.items %}
{{ errors }}
{% endfor %}

VulnerableCode API key request

You need an API key to access the VulnerableCode JSON REST API. Please check the live OpenAPI documentation to learn how to use the API. By using this API, you agree to the VulnerableCode.io Terms of Service. This API key gives you a throttled access to the API and helps to prevent abuse of the API.


{% csrf_token %} {% for field in form %}
{{ field }}
{% endfor %}
{% endblock %}