Skip to content
v1.0.0 (2026-08-15 18:56)

Marquee Announcements

Overview

  • Description: Fetch the scrolling marquee announcement text for the global website or lobby.
  • Authentication: No Member Login Required. However, you must provide a Base Token to identify the Agent. See Authentication for details.

1. GET - Get Marquee List

  • Path: /api/system/marquee

Request Header

ParameterTypeRequiredDescription
AuthorizationStringYesBearer BaseToken (to identify the Agent)
Accept-LanguageStringNoTarget response language (e.g., zh-CN, en-US)

Request Parameters

None

Response Example

json
{
  "code": 0,
  "msg": "Success",
  "data": [
    {
      "id": 1,
      "details": "Welcome to our site! 100% bonus on your first deposit!",
      "url": "/promotions/welcome"
    },
    {
      "id": 2,
      "details": "System maintenance scheduled for 2:00 AM tonight.",
      "url": ""
    }
  ]
}