v3

latestOpenAPI 3.0.02026-07-311784111.3 MB
Account Management
Public

Retrieves platform announcements and important notices. Announcements include system updates, maintenance schedules, new features, policy changes, and other important information.

Results are returned in reverse chronological order (newest first). The default start_timestamp is the current time, and the count parameter must be between 1 and 50 (default is 5).

Try in API console

get/public/get_announcements

Query parameters

start_timestampinteger

The timestamp (milliseconds since the Unix epoch)

Example:1536569522277

The most recent timestamp to return the results for (milliseconds since the UNIX epoch)

countinteger
Example:10

Maximum count of returned announcements, default - 5, maximum - 50

Response

Success response

jsonrpc'2.0' required

The JSON-RPC version (2.0)

idinteger

The id that was sent in the request

Example response

{
  "result": [
    {
      "body": "An announcement",
      "publication_timestamp": 1527844253000,
      "id": 19288317,
      "title": "Example announcement"
    }
  ]
}