Skip to content

Private Chat

The /chat/private endpoint retrieves all messages sent during the last hour, belonging to a private chat.

Parameters

ParameterRequiredDescription
usernameYesThe username of the user who sends the message
tokenYesThe key used to connect to the desired private chat

Request Example

bash
curl -X POST -d "username=User3&token=41a43360-9874-4c7a-9ca8-eec29e765a0e" "https://api.sylvain.pro/v3/chat/private"

Response

json
[
  {
    "username": "User1",
    "message": "Hi!",
    "timestamp": "2025-01-21T08:27:11.068Z"
  },
  {
    "username": "User3",
    "message": "How are you?",
    "timestamp": "2025-01-21T08:28:43.070Z"
  }
]

Error Handling

If parameters are missing or invalid, the API will return an error:

Error MessageDescription
Please provide a username (?username={username})The username parameter is missing
Please provide a valid token (&token={key}).The token parameter is missing or invalid
  • /v3/chat - Main chat endpoint for sending and receiving messages