Translation projects API.

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

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

[
    {
        "total_words": 4,
        "code": "cs",
        "translated_words": 4,
        "language": "Czech",
        "translated": 3,
        "translated_percent": 100.0,
        "total": 3,
        "words_percent": 100.0
    },
    {
        "total_words": 4,
        "code": "en",
        "translated_words": 4,
        "language": "English",
        "translated": 3,
        "translated_percent": 100.0,
        "total": 3,
        "words_percent": 100.0
    },
    {
        "total_words": 4,
        "code": "ru",
        "translated_words": 4,
        "language": "Russian",
        "translated": 3,
        "translated_percent": 100.0,
        "total": 3,
        "words_percent": 100.0
    }
]