{% extends "master.html" %} {% block title %} API | pagure {% endblock %} {% set tag = "index" %} {% block content %}

  Pagure API Reference

This documentation describes the Pagure API v{{ version[0] }} revision {{ version[1] }}.
{{ api_doc |replace('h1', 'h2') }}

List of the API endpoints:

Projects

{% for html in projects %} {{ html | InsertDiv | safe }} {% endfor %}
{% if issues %}

Issues

{% for html in issues %} {{ html | InsertDiv | safe }} {% endfor %}
{% endif %}

Pull-requests

{% for html in requests %} {{ html | InsertDiv | safe }} {% endfor %}

Users

{% for html in users %} {{ html | InsertDiv | safe }} {% endfor %}
{% if config.get('PAGURE_CI_SERVICES') %}

Continous Integration Services

{% for html in ci %} {{ html | InsertDiv |safe }} {% endfor %} {% endif %}

Extras

{% for html in extras %} {{ html | InsertDiv |safe }} {% endfor %}
{% endblock %} {% block jscripts %} {{ super() }} {% endblock %}