GET Game Version Info
/web/academy/meta/version
Fetch a list of game versions with their release dates. Supports query parameters for pagination, sorting, and localization.
Query parameters:
- size: Number of items per page (minimum: 1).
- index: Page index (starting from 1).
- order: Sort order for results. Allowed values:
asc,desc. - lang: Language code for localized content (default:
en).
The response includes game version data:
- records: Array of version entries, each containing:
- id: Unique version record identifier.
- uin: User identifier associated with the record.
- createdAt: Creation timestamp.
- updatedAt: Last update timestamp.
- data:
- game_version: Version string (e.g.,
2.1.18).
- game_version: Version string (e.g.,
- form:
- id: Form ID reference.
- vote_all (optional): Voting metadata, if available:
- target: Target record ID.
- vote:
- id: Vote ID.
This endpoint is useful for:
- Tracking game version history.
- Monitoring release cycles.
- Ensuring compatibility with specific patches or updates.
{
"code": 0,
"message": "OK",
"data": {
"records": [
{
"createdAt": 1759044257232,
"data": {
"game_version": "2.1.18"
},
"form": {
"id": 2777742
},
"id": 967057876869504,
"uin": "1",
"updatedAt": 1759044257232
}
],
"total": 1
}
}