v1.0.0 (2026-08-15 18:56)
多维度游戏列表过滤 (Advanced Game Filter)
概述
- 接口说明:通过高级查询条件(如分类、厂商、标签及关键字)筛选游戏列表。
- 鉴权说明:无需会员登录,但必须携带 Base Token 以识别 Agent。详情请参考基础认证。
1. GET - 游戏高级筛选
- 路径:
/api/games/filter
请求 Header
| 参数名 | 类型 | 必填 | 说明 |
|---|---|---|---|
Authorization | String | 是 | Bearer BaseToken (用于识别 Agent) |
请求参数
| 参数名 | 类型 | 必填 | 说明 |
|---|---|---|---|
menu_id | Integer | 否 | 游戏菜单/分类 ID |
provider_code | String | 否 | 厂商代码,可传多个用逗号隔开 |
tag_code | String | 否 | 标签代码(如 hot, new) |
keyword | String | 否 | 游戏名称关键字模糊搜索 |
page | Integer | 否 | 页码,默认 1 |
limit | Integer | 否 | 每页数量,默认 20 |
响应示例
json
{
"code": 0,
"msg": "获取成功",
"data": {
"total": 150,
"current_page": 1,
"list": [
{
"game_code": "sweetbonanza",
"game_name": "Sweet Bonanza",
"game_icon": "https://cdn.domain.com/icons/sweetbonanza.webp",
"provider_code": "pragmatic"
}
]
}
}