Methods
Home¶
Endpoint: /
Allowed methods: GET
GET
It returns a JSON object with the following information:
- top_projects: A list of the most active projects.
- categories_projects: A dictionary with all the published categories and its associated projects.
- categories: All the available categories.
- template: Jinja2 template.
- top_users: List of top contributors.
Example output
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 | { "categories": [ { "created": null, "description": null, "id": null, "name": "Featured", "short_name": "featured" }, { "description": "Economic projects", "id": 6, "name": "Economics", "short_name": "economics" }, ], "categories_projects": { "economics": [ { "description": "Description", "info": { "container": "user", "thumbnail": "415602833.png" }, "n_tasks": 18, "n_volunteers": 26, "name": "Man made objects identity", "overall_progress": 0, "short_name": "manmadeobjectsidentity" }, ], }, "template": "/home/index.html", "top_projects": [ { "description": "Image pattern recognition", "info": { "container": "user", "thumbnail": "772569.58.png" }, "n_tasks": null, "n_volunteers": 17499, "name": "Name", "overall_progress": null, "short_name": "name" }, ], "top_users": [ { "created": "2014-08-17T18:28:56.738119", "fullname": "John Doe", "info": { "avatar": "1410771tar.png", "container": "05" }, "n_answers": null, "name": "johndoe", "rank": 1, "registered_ago": null, "score": 54247 }, ] } |