Get Chat Messages

Gets a list of recent chat messages.

Response Body

Name Type Description

TimeStamp

Integer

Unix timestamp of when the message was sent (number of seconds since the Unix Epoch).

ServerTimeStamp

float

Server-side timestamp of when the message was sent (time elapsed since server start).

Sender

String

The name or identifier of the message’s sender (e.g., player name or system name). NONAME if Type is System or Ada.

Type

String

The type of the message, which can be one of the following:
- System: Messages generated by the system.
- Ada: Messages sent by A.D.A.
- Player: Messages sent by a player.

Message

String

The content of the chat message.

Color

Object

Color of the chat message.

  R

Float

Red channel intensity (0-1).

  G

Float

Green channel intensity (0-1).

  B

Float

Blue channel intensity (0-1).

  A

Float

Alpha channel intensity (0-1).

Example Response

[
  {
    "ServerTimeStamp": 1002.8069458007812,
    "Sender": "derpierre65",
    "Type": "Player",
    "Message": "Hello World",
    "Color": {
      "R": 0.0051819998770952225,
      "G": 0.39157301187515259,
      "B": 0.25415199995040894,
      "A": 1
    }
  }
]