-
Notifications
You must be signed in to change notification settings - Fork 64
API development process
work in progress, all help really welcome!
The development of an API has been requested in several occasions by the community. With this page we are starting a process to create a read only API that will expose some of the information to the public through a REST-style architecture.
This page can be used for discussion on the features and collaboration.
tastypie will be used for the read only API.
All the public calls can be seen by calling the following URL from a browser: http://localhost:8000/en/api/v1/?format=json
the ?format=json attribute is only needed if you are looking at the API from a browser. Other formats supported are xml and yaml. From any device that can state the format of the expected output you won't need this attribute. For instance from curl it will default to JSON but you can change it with:
curl -H "Accept: application/xml" http://localhost:8000/api/v1/
The public routes as of now (March 2012) are the following:
{ badge: { list_endpoint: "/en/api/v1/badge/", schema: "/en/api/v1/badge/schema/" }, project: { list_endpoint: "/en/api/v1/project/", schema: "/en/api/v1/project/schema/" }, school: { list_endpoint: "/en/api/v1/school/", schema: "/en/api/v1/school/schema/" }, userprofile: { list_endpoint: "/en/api/v1/userprofile/", schema: "/en/api/v1/userprofile/schema/" } }
This means that to get 20 badges (20 is the default limit) you can ask for:
http://localhost:8000/en/api/v1/badge/?format=json
And to get the badge with id 1 you would ask for:
http://localhost:8000/en/api/v1/badge/1/?format=json
In more detail the calls above are:
- /project - expose courses/challenges/study-groups hosted on p2pu (name, descriptions, state, dates, duration, school, ...) which could be useful to do things related to searching and listing or linking to courses, challenges
- /project/[id] - get full details for a specific group by id
- /userprofile - expose a list of users
- /userprofile/[id] - get full user details by id
- /badge - get a list of badges from p2pu
- /badge/[id] - get full details for a specific badge by id
- /school - get a list of Shcools with their details from p2pu
- /school/[id] - get full details for a specific School by id (would make more sense by name?)
Right now we are working to expose the following information
If you want some information to be exposed feel free to add to a list in here.
NOTE: Is it useful to expose a /tasks endpoint right now? Shouldn't a group (in it's current form return the nested set of tasks that are in the group?
- /tasks - expose the content of courses (name of tasks, content of tasks) which could be useful for things related to compiling the content of courses into books or other formats appropriate for different audiences.
add links here