Translation projects API.

See the Weblate's Web API documentation for detailed description of the API.

GET /api/projects/sandbox/categories/?format=api
HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "count": 2,
    "next": null,
    "previous": null,
    "results": [
        {
            "name": "Category1",
            "slug": "category1",
            "project": "https://weblate.osgeo.org/api/projects/sandbox/?format=api",
            "category": null,
            "url": "https://weblate.osgeo.org/api/categories/3/?format=api"
        },
        {
            "name": "Category2",
            "slug": "category2",
            "project": "https://weblate.osgeo.org/api/projects/sandbox/?format=api",
            "category": "https://weblate.osgeo.org/api/categories/3/?format=api",
            "url": "https://weblate.osgeo.org/api/categories/4/?format=api"
        }
    ]
}