Skip to main content
GET
/
chat
/
{player}
Get Player Chat History
curl --request GET \
  --url https://api.example.com/chat/{player}
{
  "data": [
    {
      "lobbyId": "<string>",
      "message": "<string>",
      "uuid": "<string>"
    }
  ]
}

Path Parameters

player
string
required

Player UUID to fetch chat history for

Response

Successfully retrieved player chat history

data
object[]