Users API.

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

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

{
    "count": 7,
    "next": null,
    "previous": null,
    "results": [
        {
            "full_name": "Anonymous",
            "username": "anonymous"
        },
        {
            "full_name": "Memorial Archives Translation Admin",
            "username": "admin"
        },
        {
            "full_name": "Johannes Ibel",
            "username": "jibel"
        },
        {
            "full_name": "Elisabeth Singer-Brehm",
            "username": "esbrehm"
        },
        {
            "full_name": "Grzegorz Chwierut",
            "username": "gchwierut"
        },
        {
            "full_name": "Bartlomiej Calus",
            "username": "bcalus"
        },
        {
            "full_name": "Tomasz Płonka",
            "username": "tplonka"
        }
    ]
}