Documentation
API
Announcements

Announcements

These API endpoints are related to our announcements system


Get Announcements

GET

/announcements

This endpoint will return a list of announcements. User authentication is optional and using it will show user targetted announcements.

Request

Response (200)

{
    "announcements": [
        {
            "author": "string",
            "content": "string",
            "id": "string",
            "itag": null
            "last_modified": "1970-01-01T00:00:00.000Z",
            "status": "string",
            "target": null
            "targetted": false,
            "title": "string"
        }
    ]
}

Response (400)

{
    "context": null
    "error": false,
    "message": "string"
}