Skip to content

Public API (deprecated)

Miguel Vaello edited this page Dec 25, 2016 · 1 revision

All the examples shown here use the application/json http header when performing the requests.

The root of the application is symbolized by BASE_URL (for instance, http://0.0.0.0:3000/ in a development environment).

List of conferences

The API will return a complete list of conferences, with their details, if a request is made to the following URL:

BASE_URL/conferences/

Conference details

In order to obtain a specific conference's details, simply add a conference id to the previous URL

BASE_URL/conferences/:conference_id

List of talks from a conference

Talks are associated to a conference and accessed through that conference. A complete list of talks can be obtained by making a request to:

BASE_URL/conferences/:conference_id/talks

Talk details

In a similar manner to the conference details, in order to obtain the details for a specific talk, both its conference id and *talk id have to be supplied:

BASE_URL/conferences/:conference_id/talks/:talk_id