{% extends 'base.html' %} {% load i18n %} {% block title %} - Content API{% endblock %} {% block content %} {% with ch_icon="icon-exchange" ch_title="Content API" ch_bc1="Content API" %} {% include "layout_elements/category_header.html" %} {% endwith %}
Developers can access the content of this website through a public API delivering JSON feeds for various object types of this website like events, participants or documents.
{% with sh_title="API Access" sh_icon="" sh_url_title="" %} {% include "layout_elements/section_header.html" %} {% endwith %}

The API content can be accessed by using an API endpoint and adding ?format=json as a parameter, e.g.:

/api/v0.1/events/?format=json
{% with sh_title="Accessing Single Objects" sh_icon="" sh_url_title="" %} {% include "layout_elements/section_header.html" %} {% endwith %}

Single objects can be accessed like this:

/api/v0.1/events/{id}/?format=json
/api/v0.1/events/set/{id};{id}/?format=json
Current version of the API: v0.1
{% with sh_title="Entry Points" sh_icon="" sh_url_title="" %} {% include "layout_elements/section_header.html" %} {% endwith %}
{% endblock %}