mirror of
https://github.com/daydreamer-json/ak-endfield-api-archive.git
synced 2026-04-09 17:12:26 +02:00
Compare commits
50 Commits
d016141812
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c89e632007 | ||
|
|
4ed490f202 | ||
|
|
8ca4b41874 | ||
|
|
b2de352608 | ||
|
|
0144ff917b | ||
|
|
82f3e4a3ee | ||
|
|
b6f0ae569d | ||
|
|
d4d7dec019 | ||
|
|
23532dc4f5 | ||
|
|
876a703285 | ||
|
|
980e71187c | ||
|
|
e7616840da | ||
|
|
e127290685 | ||
|
|
2c96220a42 | ||
|
|
84027f1acf | ||
|
|
3e2b94dda3 | ||
|
|
0ab26d11d1 | ||
|
|
3d51461634 | ||
|
|
070e2d5e52 | ||
|
|
41d7a54f5f | ||
|
|
d2ebb64455 | ||
|
|
c815a012c0 | ||
|
|
44270fcff9 | ||
|
|
de0f619968 | ||
|
|
521db6d000 | ||
|
|
8c03feb9b8 | ||
|
|
ccadd3747f | ||
|
|
5e9af546a2 | ||
|
|
df26d76107 | ||
|
|
97fe58600b | ||
|
|
2b25a65b8b | ||
|
|
08951c7d26 | ||
|
|
89f429f456 | ||
|
|
9f7729001f | ||
|
|
898415e33c | ||
|
|
80dbeeb545 | ||
|
|
75899425a1 | ||
|
|
b0b4f7dbc8 | ||
|
|
0619f2a21a | ||
|
|
bc1455acef | ||
|
|
d7c9c663e2 | ||
|
|
1b09b8e699 | ||
|
|
8b6c1abc2f | ||
|
|
255d633310 | ||
|
|
66814631d2 | ||
|
|
6d9866de81 | ||
|
|
1121c822a9 | ||
|
|
11054c6f47 | ||
|
|
30f306607d | ||
|
|
6e08db5391 |
28
.github/workflows/main.yml
vendored
28
.github/workflows/main.yml
vendored
@@ -20,6 +20,10 @@ jobs:
|
|||||||
uses: oven-sh/setup-bun@v2
|
uses: oven-sh/setup-bun@v2
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: bun install
|
run: bun install
|
||||||
|
- name: Configure git
|
||||||
|
run: |
|
||||||
|
git config user.name "github-actions[bot]"
|
||||||
|
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
|
||||||
- name: Create config auth
|
- name: Create config auth
|
||||||
env:
|
env:
|
||||||
CONFIG_AUTH_YAML_CTX: ${{ secrets.CONFIG_AUTH_YAML }}
|
CONFIG_AUTH_YAML_CTX: ${{ secrets.CONFIG_AUTH_YAML }}
|
||||||
@@ -35,14 +39,24 @@ jobs:
|
|||||||
- name: Format output folder
|
- name: Format output folder
|
||||||
run: bun x oxfmt output
|
run: bun x oxfmt output
|
||||||
- name: Git commit and push
|
- name: Git commit and push
|
||||||
|
id: commit_1
|
||||||
|
continue-on-error: true
|
||||||
uses: iarekylew00t/verified-bot-commit@v2
|
uses: iarekylew00t/verified-bot-commit@v2
|
||||||
with:
|
with:
|
||||||
message: "[Auto] API update"
|
message: "[Auto] API update"
|
||||||
files: |
|
files: |
|
||||||
output/akEndfield/**
|
output/akEndfield/**
|
||||||
output/raw/**
|
output/raw/**
|
||||||
output/mirror_file_list.json
|
output/mirror_file_list_pending.json
|
||||||
|
output/mirror_file_res_list_pending.json
|
||||||
|
output/mirror_file_res_patch_list_pending.json
|
||||||
if-no-commit: info
|
if-no-commit: info
|
||||||
|
- name: Git commit and push (Fallback)
|
||||||
|
if: steps.commit_1.outcome == 'failure'
|
||||||
|
run: |
|
||||||
|
git add output/akEndfield/** output/raw/** output/mirror_file_list_pending.json output/mirror_file_res_list_pending.json output/mirror_file_res_patch_list_pending.json
|
||||||
|
git commit -m "[Auto] API update" || echo "No changes to commit"
|
||||||
|
git push
|
||||||
- name: Run GitHub mirror upload
|
- name: Run GitHub mirror upload
|
||||||
run: bun run src/main.ts ghMirrorUpload
|
run: bun run src/main.ts ghMirrorUpload
|
||||||
continue-on-error: true
|
continue-on-error: true
|
||||||
@@ -51,10 +65,22 @@ jobs:
|
|||||||
- name: Git pull
|
- name: Git pull
|
||||||
run: git pull
|
run: git pull
|
||||||
- name: Git commit and push
|
- name: Git commit and push
|
||||||
|
id: commit_2
|
||||||
|
continue-on-error: true
|
||||||
uses: iarekylew00t/verified-bot-commit@v2
|
uses: iarekylew00t/verified-bot-commit@v2
|
||||||
with:
|
with:
|
||||||
message: "[Auto] API update"
|
message: "[Auto] API update"
|
||||||
files: |
|
files: |
|
||||||
output/mirror_file_list.json
|
output/mirror_file_list.json
|
||||||
output/mirror_file_list_pending.json
|
output/mirror_file_list_pending.json
|
||||||
|
output/mirror_file_res_list.json.zst
|
||||||
|
output/mirror_file_res_list_pending.json
|
||||||
|
output/mirror_file_res_patch_list.json.zst
|
||||||
|
output/mirror_file_res_patch_list_pending.json
|
||||||
if-no-commit: info
|
if-no-commit: info
|
||||||
|
- name: Git commit and push (Fallback)
|
||||||
|
if: steps.commit_2.outcome == 'failure'
|
||||||
|
run: |
|
||||||
|
git add output/mirror_file_list.json output/mirror_file_list_pending.json output/mirror_file_res_list.json.zst output/mirror_file_res_list_pending.json output/mirror_file_res_patch_list.json.zst output/mirror_file_res_patch_list_pending.json
|
||||||
|
git commit -m "[Auto] API update" || echo "No changes to commit"
|
||||||
|
git push
|
||||||
|
|||||||
56
README.md
56
README.md
@@ -1,4 +1,4 @@
|
|||||||
<h1 align="center">ak-endfield-api-archive</h2>
|
<h1 align="center">ak-endfield-api-archive</h1>
|
||||||
|
|
||||||
<p align="center">
|
<p align="center">
|
||||||
<a href="https://github.com/palmcivet/awesome-arknights-endfield"><img src="https://raw.githubusercontent.com/palmcivet/awesome-arknights-endfield/refs/heads/main/assets/badge-for-the-badge.svg" alt="Awesome Arknights Endfield" /></a>
|
<a href="https://github.com/palmcivet/awesome-arknights-endfield"><img src="https://raw.githubusercontent.com/palmcivet/awesome-arknights-endfield/refs/heads/main/assets/badge-for-the-badge.svg" alt="Awesome Arknights Endfield" /></a>
|
||||||
@@ -8,51 +8,55 @@
|
|||||||
<img src="https://api.cron-job.org/jobs/7183534/5f3f37a732a92096/status-0.svg" alt="Cron Job" />
|
<img src="https://api.cron-job.org/jobs/7183534/5f3f37a732a92096/status-0.svg" alt="Cron Job" />
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
Monitor changes to responses from various Arknights: Endfield APIs and record them in this repository.
|
This repository monitors and records changes to various Arknights: Endfield API responses.
|
||||||
|
|
||||||
Updates are checked about every 10 minutes and automatically pushed by GitHub Actions.
|
Updates are checked approximately every 5 minutes and automatically pushed via GitHub Actions.
|
||||||
API outputs are stored in the [`output`](/output/) directory.
|
API outputs are stored in the [`output`](/output/) directory.
|
||||||
|
|
||||||
The APIs currently being monitored are as follows:
|
## [Download Library](https://ak-endfield-api-archive.daydreamer-json.cc/)
|
||||||
|
|
||||||
|
For a historical overview of game packages and other resources, please click the link above.
|
||||||
|
|
||||||
|
## Contents of the Archive
|
||||||
|
|
||||||
|
The following APIs are currently being monitored:
|
||||||
- Launcher
|
- Launcher
|
||||||
- Get latest game (Global, China)
|
- Get latest game (Global, China)
|
||||||
- Get latest game resources (Global, China)
|
- Get latest game resources (Global, China)
|
||||||
- Get latest launcher (Global, China)
|
- Get latest launcher (Global, China)
|
||||||
- Get launcher web resources (Global, China)
|
- Get launcher web resources (Global, China)
|
||||||
- Announcement
|
- Announcements
|
||||||
- Banner
|
- Banners
|
||||||
- Main background image
|
- Main background images
|
||||||
- Single Ent.
|
- Single Ent.
|
||||||
- Sidebar
|
- Sidebar
|
||||||
- Raw
|
- Raw
|
||||||
- Game resource json (index, patch)
|
- Game resource manifests (index, patch)
|
||||||
|
- Launcher image resources
|
||||||
|
|
||||||
Currently, raw data is provided as-is without modification. It is also not decrypted.
|
Most raw data is provided "as-is" without modification. Some files (e.g., `index_*.json`) have been decrypted for readability.
|
||||||
|
|
||||||
## Download Library
|
The following data is archived in an external repository:
|
||||||
|
- Game packages (.zip)
|
||||||
|
- Game patch packages (.zip)
|
||||||
|
- Game hotfix resources
|
||||||
|
- To avoid the overhead of managing numerous small files, these are bundled into larger chunk files.
|
||||||
|
- Launcher packages (.exe, .zip)
|
||||||
|
|
||||||
To easily view information about past versions of game packages and other items, please refer to the following page.
|
For a full list of externally archived files, please refer to the mirror list JSON in the `output` directory. (Note: `*_pending` files are temporary files used during the archiving process.)
|
||||||
|
|
||||||
https://ak-endfield-api-archive.daydreamer-json.cc/
|
For users in Asia (including China, Japan, Korea): To speed up downloads, use any GitHub proxy service (such as [`gh-proxy.org`](https://gh-proxy.org/), which is cached by Cloudflare).
|
||||||
|
|
||||||
Previous pages created using Markdown will not be maintained.
|
|
||||||
|
|
||||||
## Contributing
|
## Contributing
|
||||||
|
|
||||||
Since I can only run the game on platforms and operating systems that are available to me, there may be inaccuracies. If you have information -particularly regarding **Chinese regional game data**, beta versions, encrypted binaries such as `index_main.json` or `game_files`- or if you're able to help improve the code, or if you encounter any other issues, feel free to submit an issue or a pull request.
|
As I can only test the game on the platforms and operating systems available to me, some data may contain inaccuracies. If you have information—particularly regarding **Chinese regional data** or beta versions—or if you would like to improve the code, please feel free to submit an issue or a pull request.
|
||||||
|
|
||||||
All files within the `output` folder are automatically generated by the `src` scripts. Therefore, to make changes, you must modify the scripts themselves.
|
|
||||||
|
|
||||||
## Disclaimer
|
|
||||||
|
|
||||||
This project has no affiliation with Hypergryph (GRYPHLINE) and was created solely for **private use, educational, and research purposes.**
|
|
||||||
|
|
||||||
I assume no responsibility whatsoever. **PLEASE USE IT AT YOUR OWN RISK.**
|
|
||||||
|
|
||||||
## Thanks
|
## Thanks
|
||||||
|
|
||||||
- [Vivi029](https://github.com/Vivi029): Added Windows Google Play Games channel
|
- [Vivi029](https://github.com/Vivi029): Added Windows Google Play Games channel support.
|
||||||
|
|
||||||
---
|
## Disclaimer
|
||||||
|
|
||||||
This project was created using `bun init` in bun v1.3.5. [Bun](https://bun.com) is a fast all-in-one JavaScript runtime.
|
This project is not affiliated with Hypergryph (GRYPHLINE) and was created solely for **private use, educational, and research purposes.**
|
||||||
|
|
||||||
|
The author assumes no responsibility for any consequences arising from the use of this project. **USE AT YOUR OWN RISK.**
|
||||||
|
|||||||
@@ -1050,5 +1050,839 @@
|
|||||||
"state": 0,
|
"state": 0,
|
||||||
"launcher_action": 0
|
"launcher_action": 0
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-09T08:15:27.604+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "6LL0KJuqHBVz33WK",
|
||||||
|
"launcherAppCode": "abYeZZ16BPluCFyT",
|
||||||
|
"channel": 1,
|
||||||
|
"subChannel": 1,
|
||||||
|
"launcherSubChannel": 1,
|
||||||
|
"version": "1.0.14"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"action": 1,
|
||||||
|
"version": "1.1.9",
|
||||||
|
"request_version": "1.0.14",
|
||||||
|
"pkg": {
|
||||||
|
"packs": [
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.001?auth_key=1775722527-58dd5464997f443d86d985d980dcf335-0-4ee4c0dfa7fcdafb9696f5af4e1a790f",
|
||||||
|
"md5": "c38326d35ecae083e1287f2face71961",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.002?auth_key=1775722527-bd47459089e54a6c88d803504dfc84c2-0-aa88d7da15b0c6c10a692c96f27220e7",
|
||||||
|
"md5": "20f46b024bbd75248f3d22881f4222c0",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.003?auth_key=1775722527-8910fa9b020644049eafdc9e7440b54c-0-53486e22e42accdd3c4910bdd59abecb",
|
||||||
|
"md5": "f3dbacf2619ec1bb2ed5333bea83ac7f",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.004?auth_key=1775722527-5c01b6cc2e7441569db10c77b7c00392-0-516db56d42c4f75516a54c521ff4bc47",
|
||||||
|
"md5": "544b70a029e6dd841a9cfc2e4a64082a",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.005?auth_key=1775722527-1058edbf6c7c4c1d9c3ab43fc8a27301-0-9c02a50c3a64d89408b6c0cc322689c3",
|
||||||
|
"md5": "d35d159cd37855302e6ae826f7a8b82f",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.006?auth_key=1775722527-b50832e0ff344177b66eeea5646338cc-0-ace8cda78f39f8313212157b7e83f86b",
|
||||||
|
"md5": "5b4784ca47740fbaa80b3b055cad3073",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.007?auth_key=1775722527-0a5a83b8905d4228b2cf074e71c1a055-0-a0d0e34d90e94e954f2b89a242513e18",
|
||||||
|
"md5": "eb3b2ac60d8e74cbd0d49d6f6ed8376d",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.008?auth_key=1775722527-0eb2c1f471be4244b1fb6222dbbce2fc-0-245edda32408ebef153ff8d5674f738c",
|
||||||
|
"md5": "e806f6fcda7d5a2477280b85d64808da",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.009?auth_key=1775722527-26a34c6bbd514897a6f9407cde285125-0-01e075311edb4d58d252171c02d2c99c",
|
||||||
|
"md5": "e17a49554221bdb2b84d9d4d4a6b1da5",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.010?auth_key=1775722527-f16ff35960df4f0aa4983b86e1edde41-0-9ab3877af2d434a9249e01cf8a2b17a5",
|
||||||
|
"md5": "60537ec5bf32df03b831db6651ca2015",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.011?auth_key=1775722527-97fb4df1889746619e60dc92e60bb313-0-665d5df7788d8881ed6c702d9e71b259",
|
||||||
|
"md5": "bb0fd2da7a353262ac38390aa7dc57d2",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.012?auth_key=1775722527-0cd061d0bd134750b3bdd661f7c88ae5-0-ce72aa61641574e88ee96d50a6c1473f",
|
||||||
|
"md5": "5bbf5d8ac4179949f0bd8ad9c1b31dd1",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.013?auth_key=1775722527-a7944d56cc3a4f2183f5e8cef49c031d-0-5357d02016c94df0e077d21f81ec7117",
|
||||||
|
"md5": "22d68e8afe49f32c658f250f89b366c0",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.014?auth_key=1775722527-03e5ab1f8d174141bb33ba2fe521eae8-0-0eebabb16d69f544eba270dd5cb81961",
|
||||||
|
"md5": "630f07c23d73cbbf46e3e19d5d48b251",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.015?auth_key=1775722527-9578f45151124f28a0896dc835810d3e-0-3930d321f4c01adf99006ae81abdee62",
|
||||||
|
"md5": "e2313062706e7a870ec60f5ba048027f",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.016?auth_key=1775722527-2a0a40695dad4659bc744d6c715300b3-0-64191ab88d92faa0452ccaad37644401",
|
||||||
|
"md5": "d435a67ee2f3508c93cfa482f40abc95",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.017?auth_key=1775722527-2304373be1de400eba6d62096bbd9155-0-31964fd8800a913f2e5d7be8e4d2b559",
|
||||||
|
"md5": "0f9d6061d9888caa5eb5093d7a2e5438",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.018?auth_key=1775722527-3fed6e0cee674547abb6debdbfc774ff-0-283e720c3cb6780d81a1e0ec45fccbbd",
|
||||||
|
"md5": "d53df9f8184b0a8ab10fd2e74d1c6307",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.019?auth_key=1775722527-61dc90fae2bc4af68b16def1d1024c35-0-5282a94329e8f3f13e3ea26ebd0dec78",
|
||||||
|
"md5": "4c05bb501a042fb53d704df42231dc22",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.020?auth_key=1775722527-6836a4fd6a594455b1bf33079f6ec4d2-0-30a878c94641d747cb9e757dac267659",
|
||||||
|
"md5": "2a65799ba837c1cb96b909797b1b0675",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.021?auth_key=1775722527-1e3a163380244c4687f89a45d2b71883-0-4ca3a9cb3619f83ff42f8966473efff7",
|
||||||
|
"md5": "3885b66d547b4b0fcbda6b7170f7e0bd",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.022?auth_key=1775722527-e9f53d08e64845fcb7374e0375f66704-0-08f2c8a74ee05d45904207b46b8beb18",
|
||||||
|
"md5": "0e814e7d05e8608fcfc325cf453b8c81",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.023?auth_key=1775722527-39dbaed1dd0b411eb8c0a8dc73608250-0-873cd33238135de95a6032c6b19483d9",
|
||||||
|
"md5": "461f2cabcc4551f3ee03c8f63a772fc9",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.024?auth_key=1775722527-ebdf20620124420ca39c979b0bae11fe-0-079ccaa5b820a858d1ba67b914fd608d",
|
||||||
|
"md5": "f15fbc78df81c2b44f87f332cc1e13b3",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.025?auth_key=1775722527-b4311ccfc86345808adf403b642a5e2e-0-e990bb98fb7b85969049b3e8fac852cb",
|
||||||
|
"md5": "9c3a21b61f7340fd7df57644307ada5a",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.026?auth_key=1775722527-c4b817c9d5634b93b2fed86f1648d4dc-0-44069ae9710b76c38287c052dc7b520b",
|
||||||
|
"md5": "0b29f2ecaca9c36fbbf3f6b28e32886a",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.027?auth_key=1775722527-c3d0e49ec41e43f38c03ab10bd001d0b-0-f115ea74155267b1e1bb3d10628c0634",
|
||||||
|
"md5": "ef792738209206745460693584c5b412",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.028?auth_key=1775722527-cbaac158faea47fe976728e2f5492bce-0-1a7428e470543b46255cbba4a667ff24",
|
||||||
|
"md5": "af656465b65c8863a8ee365112a6d346",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.029?auth_key=1775722527-b403bc4033b242b29475c0cc5936d982-0-8deb83bd86d122e215cad12f55fe964c",
|
||||||
|
"md5": "49bdfadf3204d738f78e6a2b7ede0c1f",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.030?auth_key=1775722527-1a3dbfcd3dcb490ca9d154017e107a96-0-f4e19fc18d6c65a92e496d17f132c260",
|
||||||
|
"md5": "910002bcd7ede4bd92dabda717f19b30",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.031?auth_key=1775722527-507409699c5840abbec4f8c1882a89f2-0-dec08a55e11593f7c3ca24b687c1e9f6",
|
||||||
|
"md5": "b37356986a956885aaf1237bd916c9d4",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.032?auth_key=1775722527-e504fb2000cb4a8697ae2a31119292a1-0-645bd43890cfa943ec1c9990a465e758",
|
||||||
|
"md5": "4dbb43d595cade7e29654be43f1eec9d",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.033?auth_key=1775722527-61c0ba4bec494abbbc1b111dc51461b0-0-d53f1adb34a62e25ac46f3551a970b72",
|
||||||
|
"md5": "2e45b72c48dd42a8c95e15829eda5f5b",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.034?auth_key=1775722527-87a9edda6cb74e26bd95d32741dc3d42-0-e8e44c31bed95304cd06b9c790a5ba2e",
|
||||||
|
"md5": "7a593e6085a481ab46249315881b3393",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.035?auth_key=1775722527-d41017d2bd7f44bc9f6c9b0412d6d543-0-09d2370c1e9cec473d4fe42075bf0198",
|
||||||
|
"md5": "4c1ee12ef15717ab13ca35507af8a2be",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.036?auth_key=1775722527-6ced7740d21a49d7ac6bab28f8680db0-0-2f724340cd5bbf5f8369185fb64b1d1a",
|
||||||
|
"md5": "d1ea86dd1efbf705e06a883ae138a5fe",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.037?auth_key=1775722527-8483aed3b303499287e7dcd53e9e2526-0-0a6246ec9f18c32e1cd43239ae55a841",
|
||||||
|
"md5": "12e3582aa295cba50fd887d09a239444",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.038?auth_key=1775722527-24f49ee9336b4afa8b5735deccce27fc-0-2c1f95b1caa1c522a904bf408a62f53f",
|
||||||
|
"md5": "cfdb76064a14ef5ec458deebaf7e176c",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.039?auth_key=1775722527-fbbc07c559f04e1487181f3306f992bc-0-cb4ac12690062b1f47f50b9ab2e002c2",
|
||||||
|
"md5": "fd8fded1e44ace254fb79313421ee7fa",
|
||||||
|
"package_size": "927651225"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"total_size": "91824655390",
|
||||||
|
"file_path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/files",
|
||||||
|
"url": "",
|
||||||
|
"md5": "",
|
||||||
|
"package_size": "0",
|
||||||
|
"file_id": "0",
|
||||||
|
"sub_channel": "1",
|
||||||
|
"game_files_md5": "1bb81faed42edfd6ef23a8d51c9ec32a"
|
||||||
|
},
|
||||||
|
"patch": {
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_official_1_0_14.zip?auth_key=1775722527-172653e53a194810851b3488690f8070-0-4cdc09ef578ec0e64402a216e8f86f72",
|
||||||
|
"md5": "122d772691b54354443be31dddd4adbb",
|
||||||
|
"package_size": "38277348785",
|
||||||
|
"total_size": "84405302036",
|
||||||
|
"file_id": "1",
|
||||||
|
"patches": [
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_official_1_0_14.zip.001?auth_key=1775722527-7bcd8e2a4f3b4aa68e676a30bfa58ffd-0-6f8644ae169a248d50870ad20be96b1b",
|
||||||
|
"md5": "d13a2fd73d5331d3c13f2e87acbcb100",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_official_1_0_14.zip.002?auth_key=1775722527-d15fbf524777409281010f10e0a99d44-0-bb12df42d4d3a9c2f061069f5132154b",
|
||||||
|
"md5": "6778da9a84b3cd233711a79e879832aa",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_official_1_0_14.zip.003?auth_key=1775722527-95373ede3d094ea18d3823008ed477d6-0-996d97cabf02a84c749f4990f12053c4",
|
||||||
|
"md5": "2b3f3b6c35b3abd06d69c092b5989bc0",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_official_1_0_14.zip.004?auth_key=1775722527-20862a60ba384623b2b429798fff6cec-0-82bba7f25a9e5f6df74b9bbfc300c1b0",
|
||||||
|
"md5": "a4327a01949d9d1ed960942d8c804855",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_official_1_0_14.zip.005?auth_key=1775722527-472c26dd1cfd4bc4ac8554f975b2ff0e-0-db9843829c8f66cfb3842e21dc4a372a",
|
||||||
|
"md5": "55844a7113ae31b18acd64ad63de9d12",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_official_1_0_14.zip.006?auth_key=1775722527-b289513ecca544818af6af1c849abaa5-0-6c33d6ce27f71164d677ddfd8a461e24",
|
||||||
|
"md5": "23363803dc70b0dd5239942c6c175819",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_official_1_0_14.zip.007?auth_key=1775722527-874c8ae97f3b46f2a64510f1f8e15de8-0-a05d06f37f9669627505eb24289f778d",
|
||||||
|
"md5": "ff3cba7fc353ea10499e7a08be3cd682",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_official_1_0_14.zip.008?auth_key=1775722527-be6c7a1c50bb42c88009536d2496e31d-0-9a9b7dcb08cce3180d268a06982bd2f9",
|
||||||
|
"md5": "a98a8fcc4780fa96d5cc660c16bd1da5",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_official_1_0_14.zip.009?auth_key=1775722527-0ffa12188a24445eacb496d401c90dad-0-5df8e85bb1023325ad838b60f40d471c",
|
||||||
|
"md5": "98070c6d19e1cc4156ee209c1ab64400",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_official_1_0_14.zip.010?auth_key=1775722527-c08bce8af8f843aab74037a0144508b1-0-bb7f4933bdc856f8933aec4fc040afdd",
|
||||||
|
"md5": "c8569db6869347f569363393e625bdd6",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_official_1_0_14.zip.011?auth_key=1775722527-3a44d1d30bfa4b2f8b1f2ccb3d7e26e5-0-a86141f73eb348a0b8845fd91c77e905",
|
||||||
|
"md5": "383b7d91013e0e3bcc9b0d4b410d9aab",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_official_1_0_14.zip.012?auth_key=1775722527-519aead741fa4d0d95af305d7e094e71-0-2eae083d59c7094a8ebf9fd16e5b9ea7",
|
||||||
|
"md5": "21a85601a343578486c214a74150ef54",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_official_1_0_14.zip.013?auth_key=1775722527-ecdb523614d543bf9075f7d406ccde2f-0-c7d1c8c1082f1499b8f3d4bb36d04a93",
|
||||||
|
"md5": "30dcc962b87dcc608fd93cd146a40063",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_official_1_0_14.zip.014?auth_key=1775722527-2ef0579a18ae4cfda52ee304da1aa29a-0-251497db42bd2b62e48f32e4535c5079",
|
||||||
|
"md5": "5ac18b5a3ca8985914fb89dd8768dc83",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_official_1_0_14.zip.015?auth_key=1775722527-60792e2e6d914bbcaaaa067d25072a93-0-27714a3c9ed1e34d869d491389708b8f",
|
||||||
|
"md5": "2d8b07fc373abf2c895e7e88bf9fa040",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_official_1_0_14.zip.016?auth_key=1775722527-6d70e17903164cf78a433f8780c8789a-0-20624b7bdee63eb144c405611d222778",
|
||||||
|
"md5": "907f92bab6ad56f77aa94a1fb8f0e5b7",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_official_1_0_14.zip.017?auth_key=1775722527-94cd440815bb4d86806b14df3a67b83f-0-b21d4b2e415844646dc5fda6d3bd6fe2",
|
||||||
|
"md5": "925d342e175b6039fe7b680acb9ffb81",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_official_1_0_14.zip.018?auth_key=1775722527-6806ef8a87c3431998f7fc4f980da189-0-9918074430df5fa6e7ad14ef38f6325a",
|
||||||
|
"md5": "c62cbeaf872d207a969c1be9a106ced1",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_official_1_0_14.zip.019?auth_key=1775722527-cfcf52a5a8f84eca9a5775c22d1037c5-0-6dc6a7f6fe34bc683a6d5954d0800456",
|
||||||
|
"md5": "c24a74afef3dc6e3e7df95bad23a4c21",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_official_1_0_14.zip.020?auth_key=1775722527-8fd86e9e931f496e981c3e779333115d-0-b0f1c103b8060f018604f8adae053706",
|
||||||
|
"md5": "237fa447af215ba13f951ae16b142fbe",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_official_1_0_14.zip.021?auth_key=1775722527-382d74ac053446d5a89cede07495c47e-0-1da7ea4ad1b2e3d6f130930e46645eda",
|
||||||
|
"md5": "d0536aaa0890e313a1715cf26aae15fb",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_official_1_0_14.zip.022?auth_key=1775722527-475423be255a4b60851f61f427ce08f6-0-f2fc07db541aea70cb4d3fa1ec145569",
|
||||||
|
"md5": "8abb8a0bc074a6d2fbbf23e92cab4f87",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_official_1_0_14.zip.023?auth_key=1775722527-6c41962768574115ab33c03d22faa32c-0-e9ef84430fa171312ed66d5a04fe1506",
|
||||||
|
"md5": "9abf54b85fbf2bde0beedaabaee22c80",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_official_1_0_14.zip.024?auth_key=1775722527-046bac1099cc41e38823cc046ba52131-0-a384aa4ea12b6733ee031d92e532bc70",
|
||||||
|
"md5": "ee92cb543922f80ca9c38dbfbbfb7c62",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_official_1_0_14.zip.025?auth_key=1775722527-0605ba0a68cb458e890966db1dd5a841-0-fbfa44e4de089d42031d32780a4f416c",
|
||||||
|
"md5": "e25faabb645c133ffd630f88a8ada9f3",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_official_1_0_14.zip.026?auth_key=1775722527-f0e50dd64a00458ea83ba6233d9e15a9-0-72d3f8b16d963ac24af903a956be0f0b",
|
||||||
|
"md5": "f23b002977c6297791140a243b376231",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_official_1_0_14.zip.027?auth_key=1775722527-67e4b3155b4947e089d30ee8ac127363-0-4a70679326c8a61815fd81cf23bc2819",
|
||||||
|
"md5": "868e944ff280b9b2d8afe6413e2e708f",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_official_1_0_14.zip.028?auth_key=1775722527-f8e8d910079440ca842a6b80dfb9d741-0-e1a066af6f0baf5cb6d0ab5aadc6168b",
|
||||||
|
"md5": "892e5ede522ace41862726d31d29d177",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_official_1_0_14.zip.029?auth_key=1775722527-0b1cef3d886b40569c06dbaf62052d85-0-e0dde062f5ec0d62588e668cc78a74d8",
|
||||||
|
"md5": "1cf849ac8a54407296dd71a8b830f2a2",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_official_1_0_14.zip.030?auth_key=1775722527-648135aed1b041eb9cac5a44bcf94492-0-5199212b8305a0088517c5e8bd68a3b3",
|
||||||
|
"md5": "cf04eea492572688b181720ace6bf3e2",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_official_1_0_14.zip.031?auth_key=1775722527-3b3d980977bb40da976f53e07a70f432-0-e9fad7f327b8a42507584501f80702a1",
|
||||||
|
"md5": "2e0a7ce8697e35175478113600be26f2",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_official_1_0_14.zip.032?auth_key=1775722527-aa87d3ee081a4651b1b3316aa418297b-0-306555557a3db27284196e529d135a0e",
|
||||||
|
"md5": "d48f03183dac6131949dbb9b29236520",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_official_1_0_14.zip.033?auth_key=1775722527-62113a8d90274894b1903ec593059041-0-303786973622921e94a4e3b6b84a2aef",
|
||||||
|
"md5": "4070fb14fc9d3df642033433d0c5b1fc",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_official_1_0_14.zip.034?auth_key=1775722527-6990ba39382d4aec9dd740f0f499c445-0-b64159d1b294d9b815ff6d5d92b8cd6e",
|
||||||
|
"md5": "de88a54e15fb399fb7d600a98364f91e",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_official_1_0_14.zip.035?auth_key=1775722527-a153a8c81f864e61aa54cf0bd2f61a74-0-f79972ce0b4a0229763bed525464cee6",
|
||||||
|
"md5": "1fc2b8f8a16b7bcafe78d3f3907e6039",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_official_1_0_14.zip.036?auth_key=1775722527-5956b51387564f3591f5ff4c3b78fe45-0-84f0c899e92d98a84d3430a4f2b167a6",
|
||||||
|
"md5": "50e7cffa232471268e317bd5a4a8b6af",
|
||||||
|
"package_size": "696384945"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"v2_patch_info_url": "",
|
||||||
|
"v2_patch_info_size": "0",
|
||||||
|
"v2_patch_info_md5": ""
|
||||||
|
},
|
||||||
|
"state": 0,
|
||||||
|
"launcher_action": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-09T08:15:28.375+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "6LL0KJuqHBVz33WK",
|
||||||
|
"launcherAppCode": "abYeZZ16BPluCFyT",
|
||||||
|
"channel": 1,
|
||||||
|
"subChannel": 1,
|
||||||
|
"launcherSubChannel": 1,
|
||||||
|
"version": "1.0.13"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"action": 1,
|
||||||
|
"version": "1.1.9",
|
||||||
|
"request_version": "1.0.13",
|
||||||
|
"pkg": {
|
||||||
|
"packs": [
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.001?auth_key=1775722528-01c69b5edd8a409496544cdf0ece3238-0-47b6253c3b18c002681278f0acc160e6",
|
||||||
|
"md5": "c38326d35ecae083e1287f2face71961",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.002?auth_key=1775722528-7edb9851bc164016a7cd5103a2a620be-0-d3f493d0ab1d51d19f3992aa38ba62d1",
|
||||||
|
"md5": "20f46b024bbd75248f3d22881f4222c0",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.003?auth_key=1775722528-585b42a0c1ea4cffbdfa4c128f97460b-0-2ff7de8970b9e38bbb50f551dfdd1961",
|
||||||
|
"md5": "f3dbacf2619ec1bb2ed5333bea83ac7f",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.004?auth_key=1775722528-684e64b39c8d4dc88d3bd0b7bd2ae595-0-4114478338bc0c72993bcccbb339ad79",
|
||||||
|
"md5": "544b70a029e6dd841a9cfc2e4a64082a",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.005?auth_key=1775722528-24c65aa2194847a18afb7fcf4bedf027-0-8d31a8c63a0eccd53a50c66c0d130701",
|
||||||
|
"md5": "d35d159cd37855302e6ae826f7a8b82f",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.006?auth_key=1775722528-02558387d6aa4ec18240f845fc1cb798-0-1cb9de721b43652b2930114ad005ede7",
|
||||||
|
"md5": "5b4784ca47740fbaa80b3b055cad3073",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.007?auth_key=1775722528-ebfe9568e4574b88af6951a7e9e02678-0-26c4b4f0ac1fcd5a91e849bd859fe82e",
|
||||||
|
"md5": "eb3b2ac60d8e74cbd0d49d6f6ed8376d",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.008?auth_key=1775722528-d6635904d4494cdc97ce9f71f1a8fc98-0-7608b260a239dd242e3b4b8bd0e26824",
|
||||||
|
"md5": "e806f6fcda7d5a2477280b85d64808da",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.009?auth_key=1775722528-66499ade3e5d48d189db450818a86cbd-0-7026ee17b7771b9daa073e4ee2d13a02",
|
||||||
|
"md5": "e17a49554221bdb2b84d9d4d4a6b1da5",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.010?auth_key=1775722528-884c12e57ca848859271e15f932b9c86-0-bb48313c37eacba8802ec488bb020ae4",
|
||||||
|
"md5": "60537ec5bf32df03b831db6651ca2015",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.011?auth_key=1775722528-7f29f1df808f4005b39ae9245bf81fb4-0-a3390ccba5498a2274f4ef155fa3ecc4",
|
||||||
|
"md5": "bb0fd2da7a353262ac38390aa7dc57d2",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.012?auth_key=1775722528-bd2d8e318d26479b8f4f1b74de27f2ea-0-d6f19a1b444dcb217753972c21e8d60a",
|
||||||
|
"md5": "5bbf5d8ac4179949f0bd8ad9c1b31dd1",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.013?auth_key=1775722528-8cb1b9da087146b799774e2bc1f98c0a-0-a2815a1e3c97aec1bbbf433f13ce8abd",
|
||||||
|
"md5": "22d68e8afe49f32c658f250f89b366c0",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.014?auth_key=1775722528-f426f1e96bff4ce28cb1a1c537bb4ea8-0-8931c03fd06deccef3329741759927c7",
|
||||||
|
"md5": "630f07c23d73cbbf46e3e19d5d48b251",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.015?auth_key=1775722528-da4ba4e1e08c4ec49e5a5d2d81aaea9a-0-9cfc1e2fdbb72c687a3f27612c6494a6",
|
||||||
|
"md5": "e2313062706e7a870ec60f5ba048027f",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.016?auth_key=1775722528-94276e6794ca4f92b9684b9ec576a664-0-0d4e05a49632a8e0df31b57b17e0fa4c",
|
||||||
|
"md5": "d435a67ee2f3508c93cfa482f40abc95",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.017?auth_key=1775722528-27d4ba08a090456e9ef5ce45ad651f97-0-5e39109a10b2c5bcfee50dddeff30848",
|
||||||
|
"md5": "0f9d6061d9888caa5eb5093d7a2e5438",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.018?auth_key=1775722528-c9230d03998a4948a82b92b633043d17-0-7322167072c1d93144fdac4b6d0715a9",
|
||||||
|
"md5": "d53df9f8184b0a8ab10fd2e74d1c6307",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.019?auth_key=1775722528-e8b5471626f44ebca0fb5872dfd5563b-0-e6cfa5acf5ab0165c89c076f4536bf82",
|
||||||
|
"md5": "4c05bb501a042fb53d704df42231dc22",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.020?auth_key=1775722528-7f7998d7ce974f068ef47331b0c8cd52-0-664c9c5a6b0a46244f26e16e466fee05",
|
||||||
|
"md5": "2a65799ba837c1cb96b909797b1b0675",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.021?auth_key=1775722528-a9183608cd7543948afc71cb77fa65bc-0-1c0e7b5bc614020bc61826e554b62aca",
|
||||||
|
"md5": "3885b66d547b4b0fcbda6b7170f7e0bd",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.022?auth_key=1775722528-84b8d4bdad3c46e9b2afa921e9ee659f-0-a9d2702e6d75d6eacd8b63d9a969711b",
|
||||||
|
"md5": "0e814e7d05e8608fcfc325cf453b8c81",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.023?auth_key=1775722528-a4f613c8d99e44f7bc74dc587bf07420-0-5c298b7b5f4e055481fb9329029ab665",
|
||||||
|
"md5": "461f2cabcc4551f3ee03c8f63a772fc9",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.024?auth_key=1775722528-92587b87b9c34eee9220a7c538952efb-0-bb24816e0ca0882ecc1dc88b1900e80b",
|
||||||
|
"md5": "f15fbc78df81c2b44f87f332cc1e13b3",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.025?auth_key=1775722528-c93774b36ac542a5b88fbc7f47303406-0-3780d5806aeeeb174527f150fdca23c5",
|
||||||
|
"md5": "9c3a21b61f7340fd7df57644307ada5a",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.026?auth_key=1775722528-7c09db3318c04a1aa4b189b330f34f77-0-5ab0709ab9547cfa36af4e560a76d5c5",
|
||||||
|
"md5": "0b29f2ecaca9c36fbbf3f6b28e32886a",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.027?auth_key=1775722528-04511561afc147f3a08300383a4f07ab-0-21b0eeb9314d90dd7bc6ac4f6f1c14b6",
|
||||||
|
"md5": "ef792738209206745460693584c5b412",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.028?auth_key=1775722528-d857336298154635a20b3590efdf0604-0-ed0fb29aef7fe2253c1180be8f43e61c",
|
||||||
|
"md5": "af656465b65c8863a8ee365112a6d346",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.029?auth_key=1775722528-66d658e3753d49d28fc66766f537617b-0-4edfbd2eb675a456af351fd61eca93ef",
|
||||||
|
"md5": "49bdfadf3204d738f78e6a2b7ede0c1f",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.030?auth_key=1775722528-1b4d40549f554dfbb9bd5a9131eed78e-0-7e88ba083491a25c76bdc6050288e35d",
|
||||||
|
"md5": "910002bcd7ede4bd92dabda717f19b30",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.031?auth_key=1775722528-e6c9c5b939c4431abc921c904fcc5750-0-1506fd2f1ff222286fee259c695fbc5d",
|
||||||
|
"md5": "b37356986a956885aaf1237bd916c9d4",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.032?auth_key=1775722528-0db4cdcb6db941e5a97b5b00e7a7328b-0-396355950fb6c0cd4c1d859aa6dda86c",
|
||||||
|
"md5": "4dbb43d595cade7e29654be43f1eec9d",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.033?auth_key=1775722528-5cbef763b87a480580b383fa3a4c35fa-0-eb27edcb0e1ea9304e2b220599c8dd4a",
|
||||||
|
"md5": "2e45b72c48dd42a8c95e15829eda5f5b",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.034?auth_key=1775722528-2e4d3cd700f44f83a18a2eeb2438fcec-0-998143dea3a98b4b5313c01a1ffe4545",
|
||||||
|
"md5": "7a593e6085a481ab46249315881b3393",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.035?auth_key=1775722528-54c3838744e246e0a0695263e89af4ad-0-2c844acd8131947e94377ea282c212c3",
|
||||||
|
"md5": "4c1ee12ef15717ab13ca35507af8a2be",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.036?auth_key=1775722528-5b5cd854a239400f8654705067c92109-0-b4d233a83c4f49ac0c400d62f301fb48",
|
||||||
|
"md5": "d1ea86dd1efbf705e06a883ae138a5fe",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.037?auth_key=1775722528-4919e3070df54ab3b6fd05452356fd09-0-5773f6b405d6c6f29bd44656c66e472f",
|
||||||
|
"md5": "12e3582aa295cba50fd887d09a239444",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.038?auth_key=1775722528-ef88752848e740ba954bf9fd80098cee-0-c606faccae487713b42d2ff52d3e3e27",
|
||||||
|
"md5": "cfdb76064a14ef5ec458deebaf7e176c",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.039?auth_key=1775722528-df11e0bf653d440fb897c692ae19e72d-0-4845bd8e67f5e747e501ea8613669e07",
|
||||||
|
"md5": "fd8fded1e44ace254fb79313421ee7fa",
|
||||||
|
"package_size": "927651225"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"total_size": "91824655390",
|
||||||
|
"file_path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/files",
|
||||||
|
"url": "",
|
||||||
|
"md5": "",
|
||||||
|
"package_size": "0",
|
||||||
|
"file_id": "0",
|
||||||
|
"sub_channel": "1",
|
||||||
|
"game_files_md5": "1bb81faed42edfd6ef23a8d51c9ec32a"
|
||||||
|
},
|
||||||
|
"patch": {
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/Beyond_Release_v1d0-Rel-cn-5157154-10_prod_obt_official_1_0_13.zip?auth_key=1775722528-6715072bfdd64cf9869f2f222e9d454f-0-6b9d458a6da6a94879bbb4456bc3553e",
|
||||||
|
"md5": "e6786437a656f403dac9ff6bb5b3ad63",
|
||||||
|
"package_size": "38279669654",
|
||||||
|
"total_size": "84412380347",
|
||||||
|
"file_id": "1",
|
||||||
|
"patches": [
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.13/Beyond_Release_v1d0-Rel-cn-5157154-10_prod_obt_official_1_0_13.zip.001?auth_key=1775722528-bbf2edca5d4147e39146acc986fa7298-0-6d88764c63bd713ffc71a50a6dec284e",
|
||||||
|
"md5": "3044c8db514b03681743e58cb1dd3f1c",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.13/Beyond_Release_v1d0-Rel-cn-5157154-10_prod_obt_official_1_0_13.zip.002?auth_key=1775722528-4744c207472643728cd0e946e1c768ae-0-23b45142754f6e7e9a3c5a199d4535f1",
|
||||||
|
"md5": "c175bc3946daa417a4468b94e305a61a",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.13/Beyond_Release_v1d0-Rel-cn-5157154-10_prod_obt_official_1_0_13.zip.003?auth_key=1775722528-9f1eebdc5f7f4dd288452f1920431ee7-0-830cd75cb2c5d8b5b6d316d1265a4a00",
|
||||||
|
"md5": "01cd48df573724691501ca52a810141a",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.13/Beyond_Release_v1d0-Rel-cn-5157154-10_prod_obt_official_1_0_13.zip.004?auth_key=1775722528-95bd221635c2489185c5710abd058d1c-0-342cced71b85213d00fdd5d4123ef8bb",
|
||||||
|
"md5": "d503d70588269cdf882ec10fb1a7084a",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.13/Beyond_Release_v1d0-Rel-cn-5157154-10_prod_obt_official_1_0_13.zip.005?auth_key=1775722528-4b96ed92b27243549c59ce1e51b97485-0-37578bb1767a8911f7c09c83d75f60f4",
|
||||||
|
"md5": "010ae7ee220ec3efc5b75c37b67de632",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.13/Beyond_Release_v1d0-Rel-cn-5157154-10_prod_obt_official_1_0_13.zip.006?auth_key=1775722528-c9ad53fd8d32481bb70f69c5ef11e9c6-0-5e8ab336e2a115a7d15daa2383e72659",
|
||||||
|
"md5": "11e46b0ffb675a6eadd733130aa21957",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.13/Beyond_Release_v1d0-Rel-cn-5157154-10_prod_obt_official_1_0_13.zip.007?auth_key=1775722528-4eb65c3cb2ce4b058c87f59ab0e2b195-0-61a1469fa5640d8ece3cb6c5c34d531b",
|
||||||
|
"md5": "12abee415350928c84c7325714da6167",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.13/Beyond_Release_v1d0-Rel-cn-5157154-10_prod_obt_official_1_0_13.zip.008?auth_key=1775722528-e04af9f8c9d647329ca7ba872b68aa10-0-8ba9cacde6847d791ead2ab9d1665891",
|
||||||
|
"md5": "e574d174d0e4633c4d1e2087fab5f89f",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.13/Beyond_Release_v1d0-Rel-cn-5157154-10_prod_obt_official_1_0_13.zip.009?auth_key=1775722528-9ce562541a4443b1b6744cb34a09a0c7-0-ef44f711c538a8ff1ff2b4d214bb8fba",
|
||||||
|
"md5": "a472f828d834d9e865cbdaaafcfdda2b",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.13/Beyond_Release_v1d0-Rel-cn-5157154-10_prod_obt_official_1_0_13.zip.010?auth_key=1775722528-f33615ce1f904d71bc475aa7a5bed905-0-a58b01a01c5c5084b0953d47315e4a3a",
|
||||||
|
"md5": "55093095f9a0b3a33d932f64c44e7ed8",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.13/Beyond_Release_v1d0-Rel-cn-5157154-10_prod_obt_official_1_0_13.zip.011?auth_key=1775722528-2cd5d86c7a3f45e3974abf724a799726-0-d803c098bac90e2725f6a1c2d97c65b4",
|
||||||
|
"md5": "a6bc805bca7c6e6cdbcd0331d599fa32",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.13/Beyond_Release_v1d0-Rel-cn-5157154-10_prod_obt_official_1_0_13.zip.012?auth_key=1775722528-b42fe396b2d445489fc3ad1162c1f7de-0-3d2bf9e5c3332ef872cfbd20bae1d24e",
|
||||||
|
"md5": "6b54d883ab5c494bed62c2efaf469a3a",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.13/Beyond_Release_v1d0-Rel-cn-5157154-10_prod_obt_official_1_0_13.zip.013?auth_key=1775722528-2a69cf2b6f64425f80c141f40b7394eb-0-6cc1be9ef07dd501440554bb6ee1696d",
|
||||||
|
"md5": "c078ab00c4757518be74391cda8ca592",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.13/Beyond_Release_v1d0-Rel-cn-5157154-10_prod_obt_official_1_0_13.zip.014?auth_key=1775722528-f5c5e44e514149e59cfd4759681e1c9a-0-bed8bdea0940f5dc155819f851f3ffef",
|
||||||
|
"md5": "676d2120a7d01a5add1f3e6401949181",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.13/Beyond_Release_v1d0-Rel-cn-5157154-10_prod_obt_official_1_0_13.zip.015?auth_key=1775722528-aeb2aad18cff4fc79da4b6e8e0ba5541-0-91718790ae312b536f18f680b1d2af2a",
|
||||||
|
"md5": "adef6b403ad3933674e007e08945b0ae",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.13/Beyond_Release_v1d0-Rel-cn-5157154-10_prod_obt_official_1_0_13.zip.016?auth_key=1775722528-02dbd92e251247dcac771c4e7a7ccfeb-0-7fcf2b16bb5cf592b6d5ef631593b5ec",
|
||||||
|
"md5": "60d68983cc4c9fd20c01cd9f2d92d0e4",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.13/Beyond_Release_v1d0-Rel-cn-5157154-10_prod_obt_official_1_0_13.zip.017?auth_key=1775722528-d9b7404b56e14f1599045f6e80987489-0-5e807b3766337cae188e36742dd3bf74",
|
||||||
|
"md5": "57ff158b0f5faa6dd3a8c019f0dc990c",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.13/Beyond_Release_v1d0-Rel-cn-5157154-10_prod_obt_official_1_0_13.zip.018?auth_key=1775722528-f2461092ceef4266b3b0cb5c5f567c66-0-8f795da3d43040b1493b238aa2666a7f",
|
||||||
|
"md5": "a70c1d458b930e592724bf90f1c47942",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.13/Beyond_Release_v1d0-Rel-cn-5157154-10_prod_obt_official_1_0_13.zip.019?auth_key=1775722528-f953b8ff4ea04ede8a6d48ed5442748c-0-c141357d02d5a67506c4b07bda8d6a33",
|
||||||
|
"md5": "332a07662eb67d9c21be93f51558dad7",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.13/Beyond_Release_v1d0-Rel-cn-5157154-10_prod_obt_official_1_0_13.zip.020?auth_key=1775722528-8768e8ff14774393be21ce79ae4614bf-0-8b87ad99850b4e172772797841d4b137",
|
||||||
|
"md5": "9527d8db58279c31db2407c71bc6f8f9",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.13/Beyond_Release_v1d0-Rel-cn-5157154-10_prod_obt_official_1_0_13.zip.021?auth_key=1775722528-ec38b212e39a459b8ceaac017173f464-0-60ca8bcaa9a392de1b03b6da47cdeef9",
|
||||||
|
"md5": "0439bfda5c6f616792b9aa1d1bf1ff72",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.13/Beyond_Release_v1d0-Rel-cn-5157154-10_prod_obt_official_1_0_13.zip.022?auth_key=1775722528-fc05b20c63634bd8ad3b480a38ab4db0-0-a849aa88b3fb31357a58d7f0aaa3e4ef",
|
||||||
|
"md5": "ac786f4d67ab0339e105d6042f205eee",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.13/Beyond_Release_v1d0-Rel-cn-5157154-10_prod_obt_official_1_0_13.zip.023?auth_key=1775722528-52677baa2810440d962b1bee17abe301-0-498afe8615a5c811ca321dbb51f8cc2c",
|
||||||
|
"md5": "f8f56354c03942daedcfefe19e26fb36",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.13/Beyond_Release_v1d0-Rel-cn-5157154-10_prod_obt_official_1_0_13.zip.024?auth_key=1775722528-6b8d3816d3194dca876d2217625d4583-0-c5e1c1f43ec60b5b047dbcfa899fd00b",
|
||||||
|
"md5": "d8ecc7878cdaed0a64ec18b009fdcd8e",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.13/Beyond_Release_v1d0-Rel-cn-5157154-10_prod_obt_official_1_0_13.zip.025?auth_key=1775722528-d143cbcd234c495bb2f2d2856b7227b8-0-8e7b07a7b226c04ce7f1cffa3c8772be",
|
||||||
|
"md5": "273131900d4f755709c8b651e5a8af2d",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.13/Beyond_Release_v1d0-Rel-cn-5157154-10_prod_obt_official_1_0_13.zip.026?auth_key=1775722528-4b54b72f86bd410bb285e899f901eabf-0-f86cbc6992f2d51193e1d0d7840efaae",
|
||||||
|
"md5": "8e2ce2fdd6950bc15051ff0fdf84e77b",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.13/Beyond_Release_v1d0-Rel-cn-5157154-10_prod_obt_official_1_0_13.zip.027?auth_key=1775722528-5a4546bee4d8416c96aeff76ee2e092a-0-574538d9828fc0593568df200425b5d6",
|
||||||
|
"md5": "316e7d8a071d2f3381b01c74dd19d623",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.13/Beyond_Release_v1d0-Rel-cn-5157154-10_prod_obt_official_1_0_13.zip.028?auth_key=1775722528-6bbd70a9481b4ff9be2501eeff4e7c36-0-22dc7ae8074cff15ff8c1077e1463db2",
|
||||||
|
"md5": "ea7bcc196f915df20d9a7fe2e339ddca",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.13/Beyond_Release_v1d0-Rel-cn-5157154-10_prod_obt_official_1_0_13.zip.029?auth_key=1775722528-a3bb08b4fc8f4c84ac71c59b991210dc-0-4eda5d30c98a3fe1ab2e3a39a1b0f8ac",
|
||||||
|
"md5": "0862c85a801345a96abd6e5b18724a2c",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.13/Beyond_Release_v1d0-Rel-cn-5157154-10_prod_obt_official_1_0_13.zip.030?auth_key=1775722528-4731deed55e240c69c5329aef5cd7915-0-14aa3e06e2437c5cf488e2a8b8204951",
|
||||||
|
"md5": "39ca2dd184cb1ca8a2989e0dfc49ed99",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.13/Beyond_Release_v1d0-Rel-cn-5157154-10_prod_obt_official_1_0_13.zip.031?auth_key=1775722528-7fcced32f8494a6a884c169b8ca14f6d-0-29e0ff3cd39027f2a6fc0a49f2006084",
|
||||||
|
"md5": "1ce31f8e62ac0bf3664a0bbc338838f8",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.13/Beyond_Release_v1d0-Rel-cn-5157154-10_prod_obt_official_1_0_13.zip.032?auth_key=1775722528-1d2c0c94bb144f8c917a8576e92bb478-0-df1524b4e4b02c998da69ba7d1fce1a4",
|
||||||
|
"md5": "6805d77bbb01312c0e27679033df8931",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.13/Beyond_Release_v1d0-Rel-cn-5157154-10_prod_obt_official_1_0_13.zip.033?auth_key=1775722528-f902f875b9fb460e8c886da78f691c68-0-b50e09572c1862036d86f9f6a281c1dc",
|
||||||
|
"md5": "b97a2b9d0a9b76ea5c182e27f8803327",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.13/Beyond_Release_v1d0-Rel-cn-5157154-10_prod_obt_official_1_0_13.zip.034?auth_key=1775722528-bcf38241fbbc44259901939619fe34ab-0-34bfeee2633b64590fb6707ff9378b9a",
|
||||||
|
"md5": "5b12e573ba1572c3d3a61214bbcc4a22",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.13/Beyond_Release_v1d0-Rel-cn-5157154-10_prod_obt_official_1_0_13.zip.035?auth_key=1775722528-8c8c8480200e474d90e5bb2b226a3217-0-0db97510bf189a48dd37f1c4a304e5fe",
|
||||||
|
"md5": "302b443bf9464c3f330e435009b71007",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.13/Beyond_Release_v1d0-Rel-cn-5157154-10_prod_obt_official_1_0_13.zip.036?auth_key=1775722528-28e0dc0dfd774ce7876f839c6a2674b5-0-fb32796b8a0c60f2b3eb3147b6a3541a",
|
||||||
|
"md5": "afac53419f2abc4e635395c98d8151ad",
|
||||||
|
"package_size": "698705814"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"v2_patch_info_url": "",
|
||||||
|
"v2_patch_info_size": "0",
|
||||||
|
"v2_patch_info_md5": ""
|
||||||
|
},
|
||||||
|
"state": 0,
|
||||||
|
"launcher_action": 0
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -1050,5 +1050,422 @@
|
|||||||
"state": 0,
|
"state": 0,
|
||||||
"launcher_action": 0
|
"launcher_action": 0
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-09T08:15:28.623+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "6LL0KJuqHBVz33WK",
|
||||||
|
"launcherAppCode": "abYeZZ16BPluCFyT",
|
||||||
|
"channel": 2,
|
||||||
|
"subChannel": 2,
|
||||||
|
"launcherSubChannel": 2,
|
||||||
|
"version": "1.0.14"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"action": 1,
|
||||||
|
"version": "1.1.9",
|
||||||
|
"request_version": "1.0.14",
|
||||||
|
"pkg": {
|
||||||
|
"packs": [
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_bilibili.zip.001?auth_key=1775722528-73f4a6f689a04d7eaa753aa407c38400-0-779acaeb4aa73ae9fc6e2bc95896ec39",
|
||||||
|
"md5": "d4324d330a815095f90aee042a38179a",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_bilibili.zip.002?auth_key=1775722528-098d3a751d834017a42f64c47106cd9e-0-cf32c739a70576d560f22ebe3198a23d",
|
||||||
|
"md5": "e2272ab3fd8f164689b841deb2ff8eb8",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_bilibili.zip.003?auth_key=1775722528-a62f762deda241039d4fb1722c95836c-0-c1c00b0e3eab7852d5ba98d8394341e9",
|
||||||
|
"md5": "fb11faab68af9ec76a0be762f830e756",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_bilibili.zip.004?auth_key=1775722528-184948736e854271acb1769ebab6c9cc-0-bad5fb769942bdb925c053e45453fe10",
|
||||||
|
"md5": "e69e4d2e6442bb0e4aa47487ea4d5359",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_bilibili.zip.005?auth_key=1775722528-ce6e72749c954b3491fc991aa459f667-0-1f2f993d096a163d5e8b1fe821b86c51",
|
||||||
|
"md5": "4accc2d81baf9254c6e5b453d6321bd1",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_bilibili.zip.006?auth_key=1775722528-7a0c6a404da74b6994f13394ec9da277-0-b927b66cac26c4c8d00102a74143bba8",
|
||||||
|
"md5": "55edd4666976289f7c0595f417b74da7",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_bilibili.zip.007?auth_key=1775722528-4a3861495eb34c219894f5444aed75fb-0-e68bbc63f8bf910186ff49a26a96a775",
|
||||||
|
"md5": "af1aca3ee6b0be8f15f8157e4db6283e",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_bilibili.zip.008?auth_key=1775722528-f6d5b9fe131b45a0b9319183af651f8e-0-28c26d7fc6229b1936f5e3b3dcddae33",
|
||||||
|
"md5": "d219a19637b641b3d44bcd11cbffa27d",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_bilibili.zip.009?auth_key=1775722528-e85ec5f407c84b8d9f7cc4543f53e3cc-0-6002f8aa1c12d392c1cfc946b0980988",
|
||||||
|
"md5": "809ce3cf53c6e179b08d84d52c649627",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_bilibili.zip.010?auth_key=1775722528-cfa4d881c4c14c229cfca8d7bb298b31-0-730a515500517fc75e0faeef6505e2ac",
|
||||||
|
"md5": "9a0e6b856d3deb6c2aed4a29f23f17f9",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_bilibili.zip.011?auth_key=1775722528-5b06de27782a4bed8560470ac072d160-0-4abdbc0cae14d341393eb76131bbe876",
|
||||||
|
"md5": "e7d92996948830a7190c287407f4e85b",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_bilibili.zip.012?auth_key=1775722528-9be8f774ccd44ea1a910349f33c912d4-0-1592e5b9fe3367ea32b33d0132a56fd3",
|
||||||
|
"md5": "b5e8ac6ce4606d3b383b4fe883725e8f",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_bilibili.zip.013?auth_key=1775722528-51749bdd2c3a42f2ba61513151975af8-0-4489090fcd78c79a409ee248338eecf2",
|
||||||
|
"md5": "4e02050c578d1fa05073370d91725ea0",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_bilibili.zip.014?auth_key=1775722528-7fc8b7177aee4d038e5e99f6ee2bb0e8-0-de6b3533e5c594e33be94ff8430e3a03",
|
||||||
|
"md5": "8a71022e0d7a4d6ac15e9d8775a53e7e",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_bilibili.zip.015?auth_key=1775722528-a90d2d032b824ebfb78094cf799b53b3-0-187f4667acfcd35b443aad45453fc1f5",
|
||||||
|
"md5": "6c2a606f0324e630087993a575ae72c1",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_bilibili.zip.016?auth_key=1775722528-52ea196f57f740cfb0c0bdf96995cf43-0-413030be2dcf3d74cb92e8b7517dd52f",
|
||||||
|
"md5": "b15179c37b10d67c4c331faf6961a6a3",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_bilibili.zip.017?auth_key=1775722528-9eb344cb555d4fdc865f857912b9044c-0-e6a01d8603a78b7560b3a7b6386a3d72",
|
||||||
|
"md5": "de8bcdd611e7de31d02b8a936d2a2700",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_bilibili.zip.018?auth_key=1775722528-099578e485264a0398515e826109da97-0-8fab6c2cd796f816762eab7b13d1b271",
|
||||||
|
"md5": "e7a11a8da7962f1cc16bc01aa844014f",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_bilibili.zip.019?auth_key=1775722528-8a29485973bc46a3918693bf391fff64-0-54c138d6f63bd9e039b195643d326165",
|
||||||
|
"md5": "8ca40cb1bb7f94593602570c71e3716e",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_bilibili.zip.020?auth_key=1775722528-121e4f285997403c89c5a189c33ca0ab-0-9f37889b80b472c50d9697add8213c5e",
|
||||||
|
"md5": "86d9991fe77ed1d00730bc3b97e8be68",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_bilibili.zip.021?auth_key=1775722528-32cf4cb48e8a4ab88839712de526df35-0-16b1231f075b3ebd934e1424d5781091",
|
||||||
|
"md5": "6d1ffd9415bb22d89769f6d7afce8857",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_bilibili.zip.022?auth_key=1775722528-6247d27048a640b69d0f0d16163573e5-0-e810477659cb627cd147eb4a3c4f998c",
|
||||||
|
"md5": "e28f0fbc7e8de13f7eb4ff2c77c80f97",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_bilibili.zip.023?auth_key=1775722528-b706702d6e8c4971ad190efad1a648ea-0-23bad0fcf459cba4c68c7d069fbfb5b9",
|
||||||
|
"md5": "eca14e682fd327b53816a23778eeec95",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_bilibili.zip.024?auth_key=1775722528-6fee9a22387a4f558eb0a4c77421e457-0-dd5a68be6e95d1e1471a322fff5c62e4",
|
||||||
|
"md5": "fe0e4070526392253b7edb23a14a6278",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_bilibili.zip.025?auth_key=1775722528-e3720840b1cc420f8f5c64ce09a04bd4-0-20dbe1456f4582e0bb7f14b77d6edc57",
|
||||||
|
"md5": "48f1e697cfe28c6c2c43d2b417708d7b",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_bilibili.zip.026?auth_key=1775722528-d9e87d17b5d7432b8677c9952e39a1d2-0-22c438b4d8971c3e74d2639c3b175e23",
|
||||||
|
"md5": "28b662c7b787969f99425a19fbc84ea2",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_bilibili.zip.027?auth_key=1775722528-8cfb001cb22043a2ab3eb40a37969329-0-1f83576ad94ec7cfae9bae2899ebf339",
|
||||||
|
"md5": "91beb0656cfcbe377bf7d7858b292f82",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_bilibili.zip.028?auth_key=1775722528-5931e7e2da664c998713677886fbaa55-0-51ec54e5975094d170e5aa8dd783cd61",
|
||||||
|
"md5": "2b561fb465e3982bc5f558f76698644b",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_bilibili.zip.029?auth_key=1775722528-b47d026c7a844f3892770c7ab1ef4197-0-8d7d58e0ac1288b1ec73dea83444f7d2",
|
||||||
|
"md5": "4a0cf029ac4df2e38c9240f19e4d9398",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_bilibili.zip.030?auth_key=1775722528-29391db249174af580569fa8cb30b6b6-0-d4c1631c452d3e84e710a69066137062",
|
||||||
|
"md5": "b3c7f33dc8e10314999e7051e63b5043",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_bilibili.zip.031?auth_key=1775722528-7f4e92fc8b294d45b69a0bd009b78594-0-b976db7e4d2bf6b6a09db8ecd25fbf04",
|
||||||
|
"md5": "0106ca7864ca462c913abf67fbbca7a8",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_bilibili.zip.032?auth_key=1775722528-2b6dea766a6a46d6a5a4273b716002b9-0-f1690c63f4f72b9b4c9e5140cc63526c",
|
||||||
|
"md5": "de6bc111d4939870a785eca5206a3e70",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_bilibili.zip.033?auth_key=1775722528-c3c794e6da2a49ff8443790182dcca4f-0-07b1bfdecdd8ff34a24eb56e4948179a",
|
||||||
|
"md5": "5bf8d8f7780724a68540702741e01f66",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_bilibili.zip.034?auth_key=1775722528-0dec25088f3b45ada8d659a96beadf5d-0-ec9861d1238497a7c7a524703acb4ad8",
|
||||||
|
"md5": "0243e631500d0562f207db0d92dece85",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_bilibili.zip.035?auth_key=1775722528-8dfaf466572e4a9db03e9e93db5583e5-0-5e17a9ff160f3089464a805c73f47e4b",
|
||||||
|
"md5": "dd32d1c9fb1f3247bb1625e686d59481",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_bilibili.zip.036?auth_key=1775722528-e0d6c9d5e85b48f68d403cac5c23b395-0-22c2e32558a6dbf64e5ee0abb9a8caca",
|
||||||
|
"md5": "d5bb85acd07430fc8a37ae6b32995f45",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_bilibili.zip.037?auth_key=1775722528-3cee1f4c00364bdba845c2c037c82893-0-1c76ebaa0dc3f16e3289860689d12248",
|
||||||
|
"md5": "c801d1c5ad3deab1314db26e6f967f6c",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_bilibili.zip.038?auth_key=1775722528-cad0bd3855fb4927941bae68136d86c5-0-fdf995e9be86aabfba987c1bc0b4b44a",
|
||||||
|
"md5": "7e11c663396a34c38acb7c62ebea9983",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_bilibili.zip.039?auth_key=1775722528-78a7c2a9eed24392963445dfccf3f035-0-7eab160a145991463b8b469846cb6fbf",
|
||||||
|
"md5": "634409e565e1d73540a47d9d5cec8d87",
|
||||||
|
"package_size": "1006691535"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"total_size": "92101182652",
|
||||||
|
"file_path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/files",
|
||||||
|
"url": "",
|
||||||
|
"md5": "",
|
||||||
|
"package_size": "0",
|
||||||
|
"file_id": "0",
|
||||||
|
"sub_channel": "2",
|
||||||
|
"game_files_md5": "57a2b3926b8d604b20ae9c0e828532b7"
|
||||||
|
},
|
||||||
|
"patch": {
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_bilibili_1_0_14.zip?auth_key=1775722528-5f833fd6942f47e797168283b8bfbfef-0-fb26ce1e77fea4db9a33d993a6ab08bc",
|
||||||
|
"md5": "4097bb7802b0ce55ce9632f179942472",
|
||||||
|
"package_size": "38276076351",
|
||||||
|
"total_size": "84402254008",
|
||||||
|
"file_id": "1",
|
||||||
|
"patches": [
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_bilibili_1_0_14.zip.001?auth_key=1775722528-ce2762a3750b496aa693646ebbf3a65c-0-5a53ab1a7a8159e6235eb42fc03a8034",
|
||||||
|
"md5": "cd11d1c056fd35352c020d5002a4e3f0",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_bilibili_1_0_14.zip.002?auth_key=1775722528-608b82a34f4242539290b41e5f8d372e-0-e2fd74fcd9d5236f9a91bed3e8b8e09f",
|
||||||
|
"md5": "69ee1fb98e0c2c783e6790be16b0af7a",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_bilibili_1_0_14.zip.003?auth_key=1775722528-4702fdbe111642949591dca0aa8c82ce-0-aadea74fa5a3e3c2feff50141fe07ef0",
|
||||||
|
"md5": "408870806b1863eab5af17413a327da7",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_bilibili_1_0_14.zip.004?auth_key=1775722528-3ecb15e1ff0c413c9ee1825033787960-0-11f3a2ab24797b502169a6e833281877",
|
||||||
|
"md5": "4130908d27f88befb80a454a706660b5",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_bilibili_1_0_14.zip.005?auth_key=1775722528-780bad51462f437dbef4292b92bbf141-0-aa395eb877e030803b5f378b7c095c69",
|
||||||
|
"md5": "7b864dbcf8dbf09a2f544a51dd588db9",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_bilibili_1_0_14.zip.006?auth_key=1775722528-18af2c15254e4a4c9988bb80754f483a-0-5ec0b3f3ec5063d74f33483588c6bba1",
|
||||||
|
"md5": "4e392b9d953bc23db9e28cfc46b0107a",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_bilibili_1_0_14.zip.007?auth_key=1775722528-b651c9335826438393416f88846179cd-0-704dd99c49e0d434f6ddff8f5142a7a6",
|
||||||
|
"md5": "12ef3ae1dd316d09843addee7fb2d39b",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_bilibili_1_0_14.zip.008?auth_key=1775722528-8eb77dca01054a299049331349269260-0-e944149d9a53009247f6c543676f583f",
|
||||||
|
"md5": "0ac80d4bf4d2af9ca42cc5472895d677",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_bilibili_1_0_14.zip.009?auth_key=1775722528-34ac097e592847da8b07181fd6f23be8-0-dc0b3d5d62d70f3f59ab334edc3b26d5",
|
||||||
|
"md5": "54efdbcd61a699ca9c0ed31c41e2390d",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_bilibili_1_0_14.zip.010?auth_key=1775722528-4f5e347ce34a4e6489dac7be7f624c1d-0-9aa28530ef61ae951abe6f7de674f279",
|
||||||
|
"md5": "a510b80c259e5ef7390019df219406f9",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_bilibili_1_0_14.zip.011?auth_key=1775722528-c1f3eb5b7c72442d812c0115a2387c4a-0-cd5ed31680c7541ec95eac9501b37592",
|
||||||
|
"md5": "bc704d6e57fa257ba3e862e50ed8d836",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_bilibili_1_0_14.zip.012?auth_key=1775722528-916e6cf6a5c7426bb7574d68381d5de0-0-b2fc33ba55eed89007e090165a241500",
|
||||||
|
"md5": "8d30ac9bb285ba5a9a3226ec306a89ad",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_bilibili_1_0_14.zip.013?auth_key=1775722528-c4477cd46e1f4c85b13ddea3ebb0ac25-0-16b5d788babae88a5d5305f3ad796583",
|
||||||
|
"md5": "94711824416e11578e7e7fef90c459e6",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_bilibili_1_0_14.zip.014?auth_key=1775722528-3718cf8632b049668d5958bedc50bfb0-0-51417a779a9b54c99d2a72d8400ffef4",
|
||||||
|
"md5": "973b00cc1053446a4e4f74981b6838fe",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_bilibili_1_0_14.zip.015?auth_key=1775722528-cec0250af7a24bfd99f94d6ccda9ae3d-0-2203af7c7edf0a397e55e967b261d031",
|
||||||
|
"md5": "00b638a9eb0bbcb6660d140a6acf9cf0",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_bilibili_1_0_14.zip.016?auth_key=1775722528-a699e403052141ebaa1fb28284eb405e-0-90caed7eaf96b478ab7e984432ff18e5",
|
||||||
|
"md5": "ad8590befd2ac195fccf7933b3c4fb9f",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_bilibili_1_0_14.zip.017?auth_key=1775722528-cb352b54eecf44e3a88b2a3823758b79-0-b1785c0033132b1d7d406f40b93fa4a2",
|
||||||
|
"md5": "5c6be0f07ccf680b21154fd6059ce6f5",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_bilibili_1_0_14.zip.018?auth_key=1775722528-02ef3bcacc7c4f48bc51c768fabe1b13-0-90d8e57f90911cc5d2bd8692346a6781",
|
||||||
|
"md5": "8d0c46ee94cecf22e8ce907c16454aca",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_bilibili_1_0_14.zip.019?auth_key=1775722528-76ba3fbee9e34815bde458b631f760d6-0-2882e9978d294b4344116ec903c78a8b",
|
||||||
|
"md5": "3d80bd59b8d475416c224abb26cad256",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_bilibili_1_0_14.zip.020?auth_key=1775722528-c032b10193ed43448295f4b5aa8f3e79-0-83986bcb39d5c04dd1eed924a6da0d33",
|
||||||
|
"md5": "388ffb30fd2f561d46831ced154711df",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_bilibili_1_0_14.zip.021?auth_key=1775722528-1c22427a9fbb41a896f0b662bfa73146-0-5dd00ba27c20b7ef439ca814a6fd0045",
|
||||||
|
"md5": "bf78cd9bae48e700d900d9b6f5a733d2",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_bilibili_1_0_14.zip.022?auth_key=1775722528-1c9e28eeb74f45548d66dd8d3493f106-0-fcb2c056379709a31d7573e184ece890",
|
||||||
|
"md5": "4356321ee035d581d1aed9c4c86f0813",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_bilibili_1_0_14.zip.023?auth_key=1775722528-9902a2e3b9054039a6130a82cff3948c-0-5a6d80be77b11a8332ae00b1227d4cab",
|
||||||
|
"md5": "58f115bff9c9ffea646222211094b133",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_bilibili_1_0_14.zip.024?auth_key=1775722528-1348e4180fbd45b78aefb94fd021c31a-0-78dee6461fe6a79a6941cd877bd0eef9",
|
||||||
|
"md5": "0cf0d77984b9303c2a132097ad7cf54e",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_bilibili_1_0_14.zip.025?auth_key=1775722528-d7620091a7de409db858c5e451e2b261-0-f8edccce2461d608d05c7702727e52d0",
|
||||||
|
"md5": "84cd243f154dced354f867aeb55ea5c5",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_bilibili_1_0_14.zip.026?auth_key=1775722528-e68c1092274a44ff8b93f3184dd91d30-0-8ecd0181c2138501cd4dd00af66a30c4",
|
||||||
|
"md5": "f27e99af724a3797a1d5546a9bad45b3",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_bilibili_1_0_14.zip.027?auth_key=1775722528-df59b78de9f14945b575ff5a38762044-0-cba93436fb5883f29a07a2e8dbb24519",
|
||||||
|
"md5": "81baad1407d24c5bbc11580713d01102",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_bilibili_1_0_14.zip.028?auth_key=1775722528-0ed77d037f5f47229b9934c5fcb7d43a-0-19fd2da65ea10add90c5f541547e7ee4",
|
||||||
|
"md5": "54b4567ad062d54fc1a0c309a57fcd09",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_bilibili_1_0_14.zip.029?auth_key=1775722528-758b9098e6824decb9a7c48d859ea0e9-0-9a30a97f6a5647849ef1ff2852e55384",
|
||||||
|
"md5": "17f82970e16492bcc6b07c1d7a2cccc2",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_bilibili_1_0_14.zip.030?auth_key=1775722528-3bd81b9c44404ea1a39cab6d8f8586c3-0-bf0bbfeb74ca55cb051a623157d2f412",
|
||||||
|
"md5": "fcda96d468c718b1740ec99ea9d1c127",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_bilibili_1_0_14.zip.031?auth_key=1775722528-f95b642acc5a4e09b1b1c8d0fd93b6fb-0-ba4c5f5ef1f36a829bf0b740e74539bc",
|
||||||
|
"md5": "17485008a22fd28be1e8cc2f38f25526",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_bilibili_1_0_14.zip.032?auth_key=1775722528-5b5f1436abac487e808f6e8d79880ef2-0-c8f31a978cca0e0d2029f5f834d30e1c",
|
||||||
|
"md5": "09590fc5f66164af76e845de504e544c",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_bilibili_1_0_14.zip.033?auth_key=1775722528-559199aadd7d4efebb1951ee77b04340-0-367009dfe2aadc6aee68b288649757e7",
|
||||||
|
"md5": "d8a47df74a982716609b99da97d9e203",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_bilibili_1_0_14.zip.034?auth_key=1775722528-d46b013b1f36459e9569249ee0165d0a-0-29101c213929d7bf98a470f10a58c558",
|
||||||
|
"md5": "961d64c3a981da9e34b18f272629908c",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_bilibili_1_0_14.zip.035?auth_key=1775722528-53cc93abf4f94de98d5eadf2f847225b-0-199e35b8e80870c48df481af493bc706",
|
||||||
|
"md5": "87897531c141e929a3aba5d8aef5df68",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_bilibili_1_0_14.zip.036?auth_key=1775722528-3170e2a237824f49bc98b5991a8175dd-0-6d0c730fb08fddbadb3afce81bae50f6",
|
||||||
|
"md5": "832c12c0126133c7a866e34f1a46079a",
|
||||||
|
"package_size": "695112511"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"v2_patch_info_url": "",
|
||||||
|
"v2_patch_info_size": "0",
|
||||||
|
"v2_patch_info_md5": ""
|
||||||
|
},
|
||||||
|
"state": 0,
|
||||||
|
"launcher_action": 0
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -950,5 +950,117 @@
|
|||||||
"patch_index_path": "",
|
"patch_index_path": "",
|
||||||
"domain": "https://beyond.hycdn.cn"
|
"domain": "https://beyond.hycdn.cn"
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T02:00:35.277+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "6LL0KJuqHBVz33WK",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "RfPNtRXLwX2my3ep",
|
||||||
|
"platform": "Android"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "6164589-11",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/Android/main/6164589-11_PYhinKNBEnA4hJvU/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "6164589-11",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/Android/initial/6164589-11_45Zmg8uTvFzamyD6/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":true}",
|
||||||
|
"res_version": "initial_6164589-11_main_6164589-11",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hycdn.cn"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-31T02:00:38.341+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "6LL0KJuqHBVz33WK",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "RfPNtRXLwX2my3ep",
|
||||||
|
"platform": "Android"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "6238634-12",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/Android/main/6238634-12_9f0LgSDcpKaQTL6t/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "6238634-12",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/Android/initial/6238634-12_FqzVtIPk2NwgF5OM/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":false}",
|
||||||
|
"res_version": "initial_6238634-12_main_6238634-12",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hycdn.cn"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-03T02:05:29.474+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "6LL0KJuqHBVz33WK",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "RfPNtRXLwX2my3ep",
|
||||||
|
"platform": "Android"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "6331530-14",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/Android/main/6331530-14_xUQnoini4ny6IfoT/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "6331530-14",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/Android/initial/6331530-14_FsOjvQzHcAt7DToA/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":false}",
|
||||||
|
"res_version": "initial_6331530-14_main_6331530-14",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hycdn.cn"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-07T02:05:29.587+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "6LL0KJuqHBVz33WK",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "RfPNtRXLwX2my3ep",
|
||||||
|
"platform": "Android"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "6366689-16",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/Android/main/6366689-16_3vxzepI2KPfR1XuE/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "6366689-16",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/Android/initial/6366689-16_AcmiAouQfFCuAxq8/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":false}",
|
||||||
|
"res_version": "initial_6366689-16_main_6366689-16",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hycdn.cn"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -10,17 +10,17 @@
|
|||||||
"resources": [
|
"resources": [
|
||||||
{
|
{
|
||||||
"name": "main",
|
"name": "main",
|
||||||
"version": "5998981-10",
|
"version": "6366689-16",
|
||||||
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/Android/main/5998981-10_sZ5J4VoQo2bxg4hq/files"
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/Android/main/6366689-16_3vxzepI2KPfR1XuE/files"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "initial",
|
"name": "initial",
|
||||||
"version": "5998981-10",
|
"version": "6366689-16",
|
||||||
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/Android/initial/5998981-10_NZDmgwlkAChQxUzJ/files"
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/Android/initial/6366689-16_AcmiAouQfFCuAxq8/files"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"configs": "{\"kick_flag\":false}",
|
"configs": "{\"kick_flag\":false}",
|
||||||
"res_version": "initial_5998981-10_main_5998981-10",
|
"res_version": "initial_6366689-16_main_6366689-16",
|
||||||
"patch_index_path": "",
|
"patch_index_path": "",
|
||||||
"domain": "https://beyond.hycdn.cn"
|
"domain": "https://beyond.hycdn.cn"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,17 +10,17 @@
|
|||||||
"resources": [
|
"resources": [
|
||||||
{
|
{
|
||||||
"name": "main",
|
"name": "main",
|
||||||
"version": "5998981-10",
|
"version": "6366689-16",
|
||||||
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/Android/main/5998981-10_sZ5J4VoQo2bxg4hq/files"
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/Android/main/6366689-16_3vxzepI2KPfR1XuE/files"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "initial",
|
"name": "initial",
|
||||||
"version": "5998981-10",
|
"version": "6366689-16",
|
||||||
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/Android/initial/5998981-10_NZDmgwlkAChQxUzJ/files"
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/Android/initial/6366689-16_AcmiAouQfFCuAxq8/files"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"configs": "{\"kick_flag\":false}",
|
"configs": "{\"kick_flag\":false}",
|
||||||
"res_version": "initial_5998981-10_main_5998981-10",
|
"res_version": "initial_6366689-16_main_6366689-16",
|
||||||
"patch_index_path": "",
|
"patch_index_path": "",
|
||||||
"domain": "https://beyond.hycdn.cn"
|
"domain": "https://beyond.hycdn.cn"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -502,5 +502,117 @@
|
|||||||
"patch_index_path": "",
|
"patch_index_path": "",
|
||||||
"domain": "https://beyond.hycdn.cn"
|
"domain": "https://beyond.hycdn.cn"
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T02:00:36.776+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "6LL0KJuqHBVz33WK",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "RfPNtRXLwX2my3ep",
|
||||||
|
"platform": "PlayStation"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "6164589-11",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/PlayStation/main/6164589-11_BBAZ8YHhcyKCZ5YE/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "6164589-11",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/PlayStation/initial/6164589-11_g10GWMCdszZWJENu/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":true}",
|
||||||
|
"res_version": "initial_6164589-11_main_6164589-11",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hycdn.cn"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-31T02:00:39.842+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "6LL0KJuqHBVz33WK",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "RfPNtRXLwX2my3ep",
|
||||||
|
"platform": "PlayStation"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "6238634-12",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/PlayStation/main/6238634-12_PYHmyZsskorusvCM/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "6238634-12",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/PlayStation/initial/6238634-12_Rc8Ry57YtSNDpWId/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":false}",
|
||||||
|
"res_version": "initial_6238634-12_main_6238634-12",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hycdn.cn"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-03T02:05:30.928+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "6LL0KJuqHBVz33WK",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "RfPNtRXLwX2my3ep",
|
||||||
|
"platform": "PlayStation"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "6331530-14",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/PlayStation/main/6331530-14_sqzTqHel8BKwLM3W/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "6331530-14",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/PlayStation/initial/6331530-14_SybQ50kET247sagy/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":false}",
|
||||||
|
"res_version": "initial_6331530-14_main_6331530-14",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hycdn.cn"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-07T02:05:30.772+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "6LL0KJuqHBVz33WK",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "RfPNtRXLwX2my3ep",
|
||||||
|
"platform": "PlayStation"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "6366689-16",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/PlayStation/main/6366689-16_WyBzfN0NfuY0YDAe/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "6366689-16",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/PlayStation/initial/6366689-16_BWn9p9riqw1N5BdO/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":false}",
|
||||||
|
"res_version": "initial_6366689-16_main_6366689-16",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hycdn.cn"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -10,17 +10,17 @@
|
|||||||
"resources": [
|
"resources": [
|
||||||
{
|
{
|
||||||
"name": "main",
|
"name": "main",
|
||||||
"version": "5998981-10",
|
"version": "6366689-16",
|
||||||
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/PlayStation/main/5998981-10_twWvTfzpxaYdZ24s/files"
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/PlayStation/main/6366689-16_WyBzfN0NfuY0YDAe/files"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "initial",
|
"name": "initial",
|
||||||
"version": "5998981-10",
|
"version": "6366689-16",
|
||||||
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/PlayStation/initial/5998981-10_xYO8ydH7I8cQc3gr/files"
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/PlayStation/initial/6366689-16_BWn9p9riqw1N5BdO/files"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"configs": "{\"kick_flag\":false}",
|
"configs": "{\"kick_flag\":false}",
|
||||||
"res_version": "initial_5998981-10_main_5998981-10",
|
"res_version": "initial_6366689-16_main_6366689-16",
|
||||||
"patch_index_path": "",
|
"patch_index_path": "",
|
||||||
"domain": "https://beyond.hycdn.cn"
|
"domain": "https://beyond.hycdn.cn"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,17 +10,17 @@
|
|||||||
"resources": [
|
"resources": [
|
||||||
{
|
{
|
||||||
"name": "main",
|
"name": "main",
|
||||||
"version": "5998981-10",
|
"version": "6366689-16",
|
||||||
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/PlayStation/main/5998981-10_twWvTfzpxaYdZ24s/files"
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/PlayStation/main/6366689-16_WyBzfN0NfuY0YDAe/files"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "initial",
|
"name": "initial",
|
||||||
"version": "5998981-10",
|
"version": "6366689-16",
|
||||||
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/PlayStation/initial/5998981-10_xYO8ydH7I8cQc3gr/files"
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/PlayStation/initial/6366689-16_BWn9p9riqw1N5BdO/files"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"configs": "{\"kick_flag\":false}",
|
"configs": "{\"kick_flag\":false}",
|
||||||
"res_version": "initial_5998981-10_main_5998981-10",
|
"res_version": "initial_6366689-16_main_6366689-16",
|
||||||
"patch_index_path": "",
|
"patch_index_path": "",
|
||||||
"domain": "https://beyond.hycdn.cn"
|
"domain": "https://beyond.hycdn.cn"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -502,5 +502,117 @@
|
|||||||
"patch_index_path": "",
|
"patch_index_path": "",
|
||||||
"domain": "https://beyond.hycdn.cn"
|
"domain": "https://beyond.hycdn.cn"
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T02:00:34.576+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "6LL0KJuqHBVz33WK",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "RfPNtRXLwX2my3ep",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "6164589-13",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/Windows/main/6164589-13_6N4q6EEdGNPN4hZT/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "6164589-13",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/Windows/initial/6164589-13_uFmzUUFd4PliEqlu/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":true}",
|
||||||
|
"res_version": "initial_6164589-13_main_6164589-13",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hycdn.cn"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-31T02:00:37.513+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "6LL0KJuqHBVz33WK",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "RfPNtRXLwX2my3ep",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "6238634-14",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/Windows/main/6238634-14_dEWlFy5FA8Wj4ijn/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "6238634-14",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/Windows/initial/6238634-14_ftds7LSoTFGq7Luq/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":false}",
|
||||||
|
"res_version": "initial_6238634-14_main_6238634-14",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hycdn.cn"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-03T02:05:28.608+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "6LL0KJuqHBVz33WK",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "RfPNtRXLwX2my3ep",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "6331530-16",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/Windows/main/6331530-16_1UzoXJQJztjZT6lE/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "6331530-16",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/Windows/initial/6331530-16_GVmGbm9POpBpuGHa/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":false}",
|
||||||
|
"res_version": "initial_6331530-16_main_6331530-16",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hycdn.cn"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-07T02:05:28.867+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "6LL0KJuqHBVz33WK",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "RfPNtRXLwX2my3ep",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "6366689-18",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/Windows/main/6366689-18_LzIg1Tc4FXT50tMQ/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "6366689-18",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/Windows/initial/6366689-18_gZdnW9B5JeN97ml0/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":false}",
|
||||||
|
"res_version": "initial_6366689-18_main_6366689-18",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hycdn.cn"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -10,17 +10,17 @@
|
|||||||
"resources": [
|
"resources": [
|
||||||
{
|
{
|
||||||
"name": "main",
|
"name": "main",
|
||||||
"version": "5998981-12",
|
"version": "6366689-18",
|
||||||
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/Windows/main/5998981-12_yADk7f1BS0WEG7r2/files"
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/Windows/main/6366689-18_LzIg1Tc4FXT50tMQ/files"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "initial",
|
"name": "initial",
|
||||||
"version": "5998981-12",
|
"version": "6366689-18",
|
||||||
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/Windows/initial/5998981-12_zGnpY0e77KjEXysi/files"
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/Windows/initial/6366689-18_gZdnW9B5JeN97ml0/files"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"configs": "{\"kick_flag\":false}",
|
"configs": "{\"kick_flag\":false}",
|
||||||
"res_version": "initial_5998981-12_main_5998981-12",
|
"res_version": "initial_6366689-18_main_6366689-18",
|
||||||
"patch_index_path": "",
|
"patch_index_path": "",
|
||||||
"domain": "https://beyond.hycdn.cn"
|
"domain": "https://beyond.hycdn.cn"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,17 +10,17 @@
|
|||||||
"resources": [
|
"resources": [
|
||||||
{
|
{
|
||||||
"name": "main",
|
"name": "main",
|
||||||
"version": "5998981-12",
|
"version": "6366689-18",
|
||||||
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/Windows/main/5998981-12_yADk7f1BS0WEG7r2/files"
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/Windows/main/6366689-18_LzIg1Tc4FXT50tMQ/files"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "initial",
|
"name": "initial",
|
||||||
"version": "5998981-12",
|
"version": "6366689-18",
|
||||||
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/Windows/initial/5998981-12_zGnpY0e77KjEXysi/files"
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/Windows/initial/6366689-18_gZdnW9B5JeN97ml0/files"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"configs": "{\"kick_flag\":false}",
|
"configs": "{\"kick_flag\":false}",
|
||||||
"res_version": "initial_5998981-12_main_5998981-12",
|
"res_version": "initial_6366689-18_main_6366689-18",
|
||||||
"patch_index_path": "",
|
"patch_index_path": "",
|
||||||
"domain": "https://beyond.hycdn.cn"
|
"domain": "https://beyond.hycdn.cn"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -502,5 +502,117 @@
|
|||||||
"patch_index_path": "",
|
"patch_index_path": "",
|
||||||
"domain": "https://beyond.hycdn.cn"
|
"domain": "https://beyond.hycdn.cn"
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T02:00:36.051+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "6LL0KJuqHBVz33WK",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "RfPNtRXLwX2my3ep",
|
||||||
|
"platform": "iOS"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "6164589-11",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/iOS/main/6164589-11_EBDrBNWDPBiUwLXg/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "6164589-11",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/iOS/initial/6164589-11_w5qeRMBFCLTRIPp8/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":true}",
|
||||||
|
"res_version": "initial_6164589-11_main_6164589-11",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hycdn.cn"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-31T02:00:39.090+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "6LL0KJuqHBVz33WK",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "RfPNtRXLwX2my3ep",
|
||||||
|
"platform": "iOS"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "6238634-14",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/iOS/main/6238634-14_aRqB03otELJAYpoy/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "6238634-14",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/iOS/initial/6238634-14_IsrAvfVaQ2KerR0t/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":false}",
|
||||||
|
"res_version": "initial_6238634-14_main_6238634-14",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hycdn.cn"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-03T02:05:30.183+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "6LL0KJuqHBVz33WK",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "RfPNtRXLwX2my3ep",
|
||||||
|
"platform": "iOS"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "6331530-16",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/iOS/main/6331530-16_6Yde431Tm8hAAERt/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "6331530-16",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/iOS/initial/6331530-16_AvigDMs631UT5HIo/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":false}",
|
||||||
|
"res_version": "initial_6331530-16_main_6331530-16",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hycdn.cn"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-07T02:05:30.179+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "6LL0KJuqHBVz33WK",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "RfPNtRXLwX2my3ep",
|
||||||
|
"platform": "iOS"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "6366689-18",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/iOS/main/6366689-18_wDNojME5v0ztasSE/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "6366689-18",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/iOS/initial/6366689-18_Lx4YyPgTBL0rG8o4/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":false}",
|
||||||
|
"res_version": "initial_6366689-18_main_6366689-18",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hycdn.cn"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -10,17 +10,17 @@
|
|||||||
"resources": [
|
"resources": [
|
||||||
{
|
{
|
||||||
"name": "main",
|
"name": "main",
|
||||||
"version": "5998981-10",
|
"version": "6366689-18",
|
||||||
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/iOS/main/5998981-10_WL5LiTYp5BgvbEtl/files"
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/iOS/main/6366689-18_wDNojME5v0ztasSE/files"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "initial",
|
"name": "initial",
|
||||||
"version": "5998981-10",
|
"version": "6366689-18",
|
||||||
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/iOS/initial/5998981-10_dhwaK9morVFMkwtB/files"
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/iOS/initial/6366689-18_Lx4YyPgTBL0rG8o4/files"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"configs": "{\"kick_flag\":false}",
|
"configs": "{\"kick_flag\":false}",
|
||||||
"res_version": "initial_5998981-10_main_5998981-10",
|
"res_version": "initial_6366689-18_main_6366689-18",
|
||||||
"patch_index_path": "",
|
"patch_index_path": "",
|
||||||
"domain": "https://beyond.hycdn.cn"
|
"domain": "https://beyond.hycdn.cn"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,17 +10,17 @@
|
|||||||
"resources": [
|
"resources": [
|
||||||
{
|
{
|
||||||
"name": "main",
|
"name": "main",
|
||||||
"version": "5998981-10",
|
"version": "6366689-18",
|
||||||
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/iOS/main/5998981-10_WL5LiTYp5BgvbEtl/files"
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/iOS/main/6366689-18_wDNojME5v0ztasSE/files"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "initial",
|
"name": "initial",
|
||||||
"version": "5998981-10",
|
"version": "6366689-18",
|
||||||
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/iOS/initial/5998981-10_dhwaK9morVFMkwtB/files"
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/iOS/initial/6366689-18_Lx4YyPgTBL0rG8o4/files"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"configs": "{\"kick_flag\":false}",
|
"configs": "{\"kick_flag\":false}",
|
||||||
"res_version": "initial_5998981-10_main_5998981-10",
|
"res_version": "initial_6366689-18_main_6366689-18",
|
||||||
"patch_index_path": "",
|
"patch_index_path": "",
|
||||||
"domain": "https://beyond.hycdn.cn"
|
"domain": "https://beyond.hycdn.cn"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -950,5 +950,117 @@
|
|||||||
"patch_index_path": "",
|
"patch_index_path": "",
|
||||||
"domain": "https://beyond.hg-cdn.com"
|
"domain": "https://beyond.hg-cdn.com"
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T02:30:30.126+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "PPTMaQzu2HpbgY7P",
|
||||||
|
"platform": "Android"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "6164589-11",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/Android/main/6164589-11_Vj5jgt3UidEA1ANb/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "6164589-11",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/Android/initial/6164589-11_4u2MD7bFfZdpCLju/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":true}",
|
||||||
|
"res_version": "initial_6164589-11_main_6164589-11",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hg-cdn.com"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-31T02:30:33.344+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "PPTMaQzu2HpbgY7P",
|
||||||
|
"platform": "Android"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "6238634-12",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/Android/main/6238634-12_ifT096qknnIYjhir/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "6238634-12",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/Android/initial/6238634-12_u2LaekfUH5o1PSYE/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":false}",
|
||||||
|
"res_version": "initial_6238634-12_main_6238634-12",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hg-cdn.com"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-03T02:35:21.809+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "PPTMaQzu2HpbgY7P",
|
||||||
|
"platform": "Android"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "6331530-14",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/Android/main/6331530-14_TTCwkNvyo5r48Y9s/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "6331530-14",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/Android/initial/6331530-14_FCzffmaswkQ1H1ZV/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":false}",
|
||||||
|
"res_version": "initial_6331530-14_main_6331530-14",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hg-cdn.com"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-07T02:35:27.190+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "PPTMaQzu2HpbgY7P",
|
||||||
|
"platform": "Android"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "6366689-16",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/Android/main/6366689-16_Zvy77077P8Q54Tdi/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "6366689-16",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/Android/initial/6366689-16_TZ4CSbYESfEsAM8C/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":false}",
|
||||||
|
"res_version": "initial_6366689-16_main_6366689-16",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hg-cdn.com"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -10,17 +10,17 @@
|
|||||||
"resources": [
|
"resources": [
|
||||||
{
|
{
|
||||||
"name": "main",
|
"name": "main",
|
||||||
"version": "5998981-10",
|
"version": "6366689-16",
|
||||||
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/Android/main/5998981-10_cSJn1DUqJDEgJgIQ/files"
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/Android/main/6366689-16_Zvy77077P8Q54Tdi/files"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "initial",
|
"name": "initial",
|
||||||
"version": "5998981-10",
|
"version": "6366689-16",
|
||||||
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/Android/initial/5998981-10_dSM176r9moW9qPbF/files"
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/Android/initial/6366689-16_TZ4CSbYESfEsAM8C/files"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"configs": "{\"kick_flag\":false}",
|
"configs": "{\"kick_flag\":false}",
|
||||||
"res_version": "initial_5998981-10_main_5998981-10",
|
"res_version": "initial_6366689-16_main_6366689-16",
|
||||||
"patch_index_path": "",
|
"patch_index_path": "",
|
||||||
"domain": "https://beyond.hg-cdn.com"
|
"domain": "https://beyond.hg-cdn.com"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,17 +10,17 @@
|
|||||||
"resources": [
|
"resources": [
|
||||||
{
|
{
|
||||||
"name": "main",
|
"name": "main",
|
||||||
"version": "5998981-10",
|
"version": "6366689-16",
|
||||||
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/Android/main/5998981-10_cSJn1DUqJDEgJgIQ/files"
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/Android/main/6366689-16_Zvy77077P8Q54Tdi/files"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "initial",
|
"name": "initial",
|
||||||
"version": "5998981-10",
|
"version": "6366689-16",
|
||||||
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/Android/initial/5998981-10_dSM176r9moW9qPbF/files"
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/Android/initial/6366689-16_TZ4CSbYESfEsAM8C/files"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"configs": "{\"kick_flag\":false}",
|
"configs": "{\"kick_flag\":false}",
|
||||||
"res_version": "initial_5998981-10_main_5998981-10",
|
"res_version": "initial_6366689-16_main_6366689-16",
|
||||||
"patch_index_path": "",
|
"patch_index_path": "",
|
||||||
"domain": "https://beyond.hg-cdn.com"
|
"domain": "https://beyond.hg-cdn.com"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -950,5 +950,117 @@
|
|||||||
"patch_index_path": "",
|
"patch_index_path": "",
|
||||||
"domain": "https://beyond.hg-cdn.com"
|
"domain": "https://beyond.hg-cdn.com"
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T02:30:31.618+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "PPTMaQzu2HpbgY7P",
|
||||||
|
"platform": "PlayStation"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "6164589-11",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/PlayStation/main/6164589-11_8FTxNuO1zL7kmMcc/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "6164589-11",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/PlayStation/initial/6164589-11_tBsqcpEWmsx4TJns/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":true}",
|
||||||
|
"res_version": "initial_6164589-11_main_6164589-11",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hg-cdn.com"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-31T02:30:34.943+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "PPTMaQzu2HpbgY7P",
|
||||||
|
"platform": "PlayStation"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "6238634-12",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/PlayStation/main/6238634-12_jt6qZbZ4quiBCYzl/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "6238634-12",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/PlayStation/initial/6238634-12_q2pUcKU9awgXOCZ2/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":false}",
|
||||||
|
"res_version": "initial_6238634-12_main_6238634-12",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hg-cdn.com"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-03T02:35:23.345+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "PPTMaQzu2HpbgY7P",
|
||||||
|
"platform": "PlayStation"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "6331530-14",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/PlayStation/main/6331530-14_tR8rGLdosJvvfXvJ/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "6331530-14",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/PlayStation/initial/6331530-14_oBMwmXRvJq0PPnvb/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":false}",
|
||||||
|
"res_version": "initial_6331530-14_main_6331530-14",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hg-cdn.com"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-07T02:35:28.781+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "PPTMaQzu2HpbgY7P",
|
||||||
|
"platform": "PlayStation"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "6366689-16",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/PlayStation/main/6366689-16_47JZucwq7LWPs7eG/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "6366689-16",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/PlayStation/initial/6366689-16_eI2aLnv12hXuO4LO/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":false}",
|
||||||
|
"res_version": "initial_6366689-16_main_6366689-16",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hg-cdn.com"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -10,17 +10,17 @@
|
|||||||
"resources": [
|
"resources": [
|
||||||
{
|
{
|
||||||
"name": "main",
|
"name": "main",
|
||||||
"version": "5998981-10",
|
"version": "6366689-16",
|
||||||
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/PlayStation/main/5998981-10_MLLKfeqKqjy0673l/files"
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/PlayStation/main/6366689-16_47JZucwq7LWPs7eG/files"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "initial",
|
"name": "initial",
|
||||||
"version": "5998981-10",
|
"version": "6366689-16",
|
||||||
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/PlayStation/initial/5998981-10_BqjmR5E5xdLSaEmU/files"
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/PlayStation/initial/6366689-16_eI2aLnv12hXuO4LO/files"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"configs": "{\"kick_flag\":false}",
|
"configs": "{\"kick_flag\":false}",
|
||||||
"res_version": "initial_5998981-10_main_5998981-10",
|
"res_version": "initial_6366689-16_main_6366689-16",
|
||||||
"patch_index_path": "",
|
"patch_index_path": "",
|
||||||
"domain": "https://beyond.hg-cdn.com"
|
"domain": "https://beyond.hg-cdn.com"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,17 +10,17 @@
|
|||||||
"resources": [
|
"resources": [
|
||||||
{
|
{
|
||||||
"name": "main",
|
"name": "main",
|
||||||
"version": "5998981-10",
|
"version": "6366689-16",
|
||||||
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/PlayStation/main/5998981-10_MLLKfeqKqjy0673l/files"
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/PlayStation/main/6366689-16_47JZucwq7LWPs7eG/files"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "initial",
|
"name": "initial",
|
||||||
"version": "5998981-10",
|
"version": "6366689-16",
|
||||||
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/PlayStation/initial/5998981-10_BqjmR5E5xdLSaEmU/files"
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/PlayStation/initial/6366689-16_eI2aLnv12hXuO4LO/files"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"configs": "{\"kick_flag\":false}",
|
"configs": "{\"kick_flag\":false}",
|
||||||
"res_version": "initial_5998981-10_main_5998981-10",
|
"res_version": "initial_6366689-16_main_6366689-16",
|
||||||
"patch_index_path": "",
|
"patch_index_path": "",
|
||||||
"domain": "https://beyond.hg-cdn.com"
|
"domain": "https://beyond.hg-cdn.com"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1034,5 +1034,117 @@
|
|||||||
"patch_index_path": "",
|
"patch_index_path": "",
|
||||||
"domain": "https://beyond.hg-cdn.com"
|
"domain": "https://beyond.hg-cdn.com"
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T02:30:29.349+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "PPTMaQzu2HpbgY7P",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "6164589-13",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/Windows/main/6164589-13_MUJG63lwx3CO7a5v/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "6164589-13",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/Windows/initial/6164589-13_AJ9J45ri5TjF3KxD/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":true}",
|
||||||
|
"res_version": "initial_6164589-13_main_6164589-13",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hg-cdn.com"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-31T02:30:32.581+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "PPTMaQzu2HpbgY7P",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "6238634-14",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/Windows/main/6238634-14_mW7tHaWCJWdHvrg7/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "6238634-14",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/Windows/initial/6238634-14_ljdgos3ayJD2QaUR/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":false}",
|
||||||
|
"res_version": "initial_6238634-14_main_6238634-14",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hg-cdn.com"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-03T02:35:21.012+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "PPTMaQzu2HpbgY7P",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "6331530-16",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/Windows/main/6331530-16_Zrq5BrI142DaxJMr/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "6331530-16",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/Windows/initial/6331530-16_cv7tGSUN1WKKt6Rb/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":false}",
|
||||||
|
"res_version": "initial_6331530-16_main_6331530-16",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hg-cdn.com"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-07T02:35:26.426+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "PPTMaQzu2HpbgY7P",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "6366689-18",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/Windows/main/6366689-18_XtudDqOTOlJV1nHQ/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "6366689-18",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/Windows/initial/6366689-18_yCXtD462EG3rxfpr/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":false}",
|
||||||
|
"res_version": "initial_6366689-18_main_6366689-18",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hg-cdn.com"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -10,17 +10,17 @@
|
|||||||
"resources": [
|
"resources": [
|
||||||
{
|
{
|
||||||
"name": "main",
|
"name": "main",
|
||||||
"version": "5998981-12",
|
"version": "6366689-18",
|
||||||
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/Windows/main/5998981-12_pXDPnMZY3orirJOO/files"
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/Windows/main/6366689-18_XtudDqOTOlJV1nHQ/files"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "initial",
|
"name": "initial",
|
||||||
"version": "5998981-12",
|
"version": "6366689-18",
|
||||||
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/Windows/initial/5998981-12_NiISLZmCatO52cpa/files"
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/Windows/initial/6366689-18_yCXtD462EG3rxfpr/files"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"configs": "{\"kick_flag\":false}",
|
"configs": "{\"kick_flag\":false}",
|
||||||
"res_version": "initial_5998981-12_main_5998981-12",
|
"res_version": "initial_6366689-18_main_6366689-18",
|
||||||
"patch_index_path": "",
|
"patch_index_path": "",
|
||||||
"domain": "https://beyond.hg-cdn.com"
|
"domain": "https://beyond.hg-cdn.com"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,17 +10,17 @@
|
|||||||
"resources": [
|
"resources": [
|
||||||
{
|
{
|
||||||
"name": "main",
|
"name": "main",
|
||||||
"version": "5998981-12",
|
"version": "6366689-18",
|
||||||
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/Windows/main/5998981-12_pXDPnMZY3orirJOO/files"
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/Windows/main/6366689-18_XtudDqOTOlJV1nHQ/files"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "initial",
|
"name": "initial",
|
||||||
"version": "5998981-12",
|
"version": "6366689-18",
|
||||||
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/Windows/initial/5998981-12_NiISLZmCatO52cpa/files"
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/Windows/initial/6366689-18_yCXtD462EG3rxfpr/files"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"configs": "{\"kick_flag\":false}",
|
"configs": "{\"kick_flag\":false}",
|
||||||
"res_version": "initial_5998981-12_main_5998981-12",
|
"res_version": "initial_6366689-18_main_6366689-18",
|
||||||
"patch_index_path": "",
|
"patch_index_path": "",
|
||||||
"domain": "https://beyond.hg-cdn.com"
|
"domain": "https://beyond.hg-cdn.com"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -950,5 +950,117 @@
|
|||||||
"patch_index_path": "",
|
"patch_index_path": "",
|
||||||
"domain": "https://beyond.hg-cdn.com"
|
"domain": "https://beyond.hg-cdn.com"
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T02:30:30.867+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "PPTMaQzu2HpbgY7P",
|
||||||
|
"platform": "iOS"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "6164589-11",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/iOS/main/6164589-11_Xtl74lcAeC56AqrB/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "6164589-11",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/iOS/initial/6164589-11_U1zZVjeada5BXWa3/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":true}",
|
||||||
|
"res_version": "initial_6164589-11_main_6164589-11",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hg-cdn.com"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-31T02:30:34.086+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "PPTMaQzu2HpbgY7P",
|
||||||
|
"platform": "iOS"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "6238634-14",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/iOS/main/6238634-14_687uK9odqPPmu0hb/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "6238634-14",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/iOS/initial/6238634-14_JFtnH8wdwFLjBvzZ/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":false}",
|
||||||
|
"res_version": "initial_6238634-14_main_6238634-14",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hg-cdn.com"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-03T02:35:22.567+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "PPTMaQzu2HpbgY7P",
|
||||||
|
"platform": "iOS"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "6331530-16",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/iOS/main/6331530-16_aokP0GkK3fI8mLzr/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "6331530-16",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/iOS/initial/6331530-16_KQTpJ5L45exJXqpf/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":false}",
|
||||||
|
"res_version": "initial_6331530-16_main_6331530-16",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hg-cdn.com"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-07T02:35:27.968+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "PPTMaQzu2HpbgY7P",
|
||||||
|
"platform": "iOS"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "6366689-18",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/iOS/main/6366689-18_S0QGDj4PtN16wn8q/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "6366689-18",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/iOS/initial/6366689-18_Z2UqJmET5JVAP1au/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":false}",
|
||||||
|
"res_version": "initial_6366689-18_main_6366689-18",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hg-cdn.com"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -10,17 +10,17 @@
|
|||||||
"resources": [
|
"resources": [
|
||||||
{
|
{
|
||||||
"name": "main",
|
"name": "main",
|
||||||
"version": "5998981-10",
|
"version": "6366689-18",
|
||||||
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/iOS/main/5998981-10_Us32zZdCwzIWu74l/files"
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/iOS/main/6366689-18_S0QGDj4PtN16wn8q/files"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "initial",
|
"name": "initial",
|
||||||
"version": "5998981-10",
|
"version": "6366689-18",
|
||||||
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/iOS/initial/5998981-10_FZ3QOF1zjS8HNbpB/files"
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/iOS/initial/6366689-18_Z2UqJmET5JVAP1au/files"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"configs": "{\"kick_flag\":false}",
|
"configs": "{\"kick_flag\":false}",
|
||||||
"res_version": "initial_5998981-10_main_5998981-10",
|
"res_version": "initial_6366689-18_main_6366689-18",
|
||||||
"patch_index_path": "",
|
"patch_index_path": "",
|
||||||
"domain": "https://beyond.hg-cdn.com"
|
"domain": "https://beyond.hg-cdn.com"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,17 +10,17 @@
|
|||||||
"resources": [
|
"resources": [
|
||||||
{
|
{
|
||||||
"name": "main",
|
"name": "main",
|
||||||
"version": "5998981-10",
|
"version": "6366689-18",
|
||||||
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/iOS/main/5998981-10_Us32zZdCwzIWu74l/files"
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/iOS/main/6366689-18_S0QGDj4PtN16wn8q/files"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "initial",
|
"name": "initial",
|
||||||
"version": "5998981-10",
|
"version": "6366689-18",
|
||||||
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/iOS/initial/5998981-10_FZ3QOF1zjS8HNbpB/files"
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/iOS/initial/6366689-18_Z2UqJmET5JVAP1au/files"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"configs": "{\"kick_flag\":false}",
|
"configs": "{\"kick_flag\":false}",
|
||||||
"res_version": "initial_5998981-10_main_5998981-10",
|
"res_version": "initial_6366689-18_main_6366689-18",
|
||||||
"patch_index_path": "",
|
"patch_index_path": "",
|
||||||
"domain": "https://beyond.hg-cdn.com"
|
"domain": "https://beyond.hg-cdn.com"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -74,5 +74,24 @@
|
|||||||
"total_size": "390438283",
|
"total_size": "390438283",
|
||||||
"description": ""
|
"description": ""
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-19T12:25:36.496+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "TiaytKBUIEdoEwRT",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"targetApp": "EndField"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"action": 1,
|
||||||
|
"version": "1.2.2",
|
||||||
|
"request_version": "",
|
||||||
|
"zip_package_url": "https://launcher.hg-cdn.com/TiaytKBUIEdoEwRT/launcher/1.2.2/6/6/DzSNGqMmos8GW6SX/GRYPHLINK_v1.2.2.1227_6_6_endfield.zip",
|
||||||
|
"md5": "d4c2dbe65bab448fa9937952d423c0f3",
|
||||||
|
"package_size": "125957812",
|
||||||
|
"total_size": "390439217",
|
||||||
|
"description": ""
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -7,12 +7,12 @@
|
|||||||
},
|
},
|
||||||
"rsp": {
|
"rsp": {
|
||||||
"action": 1,
|
"action": 1,
|
||||||
"version": "1.2.1",
|
"version": "1.2.2",
|
||||||
"request_version": "",
|
"request_version": "",
|
||||||
"zip_package_url": "https://launcher.hg-cdn.com/TiaytKBUIEdoEwRT/launcher/1.2.1/6/6/igt3w3ltwlSKC9It/GRYPHLINK_v1.2.1.1217_6_6_endfield.zip",
|
"zip_package_url": "https://launcher.hg-cdn.com/TiaytKBUIEdoEwRT/launcher/1.2.2/6/6/DzSNGqMmos8GW6SX/GRYPHLINK_v1.2.2.1227_6_6_endfield.zip",
|
||||||
"md5": "53b1686b303945baa4f9c1bdba383cb1",
|
"md5": "d4c2dbe65bab448fa9937952d423c0f3",
|
||||||
"package_size": "125956870",
|
"package_size": "125957812",
|
||||||
"total_size": "390438283",
|
"total_size": "390439217",
|
||||||
"description": ""
|
"description": ""
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
18
output/akEndfield/launcher/launcher/EndField/6/v1.2.2.json
Normal file
18
output/akEndfield/launcher/launcher/EndField/6/v1.2.2.json
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
{
|
||||||
|
"req": {
|
||||||
|
"appCode": "TiaytKBUIEdoEwRT",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"targetApp": "EndField"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"action": 1,
|
||||||
|
"version": "1.2.2",
|
||||||
|
"request_version": "",
|
||||||
|
"zip_package_url": "https://launcher.hg-cdn.com/TiaytKBUIEdoEwRT/launcher/1.2.2/6/6/DzSNGqMmos8GW6SX/GRYPHLINK_v1.2.2.1227_6_6_endfield.zip",
|
||||||
|
"md5": "d4c2dbe65bab448fa9937952d423c0f3",
|
||||||
|
"package_size": "125957812",
|
||||||
|
"total_size": "390439217",
|
||||||
|
"description": ""
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -30,5 +30,21 @@
|
|||||||
"exe_url": "https://launcher-rule.hg-cdn.com/TiaytKBUIEdoEwRT/launcher/1.2.1/6/6/igt3w3ltwlSKC9It/GRYPHLINK_v1.2.1.1217_6_6_endfield.exe?tracking=GRYPHLINK",
|
"exe_url": "https://launcher-rule.hg-cdn.com/TiaytKBUIEdoEwRT/launcher/1.2.1/6/6/igt3w3ltwlSKC9It/GRYPHLINK_v1.2.1.1217_6_6_endfield.exe?tracking=GRYPHLINK",
|
||||||
"exe_size": "167967024"
|
"exe_size": "167967024"
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-19T12:25:36.506+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "TiaytKBUIEdoEwRT",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"ta": "endfield"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"action": 1,
|
||||||
|
"version": "1.2.2",
|
||||||
|
"request_version": "",
|
||||||
|
"exe_url": "https://launcher-rule.hg-cdn.com/TiaytKBUIEdoEwRT/launcher/1.2.2/6/6/DzSNGqMmos8GW6SX/GRYPHLINK_v1.2.2.1227_6_6_endfield.exe?tracking=GRYPHLINK",
|
||||||
|
"exe_size": "167966912"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -7,9 +7,9 @@
|
|||||||
},
|
},
|
||||||
"rsp": {
|
"rsp": {
|
||||||
"action": 1,
|
"action": 1,
|
||||||
"version": "1.2.1",
|
"version": "1.2.2",
|
||||||
"request_version": "",
|
"request_version": "",
|
||||||
"exe_url": "https://launcher-rule.hg-cdn.com/TiaytKBUIEdoEwRT/launcher/1.2.1/6/6/igt3w3ltwlSKC9It/GRYPHLINK_v1.2.1.1217_6_6_endfield.exe?tracking=GRYPHLINK",
|
"exe_url": "https://launcher-rule.hg-cdn.com/TiaytKBUIEdoEwRT/launcher/1.2.2/6/6/DzSNGqMmos8GW6SX/GRYPHLINK_v1.2.2.1227_6_6_endfield.exe?tracking=GRYPHLINK",
|
||||||
"exe_size": "167967024"
|
"exe_size": "167966912"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,15 @@
|
|||||||
|
{
|
||||||
|
"req": {
|
||||||
|
"appCode": "TiaytKBUIEdoEwRT",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"ta": "endfield"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"action": 1,
|
||||||
|
"version": "1.2.2",
|
||||||
|
"request_version": "",
|
||||||
|
"exe_url": "https://launcher-rule.hg-cdn.com/TiaytKBUIEdoEwRT/launcher/1.2.2/6/6/DzSNGqMmos8GW6SX/GRYPHLINK_v1.2.2.1227_6_6_endfield.exe?tracking=GRYPHLINK",
|
||||||
|
"exe_size": "167966912"
|
||||||
|
}
|
||||||
|
}
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -13,6 +13,20 @@
|
|||||||
{
|
{
|
||||||
"tabName": "公告",
|
"tabName": "公告",
|
||||||
"announcements": [
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "「狼珀」特许寻访说明",
|
||||||
|
"jump_url": "https://endfield.hypergryph.com/news/7224",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "123",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「绯珀申领」限时特卖说明",
|
||||||
|
"jump_url": "https://endfield.hypergryph.com/news/4783",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "124",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"content": "NVIDIA 驱动程序新版本可能导致游戏表现异常的问题说明",
|
"content": "NVIDIA 驱动程序新版本可能导致游戏表现异常的问题说明",
|
||||||
"jump_url": "https://endfield.hypergryph.com/news/3819",
|
"jump_url": "https://endfield.hypergryph.com/news/3819",
|
||||||
@@ -27,20 +41,6 @@
|
|||||||
"id": "108",
|
"id": "108",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"content": "「河流的女儿」特许寻访说明",
|
|
||||||
"jump_url": "https://endfield.hypergryph.com/news/5992",
|
|
||||||
"start_ts": "1773158400000",
|
|
||||||
"id": "106",
|
|
||||||
"need_token": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"content": "「新芽申领」限时特卖说明",
|
|
||||||
"jump_url": "https://endfield.hypergryph.com/news/4784",
|
|
||||||
"start_ts": "1773158400000",
|
|
||||||
"id": "107",
|
|
||||||
"need_token": false
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"content": "关于使用非官方工具的安全风险提示",
|
"content": "关于使用非官方工具的安全风险提示",
|
||||||
"jump_url": "https://endfield.hypergryph.com/news/9345",
|
"jump_url": "https://endfield.hypergryph.com/news/9345",
|
||||||
@@ -81,40 +81,12 @@
|
|||||||
{
|
{
|
||||||
"tabName": "资讯",
|
"tabName": "资讯",
|
||||||
"announcements": [
|
"announcements": [
|
||||||
{
|
|
||||||
"content": "【有奖活动】送给汤汤的一句话",
|
|
||||||
"jump_url": "https://www.skland.com/article?id=5666750",
|
|
||||||
"start_ts": "1773734400000",
|
|
||||||
"id": "117",
|
|
||||||
"need_token": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"content": "新潮驿站系列 衍生品新品上架",
|
|
||||||
"jump_url": "http://arknightsendfieldyx.tmall.com/index.htm",
|
|
||||||
"start_ts": "1773633600000",
|
|
||||||
"id": "112",
|
|
||||||
"need_token": false
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"content": "「新潮起,故渊离」创作征集活动",
|
"content": "「新潮起,故渊离」创作征集活动",
|
||||||
"jump_url": "https://endfield.hypergryph.com/news/0436",
|
"jump_url": "https://endfield.hypergryph.com/news/0436",
|
||||||
"start_ts": "1773378000000",
|
"start_ts": "1773378000000",
|
||||||
"id": "111",
|
"id": "111",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
|
||||||
{
|
|
||||||
"content": "【有奖活动】「新潮起,故渊离」热议中!",
|
|
||||||
"jump_url": "https://www.skland.com/article?id=5648720&hg_media=launcher&hg_link_campaign=announcement",
|
|
||||||
"start_ts": "1773309600000",
|
|
||||||
"id": "110",
|
|
||||||
"need_token": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"content": "【有奖活动】秀出你的蚀刻章!",
|
|
||||||
"jump_url": "https://www.skland.com/article?id=5650999&hg_media=launcher&hg_link_campaign=announcement",
|
|
||||||
"start_ts": "1773374400000",
|
|
||||||
"id": "113",
|
|
||||||
"need_token": false
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"tab_id": "34"
|
"tab_id": "34"
|
||||||
|
|||||||
@@ -348,5 +348,193 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T04:00:42.251+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "6LL0KJuqHBVz33WK",
|
||||||
|
"channel": 1,
|
||||||
|
"subChannel": 1,
|
||||||
|
"lang": "zh-cn",
|
||||||
|
"region": "cn",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://hg-utils-public.hycdn.cn/hg-utils/prod/eppcsuwqpaueijqk/6LL0KJuqHBVz33WK/e9/22/e9221d36f6fa4784eedc926348f897ac.jpg",
|
||||||
|
"md5": "8f954e0293788f0e6c2817711afeca56",
|
||||||
|
"jump_url": "https://endfield.hypergryph.com/news/7224",
|
||||||
|
"id": "75",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://hg-utils-public.hycdn.cn/hg-utils/prod/eppcsuwqpaueijqk/6LL0KJuqHBVz33WK/b7/da/b7da8509e5651c441a5ff8b11089e70d.png",
|
||||||
|
"md5": "4cca3be22c8028017a104be43dec0d21",
|
||||||
|
"jump_url": "http://arknightsendfieldyx.tmall.com/index.htm",
|
||||||
|
"id": "73",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://hg-utils-public.hycdn.cn/hg-utils/prod/eppcsuwqpaueijqk/6LL0KJuqHBVz33WK/b6/6a/b66a4a66da3a069776057af12a23f89a.jpg",
|
||||||
|
"md5": "6a884da36b2b7ec9dcf300f0ac8dc41b",
|
||||||
|
"jump_url": "https://www.skland.com/act/endfield/64d229351fee-ef01-incentive?header=0&hg_media=endfield&hg_link_campaign=banner",
|
||||||
|
"id": "74",
|
||||||
|
"need_token": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://hg-utils-public.hycdn.cn/hg-utils/prod/eppcsuwqpaueijqk/6LL0KJuqHBVz33WK/e2/50/e250e6f89c9b232b17cc20e253bbfc43.png",
|
||||||
|
"md5": "655d08413aa0c668dcad23d3fabe6ae9",
|
||||||
|
"jump_url": "https://endfield.hypergryph.com/news/0436",
|
||||||
|
"id": "72",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://hg-utils-public.hycdn.cn/hg-utils/prod/eppcsuwqpaueijqk/6LL0KJuqHBVz33WK/d4/91/d4917b8f32895bfffa5ab68075d25299.jpg",
|
||||||
|
"md5": "6e114ae8b8898fb1dd114e8cc6079c03",
|
||||||
|
"jump_url": "https://endfield.hypergryph.com/news/6003",
|
||||||
|
"id": "71",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://hg-utils-public.hycdn.cn/hg-utils/prod/eppcsuwqpaueijqk/6LL0KJuqHBVz33WK/16/ce/16ce42a4e7380ddd39f57ec9e9cd559f.png",
|
||||||
|
"md5": "d97bee4cbaf67db56ec4a71d70f79603",
|
||||||
|
"jump_url": "https://endfield.hypergryph.com/news/7225",
|
||||||
|
"id": "67",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://hg-utils-public.hycdn.cn/hg-utils/prod/eppcsuwqpaueijqk/6LL0KJuqHBVz33WK/2f/fd/2ffd3caaf5d8a7b77c4454a325db118b.png",
|
||||||
|
"md5": "6ba877cd98e73faa4cd1289270ac5037",
|
||||||
|
"jump_url": "https://endfield.hypergryph.com/news/4795",
|
||||||
|
"id": "61",
|
||||||
|
"need_token": true
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-30T16:00:48.930+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "6LL0KJuqHBVz33WK",
|
||||||
|
"channel": 1,
|
||||||
|
"subChannel": 1,
|
||||||
|
"lang": "zh-cn",
|
||||||
|
"region": "cn",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://hg-utils-public.hycdn.cn/hg-utils/prod/eppcsuwqpaueijqk/6LL0KJuqHBVz33WK/e9/22/e9221d36f6fa4784eedc926348f897ac.jpg",
|
||||||
|
"md5": "8f954e0293788f0e6c2817711afeca56",
|
||||||
|
"jump_url": "https://endfield.hypergryph.com/news/7224",
|
||||||
|
"id": "75",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://hg-utils-public.hycdn.cn/hg-utils/prod/eppcsuwqpaueijqk/6LL0KJuqHBVz33WK/b6/6a/b66a4a66da3a069776057af12a23f89a.jpg",
|
||||||
|
"md5": "6a884da36b2b7ec9dcf300f0ac8dc41b",
|
||||||
|
"jump_url": "https://www.skland.com/act/endfield/64d229351fee-ef01-incentive?header=0&hg_media=endfield&hg_link_campaign=banner",
|
||||||
|
"id": "74",
|
||||||
|
"need_token": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://hg-utils-public.hycdn.cn/hg-utils/prod/eppcsuwqpaueijqk/6LL0KJuqHBVz33WK/e2/50/e250e6f89c9b232b17cc20e253bbfc43.png",
|
||||||
|
"md5": "655d08413aa0c668dcad23d3fabe6ae9",
|
||||||
|
"jump_url": "https://endfield.hypergryph.com/news/0436",
|
||||||
|
"id": "72",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://hg-utils-public.hycdn.cn/hg-utils/prod/eppcsuwqpaueijqk/6LL0KJuqHBVz33WK/d4/91/d4917b8f32895bfffa5ab68075d25299.jpg",
|
||||||
|
"md5": "6e114ae8b8898fb1dd114e8cc6079c03",
|
||||||
|
"jump_url": "https://endfield.hypergryph.com/news/6003",
|
||||||
|
"id": "71",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://hg-utils-public.hycdn.cn/hg-utils/prod/eppcsuwqpaueijqk/6LL0KJuqHBVz33WK/16/ce/16ce42a4e7380ddd39f57ec9e9cd559f.png",
|
||||||
|
"md5": "d97bee4cbaf67db56ec4a71d70f79603",
|
||||||
|
"jump_url": "https://endfield.hypergryph.com/news/7225",
|
||||||
|
"id": "67",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://hg-utils-public.hycdn.cn/hg-utils/prod/eppcsuwqpaueijqk/6LL0KJuqHBVz33WK/2f/fd/2ffd3caaf5d8a7b77c4454a325db118b.png",
|
||||||
|
"md5": "6ba877cd98e73faa4cd1289270ac5037",
|
||||||
|
"jump_url": "https://endfield.hypergryph.com/news/4795",
|
||||||
|
"id": "61",
|
||||||
|
"need_token": true
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-04T04:00:44.179+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "6LL0KJuqHBVz33WK",
|
||||||
|
"channel": 1,
|
||||||
|
"subChannel": 1,
|
||||||
|
"lang": "zh-cn",
|
||||||
|
"region": "cn",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://hg-utils-public.hycdn.cn/hg-utils/prod/eppcsuwqpaueijqk/6LL0KJuqHBVz33WK/ac/c0/acc0177cc1ad311e21e3528cc7c4cee1.jpg",
|
||||||
|
"md5": "e3c8a3cf81976188cb245827038bcf20",
|
||||||
|
"jump_url": "https://comic.hypergryph.com/talos-ii-historicus/comic/3115",
|
||||||
|
"id": "76",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://hg-utils-public.hycdn.cn/hg-utils/prod/eppcsuwqpaueijqk/6LL0KJuqHBVz33WK/e9/22/e9221d36f6fa4784eedc926348f897ac.jpg",
|
||||||
|
"md5": "8f954e0293788f0e6c2817711afeca56",
|
||||||
|
"jump_url": "https://endfield.hypergryph.com/news/7224",
|
||||||
|
"id": "75",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://hg-utils-public.hycdn.cn/hg-utils/prod/eppcsuwqpaueijqk/6LL0KJuqHBVz33WK/b6/6a/b66a4a66da3a069776057af12a23f89a.jpg",
|
||||||
|
"md5": "6a884da36b2b7ec9dcf300f0ac8dc41b",
|
||||||
|
"jump_url": "https://www.skland.com/act/endfield/64d229351fee-ef01-incentive?header=0&hg_media=endfield&hg_link_campaign=banner",
|
||||||
|
"id": "74",
|
||||||
|
"need_token": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://hg-utils-public.hycdn.cn/hg-utils/prod/eppcsuwqpaueijqk/6LL0KJuqHBVz33WK/e2/50/e250e6f89c9b232b17cc20e253bbfc43.png",
|
||||||
|
"md5": "655d08413aa0c668dcad23d3fabe6ae9",
|
||||||
|
"jump_url": "https://endfield.hypergryph.com/news/0436",
|
||||||
|
"id": "72",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://hg-utils-public.hycdn.cn/hg-utils/prod/eppcsuwqpaueijqk/6LL0KJuqHBVz33WK/d4/91/d4917b8f32895bfffa5ab68075d25299.jpg",
|
||||||
|
"md5": "6e114ae8b8898fb1dd114e8cc6079c03",
|
||||||
|
"jump_url": "https://endfield.hypergryph.com/news/6003",
|
||||||
|
"id": "71",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://hg-utils-public.hycdn.cn/hg-utils/prod/eppcsuwqpaueijqk/6LL0KJuqHBVz33WK/16/ce/16ce42a4e7380ddd39f57ec9e9cd559f.png",
|
||||||
|
"md5": "d97bee4cbaf67db56ec4a71d70f79603",
|
||||||
|
"jump_url": "https://endfield.hypergryph.com/news/7225",
|
||||||
|
"id": "67",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://hg-utils-public.hycdn.cn/hg-utils/prod/eppcsuwqpaueijqk/6LL0KJuqHBVz33WK/2f/fd/2ffd3caaf5d8a7b77c4454a325db118b.png",
|
||||||
|
"md5": "6ba877cd98e73faa4cd1289270ac5037",
|
||||||
|
"jump_url": "https://endfield.hypergryph.com/news/4795",
|
||||||
|
"id": "61",
|
||||||
|
"need_token": true
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -11,10 +11,17 @@
|
|||||||
"data_version": "",
|
"data_version": "",
|
||||||
"banners": [
|
"banners": [
|
||||||
{
|
{
|
||||||
"url": "https://hg-utils-public.hycdn.cn/hg-utils/prod/eppcsuwqpaueijqk/6LL0KJuqHBVz33WK/b7/da/b7da8509e5651c441a5ff8b11089e70d.png",
|
"url": "https://hg-utils-public.hycdn.cn/hg-utils/prod/eppcsuwqpaueijqk/6LL0KJuqHBVz33WK/ac/c0/acc0177cc1ad311e21e3528cc7c4cee1.jpg",
|
||||||
"md5": "4cca3be22c8028017a104be43dec0d21",
|
"md5": "e3c8a3cf81976188cb245827038bcf20",
|
||||||
"jump_url": "http://arknightsendfieldyx.tmall.com/index.htm",
|
"jump_url": "https://comic.hypergryph.com/talos-ii-historicus/comic/3115",
|
||||||
"id": "73",
|
"id": "76",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://hg-utils-public.hycdn.cn/hg-utils/prod/eppcsuwqpaueijqk/6LL0KJuqHBVz33WK/e9/22/e9221d36f6fa4784eedc926348f897ac.jpg",
|
||||||
|
"md5": "8f954e0293788f0e6c2817711afeca56",
|
||||||
|
"jump_url": "https://endfield.hypergryph.com/news/7224",
|
||||||
|
"id": "75",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -38,13 +45,6 @@
|
|||||||
"id": "71",
|
"id": "71",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"url": "https://hg-utils-public.hycdn.cn/hg-utils/prod/eppcsuwqpaueijqk/6LL0KJuqHBVz33WK/4c/2f/4c2f27c5d70199218aec8f4775485ba0.png",
|
|
||||||
"md5": "c648cec230819452c58b56ff2cac95cc",
|
|
||||||
"jump_url": "https://endfield.hypergryph.com/news/5992",
|
|
||||||
"id": "70",
|
|
||||||
"need_token": false
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"url": "https://hg-utils-public.hycdn.cn/hg-utils/prod/eppcsuwqpaueijqk/6LL0KJuqHBVz33WK/16/ce/16ce42a4e7380ddd39f57ec9e9cd559f.png",
|
"url": "https://hg-utils-public.hycdn.cn/hg-utils/prod/eppcsuwqpaueijqk/6LL0KJuqHBVz33WK/16/ce/16ce42a4e7380ddd39f57ec9e9cd559f.png",
|
||||||
"md5": "d97bee4cbaf67db56ec4a71d70f79603",
|
"md5": "d97bee4cbaf67db56ec4a71d70f79603",
|
||||||
|
|||||||
@@ -446,5 +446,278 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T04:00:38.050+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "de-de",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "Hinweise",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "[Wolfsperle] Details zur Rekrutierung: Priorisiert",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "445",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Hinweis zu Problemen im Spiel durch NVIDIA Treiber-Updates",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "416",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "[Wogen der Flut tragen Tränen zum Quell] – Hinweise zum Versions-Update",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "388",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "[„Erneutes Aufblühen“-Ausgabe] Details zu zeitlich begrenztem Angebot",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "360",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield – Anleitung für Spielwerkzeuge",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "143",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield – Erklärung zu Fairness im Spiel",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "99",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Sicherheitswarnung bei Verwendung inoffizieller Tools",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "402",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "72"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "Neuigkeiten",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield [Official Release Preview] DEV Comm",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "71",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "74"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T04:30:33.624+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "de-de",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "Hinweise",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "[Scharlachperle-Ausgabe] – KZO-Details",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "431",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "[Wolfsperle] Details zur Rekrutierung: Priorisiert",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "445",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Hinweis zu Problemen im Spiel durch NVIDIA Treiber-Updates",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "416",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "[Wogen der Flut tragen Tränen zum Quell] – Hinweise zum Versions-Update",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "388",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "[„Erneutes Aufblühen“-Ausgabe] Details zu zeitlich begrenztem Angebot",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "360",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield – Anleitung für Spielwerkzeuge",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "143",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield – Erklärung zu Fairness im Spiel",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "99",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Sicherheitswarnung bei Verwendung inoffizieller Tools",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "402",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "72"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "Neuigkeiten",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield [Official Release Preview] DEV Comm",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "71",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "74"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-01T02:00:42.401+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "de-de",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "Hinweise",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "[Die Reise des Langohrs]-Festtag-Event – Details",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1337",
|
||||||
|
"start_ts": "1775008800000",
|
||||||
|
"id": "459",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "[Scharlachperle-Ausgabe] – KZO-Details",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "431",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "[Wolfsperle] Details zur Rekrutierung: Priorisiert",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "445",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Hinweis zu Problemen im Spiel durch NVIDIA Treiber-Updates",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "416",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "[Wogen der Flut tragen Tränen zum Quell] – Hinweise zum Versions-Update",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "388",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "[„Erneutes Aufblühen“-Ausgabe] Details zu zeitlich begrenztem Angebot",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "360",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield – Anleitung für Spielwerkzeuge",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "143",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield – Erklärung zu Fairness im Spiel",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "99",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Sicherheitswarnung bei Verwendung inoffizieller Tools",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "402",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "72"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "Neuigkeiten",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield [Official Release Preview] DEV Comm",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "71",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "74"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -13,6 +13,20 @@
|
|||||||
{
|
{
|
||||||
"tabName": "Hinweise",
|
"tabName": "Hinweise",
|
||||||
"announcements": [
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "[Scharlachperle-Ausgabe] – KZO-Details",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "431",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "[Wolfsperle] Details zur Rekrutierung: Priorisiert",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "445",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"content": "Hinweis zu Problemen im Spiel durch NVIDIA Treiber-Updates",
|
"content": "Hinweis zu Problemen im Spiel durch NVIDIA Treiber-Updates",
|
||||||
"jump_url": "https://endfield.gryphline.com/news/3844",
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
@@ -34,13 +48,6 @@
|
|||||||
"id": "360",
|
"id": "360",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"content": "Details zu [Tochter des Flusses] Rekrutierung: Priorisiert",
|
|
||||||
"jump_url": "https://endfield.gryphline.com/news/1338",
|
|
||||||
"start_ts": "1773203400000",
|
|
||||||
"id": "346",
|
|
||||||
"need_token": false
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"content": "Arknights: Endfield – Anleitung für Spielwerkzeuge",
|
"content": "Arknights: Endfield – Anleitung für Spielwerkzeuge",
|
||||||
"jump_url": "https://endfield.gryphline.com/news/0755",
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
|||||||
@@ -488,5 +488,299 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T04:00:38.048+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "en-us",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "Notices",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "[Wolf Pearl] Chartered Headhunting Details",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "440",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Notice Regarding Game Issues Caused by NVIDIA Driver Updates",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "411",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "[Old Deep Water Dies, by Rising Tide It is Denied] Version Update Notes",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "383",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "[Budding Anew Issue] LTO Details",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "355",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield Game Tools Guide",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "138",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield Fair Play Statement",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "94",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Security Risk Warning for Using Unofficial Tools",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "397",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "48"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "News",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "[Old Deep Water Dies, by Rising Tide It is Denied] DEV Comm",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2662",
|
||||||
|
"start_ts": "1772445600000",
|
||||||
|
"id": "321",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield [Official Release Preview] DEV Comm",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "65",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "50"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T04:30:33.649+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "en-us",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "Notices",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "[Scarlet Pearl Issue] LTO Details",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "426",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "[Wolf Pearl] Chartered Headhunting Details",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "440",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Notice Regarding Game Issues Caused by NVIDIA Driver Updates",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "411",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "[Old Deep Water Dies, by Rising Tide It is Denied] Version Update Notes",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "383",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "[Budding Anew Issue] LTO Details",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "355",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield Game Tools Guide",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "138",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield Fair Play Statement",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "94",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Security Risk Warning for Using Unofficial Tools",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "397",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "48"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "News",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "[Old Deep Water Dies, by Rising Tide It is Denied] DEV Comm",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2662",
|
||||||
|
"start_ts": "1772445600000",
|
||||||
|
"id": "321",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield [Official Release Preview] DEV Comm",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "65",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "50"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-01T02:00:42.418+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "en-us",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "Notices",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "[Journey of the Long-Ear] Celebration Event Details",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1337",
|
||||||
|
"start_ts": "1775008800000",
|
||||||
|
"id": "454",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "[Scarlet Pearl Issue] LTO Details",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "426",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "[Wolf Pearl] Chartered Headhunting Details",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "440",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Notice Regarding Game Issues Caused by NVIDIA Driver Updates",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "411",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "[Old Deep Water Dies, by Rising Tide It is Denied] Version Update Notes",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "383",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "[Budding Anew Issue] LTO Details",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "355",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield Game Tools Guide",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "138",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield Fair Play Statement",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "94",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Security Risk Warning for Using Unofficial Tools",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "397",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "48"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "News",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "[Old Deep Water Dies, by Rising Tide It is Denied] DEV Comm",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2662",
|
||||||
|
"start_ts": "1772445600000",
|
||||||
|
"id": "321",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield [Official Release Preview] DEV Comm",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "65",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "50"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -13,6 +13,20 @@
|
|||||||
{
|
{
|
||||||
"tabName": "Notices",
|
"tabName": "Notices",
|
||||||
"announcements": [
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "[Scarlet Pearl Issue] LTO Details",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "426",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "[Wolf Pearl] Chartered Headhunting Details",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "440",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"content": "Notice Regarding Game Issues Caused by NVIDIA Driver Updates",
|
"content": "Notice Regarding Game Issues Caused by NVIDIA Driver Updates",
|
||||||
"jump_url": "https://endfield.gryphline.com/news/3844",
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
@@ -34,13 +48,6 @@
|
|||||||
"id": "355",
|
"id": "355",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"content": "[River's Daughter] Chartered Headhunting Details",
|
|
||||||
"jump_url": "https://endfield.gryphline.com/news/1338",
|
|
||||||
"start_ts": "1773203400000",
|
|
||||||
"id": "341",
|
|
||||||
"need_token": false
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"content": "Arknights: Endfield Game Tools Guide",
|
"content": "Arknights: Endfield Game Tools Guide",
|
||||||
"jump_url": "https://endfield.gryphline.com/news/0755",
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
|||||||
@@ -446,5 +446,278 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T04:00:38.067+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "es-mx",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "Noticias",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Detalles de la caza de reclutas certificada [Perla del lobo]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "443",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Aviso sobre problemas del juego causados por las actualizaciones de los drivers de NVIDIA",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "414",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Notas sobre la actualización de versión de [Perecen las aguas profundas de antaño, borradas por la marea creciente]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "386",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Detalles OTL de la [Solicitud de Brotar de nuevo]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "358",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Guía de herramientas del juego de Arknights: Endfield",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "141",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Juego limpio de Arknights: Endfield",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "97",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Riesgo de seguridad: herramientas no oficiales",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "400",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "63"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "Novedades",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield [Official Release Preview] DEV Comm",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "69",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "65"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T04:30:33.652+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "es-mx",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "Noticias",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Detalles OTL de la [Solicitud de Perla escarlata]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "429",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Detalles de la caza de reclutas certificada [Perla del lobo]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "443",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Aviso sobre problemas del juego causados por las actualizaciones de los drivers de NVIDIA",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "414",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Notas sobre la actualización de versión de [Perecen las aguas profundas de antaño, borradas por la marea creciente]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "386",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Detalles OTL de la [Solicitud de Brotar de nuevo]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "358",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Guía de herramientas del juego de Arknights: Endfield",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "141",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Juego limpio de Arknights: Endfield",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "97",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Riesgo de seguridad: herramientas no oficiales",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "400",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "63"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "Novedades",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield [Official Release Preview] DEV Comm",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "69",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "65"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-01T02:00:42.416+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "es-mx",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "Noticias",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Detalles del evento de celebración [Viaje del orejilarga]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1337",
|
||||||
|
"start_ts": "1775008800000",
|
||||||
|
"id": "457",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Detalles OTL de la [Solicitud de Perla escarlata]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "429",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Detalles de la caza de reclutas certificada [Perla del lobo]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "443",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Aviso sobre problemas del juego causados por las actualizaciones de los drivers de NVIDIA",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "414",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Notas sobre la actualización de versión de [Perecen las aguas profundas de antaño, borradas por la marea creciente]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "386",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Detalles OTL de la [Solicitud de Brotar de nuevo]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "358",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Guía de herramientas del juego de Arknights: Endfield",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "141",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Juego limpio de Arknights: Endfield",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "97",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Riesgo de seguridad: herramientas no oficiales",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "400",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "63"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "Novedades",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield [Official Release Preview] DEV Comm",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "69",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "65"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -13,6 +13,20 @@
|
|||||||
{
|
{
|
||||||
"tabName": "Noticias",
|
"tabName": "Noticias",
|
||||||
"announcements": [
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Detalles OTL de la [Solicitud de Perla escarlata]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "429",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Detalles de la caza de reclutas certificada [Perla del lobo]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "443",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"content": "Aviso sobre problemas del juego causados por las actualizaciones de los drivers de NVIDIA",
|
"content": "Aviso sobre problemas del juego causados por las actualizaciones de los drivers de NVIDIA",
|
||||||
"jump_url": "https://endfield.gryphline.com/news/3844",
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
@@ -34,13 +48,6 @@
|
|||||||
"id": "358",
|
"id": "358",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"content": "Detalles de Caza de reclutas certificada [Hija del río]",
|
|
||||||
"jump_url": "https://endfield.gryphline.com/news/1338",
|
|
||||||
"start_ts": "1773203400000",
|
|
||||||
"id": "344",
|
|
||||||
"need_token": false
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"content": "Guía de herramientas del juego de Arknights: Endfield",
|
"content": "Guía de herramientas del juego de Arknights: Endfield",
|
||||||
"jump_url": "https://endfield.gryphline.com/news/0755",
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
|||||||
@@ -446,5 +446,278 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T04:00:38.313+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "fr-fr",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "Avis",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "[Joyau du loup] Détails du recrutement certifié",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "446",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Avertissement relatif à des problèmes dans le jeu liés aux mises à jour des pilotes NVIDIA",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "417",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Notes de mise à jour de la version [La source se meurt et la marée montante affleure]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "389",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Détails sur la durée limitée du [tirage de Bourgeonnement nouveau]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "361",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield - Guide des Outils de jeu",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "144",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Règles de fair-play d'Arknights: Endfield",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "100",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Avertissement sur les risques des outils non officiels",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "403",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "69"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "Actualités",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield [Official Release Preview] DEV Comm",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "72",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "71"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T04:30:33.861+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "fr-fr",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "Avis",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Détails sur la durée limitée du [tirage de Perle écarlate]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "432",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "[Joyau du loup] Détails du recrutement certifié",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "446",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Avertissement relatif à des problèmes dans le jeu liés aux mises à jour des pilotes NVIDIA",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "417",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Notes de mise à jour de la version [La source se meurt et la marée montante affleure]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "389",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Détails sur la durée limitée du [tirage de Bourgeonnement nouveau]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "361",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield - Guide des Outils de jeu",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "144",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Règles de fair-play d'Arknights: Endfield",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "100",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Avertissement sur les risques des outils non officiels",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "403",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "69"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "Actualités",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield [Official Release Preview] DEV Comm",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "72",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "71"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-01T02:00:42.593+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "fr-fr",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "Avis",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Détails de l'événement de fête [Voyage du longauris]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1337",
|
||||||
|
"start_ts": "1775008800000",
|
||||||
|
"id": "460",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Détails sur la durée limitée du [tirage de Perle écarlate]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "432",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "[Joyau du loup] Détails du recrutement certifié",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "446",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Avertissement relatif à des problèmes dans le jeu liés aux mises à jour des pilotes NVIDIA",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "417",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Notes de mise à jour de la version [La source se meurt et la marée montante affleure]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "389",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Détails sur la durée limitée du [tirage de Bourgeonnement nouveau]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "361",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield - Guide des Outils de jeu",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "144",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Règles de fair-play d'Arknights: Endfield",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "100",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Avertissement sur les risques des outils non officiels",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "403",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "69"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "Actualités",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield [Official Release Preview] DEV Comm",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "72",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "71"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -13,6 +13,20 @@
|
|||||||
{
|
{
|
||||||
"tabName": "Avis",
|
"tabName": "Avis",
|
||||||
"announcements": [
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Détails sur la durée limitée du [tirage de Perle écarlate]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "432",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "[Joyau du loup] Détails du recrutement certifié",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "446",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"content": "Avertissement relatif à des problèmes dans le jeu liés aux mises à jour des pilotes NVIDIA",
|
"content": "Avertissement relatif à des problèmes dans le jeu liés aux mises à jour des pilotes NVIDIA",
|
||||||
"jump_url": "https://endfield.gryphline.com/news/3844",
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
@@ -34,13 +48,6 @@
|
|||||||
"id": "361",
|
"id": "361",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"content": "Détails sur le recrutement certifié [Fille de la rivière]",
|
|
||||||
"jump_url": "https://endfield.gryphline.com/news/1338",
|
|
||||||
"start_ts": "1773203400000",
|
|
||||||
"id": "347",
|
|
||||||
"need_token": false
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"content": "Arknights: Endfield - Guide des Outils de jeu",
|
"content": "Arknights: Endfield - Guide des Outils de jeu",
|
||||||
"jump_url": "https://endfield.gryphline.com/news/0755",
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
|||||||
@@ -446,5 +446,278 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T04:00:38.292+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "id-id",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "Pemberitahuan",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Detail Headhunt Khusus [Mutiara Serigala]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "448",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Pemberitahuan Terkait Masalah Game Akibat Pembaruan Driver NVIDIA",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "419",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Catatan Pembaruan Versi [Perairan Dalam Tua Tiada, Disangkal oleh Ombak Pasang]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "391",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "[Edisi Tunas Baru] Detail OBW",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "363",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Panduan Alat Game untuk Arknights: Endfield",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "146",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Pernyataan Bermain Adil Arknights: Endfield",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "102",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Peringatan Risiko Keamanan Saat Menggunakan Alat Tidak Resmi",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "405",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "81"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "Berita",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield [Official Release Preview] DEV Comm",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "74",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "83"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T04:30:33.890+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "id-id",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "Pemberitahuan",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "[Edisi Mutiara Merah] Detail OBW",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "434",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Detail Headhunt Khusus [Mutiara Serigala]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "448",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Pemberitahuan Terkait Masalah Game Akibat Pembaruan Driver NVIDIA",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "419",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Catatan Pembaruan Versi [Perairan Dalam Tua Tiada, Disangkal oleh Ombak Pasang]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "391",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "[Edisi Tunas Baru] Detail OBW",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "363",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Panduan Alat Game untuk Arknights: Endfield",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "146",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Pernyataan Bermain Adil Arknights: Endfield",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "102",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Peringatan Risiko Keamanan Saat Menggunakan Alat Tidak Resmi",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "405",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "81"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "Berita",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield [Official Release Preview] DEV Comm",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "74",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "83"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-01T02:00:42.619+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "id-id",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "Pemberitahuan",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Detail Event Perayaan [Perjalanan si Kuping Panjang]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1337",
|
||||||
|
"start_ts": "1775008800000",
|
||||||
|
"id": "462",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "[Edisi Mutiara Merah] Detail OBW",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "434",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Detail Headhunt Khusus [Mutiara Serigala]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "448",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Pemberitahuan Terkait Masalah Game Akibat Pembaruan Driver NVIDIA",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "419",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Catatan Pembaruan Versi [Perairan Dalam Tua Tiada, Disangkal oleh Ombak Pasang]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "391",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "[Edisi Tunas Baru] Detail OBW",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "363",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Panduan Alat Game untuk Arknights: Endfield",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "146",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Pernyataan Bermain Adil Arknights: Endfield",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "102",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Peringatan Risiko Keamanan Saat Menggunakan Alat Tidak Resmi",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "405",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "81"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "Berita",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield [Official Release Preview] DEV Comm",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "74",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "83"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -13,6 +13,20 @@
|
|||||||
{
|
{
|
||||||
"tabName": "Pemberitahuan",
|
"tabName": "Pemberitahuan",
|
||||||
"announcements": [
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "[Edisi Mutiara Merah] Detail OBW",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "434",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Detail Headhunt Khusus [Mutiara Serigala]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "448",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"content": "Pemberitahuan Terkait Masalah Game Akibat Pembaruan Driver NVIDIA",
|
"content": "Pemberitahuan Terkait Masalah Game Akibat Pembaruan Driver NVIDIA",
|
||||||
"jump_url": "https://endfield.gryphline.com/news/3844",
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
@@ -34,13 +48,6 @@
|
|||||||
"id": "363",
|
"id": "363",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"content": "Detail Headhunt Khusus [Putri Sungai]",
|
|
||||||
"jump_url": "https://endfield.gryphline.com/news/1338",
|
|
||||||
"start_ts": "1773203400000",
|
|
||||||
"id": "349",
|
|
||||||
"need_token": false
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"content": "Panduan Alat Game untuk Arknights: Endfield",
|
"content": "Panduan Alat Game untuk Arknights: Endfield",
|
||||||
"jump_url": "https://endfield.gryphline.com/news/0755",
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
|||||||
@@ -446,5 +446,278 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T04:00:38.309+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "it-it",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "Avvisi",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Dettagli sulla caccia ai talenti certificata \"Perla lupina\"",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "451",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Avviso sui problemi di gioco causati dagli aggiornamenti dei driver NVIDIA",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "422",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Note sull'aggiornamento \"Addio alle antiche acque, travolte dalla marea che avanza\"",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "394",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Dettagli Distribuzione Nuovo germoglio a tempo limitato",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "366",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Guida agli strumenti di gioco di Arknights: Endfield",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "149",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Impegno al fair play in Arknights: Endfield",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "105",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Avviso: rischio di sicurezza con strumenti non ufficiali",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "408",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "78"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "Novità",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield [Official Release Preview] DEV Comm",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "77",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "80"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T04:30:34.034+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "it-it",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "Avvisi",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Dettagli Distribuzione Perla scarlatta a tempo limitato",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "437",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Dettagli sulla caccia ai talenti certificata \"Perla lupina\"",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "451",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Avviso sui problemi di gioco causati dagli aggiornamenti dei driver NVIDIA",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "422",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Note sull'aggiornamento \"Addio alle antiche acque, travolte dalla marea che avanza\"",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "394",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Dettagli Distribuzione Nuovo germoglio a tempo limitato",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "366",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Guida agli strumenti di gioco di Arknights: Endfield",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "149",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Impegno al fair play in Arknights: Endfield",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "105",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Avviso: rischio di sicurezza con strumenti non ufficiali",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "408",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "78"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "Novità",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield [Official Release Preview] DEV Comm",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "77",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "80"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-01T02:00:42.646+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "it-it",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "Avvisi",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Dettagli Evento celebrazione \"Viaggio del lungorecchi\"",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1337",
|
||||||
|
"start_ts": "1775008800000",
|
||||||
|
"id": "465",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Dettagli Distribuzione Perla scarlatta a tempo limitato",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "437",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Dettagli sulla caccia ai talenti certificata \"Perla lupina\"",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "451",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Avviso sui problemi di gioco causati dagli aggiornamenti dei driver NVIDIA",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "422",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Note sull'aggiornamento \"Addio alle antiche acque, travolte dalla marea che avanza\"",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "394",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Dettagli Distribuzione Nuovo germoglio a tempo limitato",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "366",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Guida agli strumenti di gioco di Arknights: Endfield",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "149",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Impegno al fair play in Arknights: Endfield",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "105",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Avviso: rischio di sicurezza con strumenti non ufficiali",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "408",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "78"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "Novità",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield [Official Release Preview] DEV Comm",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "77",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "80"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -13,6 +13,20 @@
|
|||||||
{
|
{
|
||||||
"tabName": "Avvisi",
|
"tabName": "Avvisi",
|
||||||
"announcements": [
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Dettagli Distribuzione Perla scarlatta a tempo limitato",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "437",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Dettagli sulla caccia ai talenti certificata \"Perla lupina\"",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "451",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"content": "Avviso sui problemi di gioco causati dagli aggiornamenti dei driver NVIDIA",
|
"content": "Avviso sui problemi di gioco causati dagli aggiornamenti dei driver NVIDIA",
|
||||||
"jump_url": "https://endfield.gryphline.com/news/3844",
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
@@ -34,13 +48,6 @@
|
|||||||
"id": "366",
|
"id": "366",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"content": "Dettagli caccia ai talenti certificata Figlia del fiume",
|
|
||||||
"jump_url": "https://endfield.gryphline.com/news/1338",
|
|
||||||
"start_ts": "1773203400000",
|
|
||||||
"id": "352",
|
|
||||||
"need_token": false
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"content": "Guida agli strumenti di gioco di Arknights: Endfield",
|
"content": "Guida agli strumenti di gioco di Arknights: Endfield",
|
||||||
"jump_url": "https://endfield.gryphline.com/news/0755",
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
|||||||
@@ -488,5 +488,299 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T04:00:38.532+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "ja-jp",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "お知らせ",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "特別スカウト「ウルフパール」の説明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "441",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "NVIDIAドライバー更新によるゲーム動作への影響について",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "412",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「潮起ち、故淵離る」バージョンアップデートの説明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "384",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「新芽・申請」期間限定ピックアップについて",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "356",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "『アークナイツ:エンドフィールド』ゲームツール使用案内",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "139",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "『アークナイツ:エンドフィールド』公平な運営に関する声明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "95",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "非公式ツール利用に関する注意喚起",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "398",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "54"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "ニュース",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "「潮起ち、故淵離る」開発通信",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2662",
|
||||||
|
"start_ts": "1772445600000",
|
||||||
|
"id": "322",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "『アークナイツ:エンドフィールド』「リリース予告」開発通信",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/ja-jp/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "66",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "56"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T04:30:34.114+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "ja-jp",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "お知らせ",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "「緋珀・申請」期間限定ピックアップについて",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "427",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "特別スカウト「ウルフパール」の説明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "441",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "NVIDIAドライバー更新によるゲーム動作への影響について",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "412",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「潮起ち、故淵離る」バージョンアップデートの説明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "384",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「新芽・申請」期間限定ピックアップについて",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "356",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "『アークナイツ:エンドフィールド』ゲームツール使用案内",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "139",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "『アークナイツ:エンドフィールド』公平な運営に関する声明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "95",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "非公式ツール利用に関する注意喚起",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "398",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "54"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "ニュース",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "「潮起ち、故淵離る」開発通信",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2662",
|
||||||
|
"start_ts": "1772445600000",
|
||||||
|
"id": "322",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "『アークナイツ:エンドフィールド』「リリース予告」開発通信",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/ja-jp/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "66",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "56"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-01T02:00:42.811+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "ja-jp",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "お知らせ",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "「長耳獣の旅」お祝いイベント概要",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1337",
|
||||||
|
"start_ts": "1775008800000",
|
||||||
|
"id": "455",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「緋珀・申請」期間限定ピックアップについて",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "427",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "特別スカウト「ウルフパール」の説明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "441",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "NVIDIAドライバー更新によるゲーム動作への影響について",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "412",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「潮起ち、故淵離る」バージョンアップデートの説明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "384",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「新芽・申請」期間限定ピックアップについて",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "356",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "『アークナイツ:エンドフィールド』ゲームツール使用案内",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "139",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "『アークナイツ:エンドフィールド』公平な運営に関する声明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "95",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "非公式ツール利用に関する注意喚起",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "398",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "54"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "ニュース",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "「潮起ち、故淵離る」開発通信",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2662",
|
||||||
|
"start_ts": "1772445600000",
|
||||||
|
"id": "322",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "『アークナイツ:エンドフィールド』「リリース予告」開発通信",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/ja-jp/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "66",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "56"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -13,6 +13,20 @@
|
|||||||
{
|
{
|
||||||
"tabName": "お知らせ",
|
"tabName": "お知らせ",
|
||||||
"announcements": [
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "「緋珀・申請」期間限定ピックアップについて",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "427",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "特別スカウト「ウルフパール」の説明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "441",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"content": "NVIDIAドライバー更新によるゲーム動作への影響について",
|
"content": "NVIDIAドライバー更新によるゲーム動作への影響について",
|
||||||
"jump_url": "https://endfield.gryphline.com/news/3844",
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
@@ -34,13 +48,6 @@
|
|||||||
"id": "356",
|
"id": "356",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"content": "特別スカウト「水の申し子」の説明",
|
|
||||||
"jump_url": "https://endfield.gryphline.com/news/1338",
|
|
||||||
"start_ts": "1773203400000",
|
|
||||||
"id": "342",
|
|
||||||
"need_token": false
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"content": "『アークナイツ:エンドフィールド』ゲームツール使用案内",
|
"content": "『アークナイツ:エンドフィールド』ゲームツール使用案内",
|
||||||
"jump_url": "https://endfield.gryphline.com/news/0755",
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
|||||||
@@ -488,5 +488,299 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T04:00:38.539+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "ko-kr",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "공지",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "「울프펄」 특별 허가 헤드헌팅 설명",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "442",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "NVIDIA 드라이버 업데이트로 인한 비정상적인 게임 문제 안내",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "413",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「몰아치는 새로운 물결, 과거와의 작별」 버전 업데이트 설명",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "385",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「신아 신청」 기간 한정 판매 설명",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "357",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「명일방주: 엔드필드」 게임 도구 가이드",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "140",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "<명일방주: 엔드필드> 공정 운영 성명서",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "96",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "비공식 도구 사용에 따른 보안 위험성 안내",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "399",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "57"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "뉴스",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "「몰아치는 새로운 물결, 과거와의 작별」 개발자 통신",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2662",
|
||||||
|
"start_ts": "1772445600000",
|
||||||
|
"id": "323",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「명일방주: 엔드필드」 「정식 출시 미리보기」 개발자 통신",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/ja-jp/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "67",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "59"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T04:30:34.845+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "ko-kr",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "공지",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "「적옥 신청」 기간 한정 판매 설명",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "428",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「울프펄」 특별 허가 헤드헌팅 설명",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "442",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "NVIDIA 드라이버 업데이트로 인한 비정상적인 게임 문제 안내",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "413",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「몰아치는 새로운 물결, 과거와의 작별」 버전 업데이트 설명",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "385",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「신아 신청」 기간 한정 판매 설명",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "357",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「명일방주: 엔드필드」 게임 도구 가이드",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "140",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "<명일방주: 엔드필드> 공정 운영 성명서",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "96",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "비공식 도구 사용에 따른 보안 위험성 안내",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "399",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "57"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "뉴스",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "「몰아치는 새로운 물결, 과거와의 작별」 개발자 통신",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2662",
|
||||||
|
"start_ts": "1772445600000",
|
||||||
|
"id": "323",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「명일방주: 엔드필드」 「정식 출시 미리보기」 개발자 통신",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/ja-jp/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "67",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "59"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-01T02:00:42.856+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "ko-kr",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "공지",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "「큰 귀 토끼의 여정」 경축 이벤트 설명",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1337",
|
||||||
|
"start_ts": "1775008800000",
|
||||||
|
"id": "456",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「적옥 신청」 기간 한정 판매 설명",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "428",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「울프펄」 특별 허가 헤드헌팅 설명",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "442",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "NVIDIA 드라이버 업데이트로 인한 비정상적인 게임 문제 안내",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "413",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「몰아치는 새로운 물결, 과거와의 작별」 버전 업데이트 설명",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "385",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「신아 신청」 기간 한정 판매 설명",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "357",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「명일방주: 엔드필드」 게임 도구 가이드",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "140",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "<명일방주: 엔드필드> 공정 운영 성명서",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "96",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "비공식 도구 사용에 따른 보안 위험성 안내",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "399",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "57"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "뉴스",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "「몰아치는 새로운 물결, 과거와의 작별」 개발자 통신",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2662",
|
||||||
|
"start_ts": "1772445600000",
|
||||||
|
"id": "323",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「명일방주: 엔드필드」 「정식 출시 미리보기」 개발자 통신",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/ja-jp/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "67",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "59"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -13,6 +13,20 @@
|
|||||||
{
|
{
|
||||||
"tabName": "공지",
|
"tabName": "공지",
|
||||||
"announcements": [
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "「적옥 신청」 기간 한정 판매 설명",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "428",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「울프펄」 특별 허가 헤드헌팅 설명",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "442",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"content": "NVIDIA 드라이버 업데이트로 인한 비정상적인 게임 문제 안내",
|
"content": "NVIDIA 드라이버 업데이트로 인한 비정상적인 게임 문제 안내",
|
||||||
"jump_url": "https://endfield.gryphline.com/news/3844",
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
@@ -34,13 +48,6 @@
|
|||||||
"id": "357",
|
"id": "357",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"content": "「강에서 태어난 소녀」 특별 허가 헤드헌팅 설명",
|
|
||||||
"jump_url": "https://endfield.gryphline.com/news/1338",
|
|
||||||
"start_ts": "1773203400000",
|
|
||||||
"id": "343",
|
|
||||||
"need_token": false
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"content": "「명일방주: 엔드필드」 게임 도구 가이드",
|
"content": "「명일방주: 엔드필드」 게임 도구 가이드",
|
||||||
"jump_url": "https://endfield.gryphline.com/news/0755",
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
|||||||
@@ -446,5 +446,278 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T04:00:38.563+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "pt-br",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "Avisos",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Detalhes da caça de talentos privilegiada [Pérola do Lobo]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "447",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Aviso sobre Problemas no Jogo Causados por Atualizações de Driver da NVIDIA",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "418",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Notas da atualização de versão [A Maré Ascendente e o Adeus a Águas Passadas]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "390",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Detalhes STL da [Edição Renascer]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "362",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Guia de ferramentas do jogo para Arknights: Endfield",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "145",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Declaração de Fair Play de Arknights: Endfield",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "101",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Alerta de Risco de Segurança para o Uso de Ferramentas Não Oficiais",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "404",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "66"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "Novidades",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield [Official Release Preview] DEV Comm",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "73",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "68"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T04:30:34.181+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "pt-br",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "Avisos",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Detalhes STL da [Edição Pérola Escarlate]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "433",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Detalhes da caça de talentos privilegiada [Pérola do Lobo]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "447",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Aviso sobre Problemas no Jogo Causados por Atualizações de Driver da NVIDIA",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "418",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Notas da atualização de versão [A Maré Ascendente e o Adeus a Águas Passadas]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "390",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Detalhes STL da [Edição Renascer]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "362",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Guia de ferramentas do jogo para Arknights: Endfield",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "145",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Declaração de Fair Play de Arknights: Endfield",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "101",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Alerta de Risco de Segurança para o Uso de Ferramentas Não Oficiais",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "404",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "66"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "Novidades",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield [Official Release Preview] DEV Comm",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "73",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "68"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-01T02:00:42.993+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "pt-br",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "Avisos",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Detalhes do Evento de Celebração [A Jornada do Orelha Longa]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1337",
|
||||||
|
"start_ts": "1775008800000",
|
||||||
|
"id": "461",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Detalhes STL da [Edição Pérola Escarlate]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "433",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Detalhes da caça de talentos privilegiada [Pérola do Lobo]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "447",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Aviso sobre Problemas no Jogo Causados por Atualizações de Driver da NVIDIA",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "418",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Notas da atualização de versão [A Maré Ascendente e o Adeus a Águas Passadas]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "390",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Detalhes STL da [Edição Renascer]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "362",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Guia de ferramentas do jogo para Arknights: Endfield",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "145",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Declaração de Fair Play de Arknights: Endfield",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "101",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Alerta de Risco de Segurança para o Uso de Ferramentas Não Oficiais",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "404",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "66"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "Novidades",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield [Official Release Preview] DEV Comm",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "73",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "68"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -13,6 +13,20 @@
|
|||||||
{
|
{
|
||||||
"tabName": "Avisos",
|
"tabName": "Avisos",
|
||||||
"announcements": [
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Detalhes STL da [Edição Pérola Escarlate]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "433",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Detalhes da caça de talentos privilegiada [Pérola do Lobo]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "447",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"content": "Aviso sobre Problemas no Jogo Causados por Atualizações de Driver da NVIDIA",
|
"content": "Aviso sobre Problemas no Jogo Causados por Atualizações de Driver da NVIDIA",
|
||||||
"jump_url": "https://endfield.gryphline.com/news/3844",
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
@@ -34,13 +48,6 @@
|
|||||||
"id": "362",
|
"id": "362",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"content": "Detalhes da Caça de Talentos Privilegiada [Filha do Rio]",
|
|
||||||
"jump_url": "https://endfield.gryphline.com/news/1338",
|
|
||||||
"start_ts": "1773203400000",
|
|
||||||
"id": "348",
|
|
||||||
"need_token": false
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"content": "Guia de ferramentas do jogo para Arknights: Endfield",
|
"content": "Guia de ferramentas do jogo para Arknights: Endfield",
|
||||||
"jump_url": "https://endfield.gryphline.com/news/0755",
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
|||||||
@@ -446,5 +446,278 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T04:00:38.790+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "ru-ru",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "Уведомления",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Сведения о специальном найме «Жемчужина Стаи»",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "444",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Об ошибках в игре после обновления драйверов NVIDIA",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "415",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Примечания об обновлении версии [Древнее глубоководье пало от бунтарского прилива]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "387",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Сведения о временном предложении [поставки «Молодой побег»]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "359",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Руководство «Игровые инструменты Arknights: Endfield»",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "142",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Заявление о честной игре для «Arknights: Endfield»",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "98",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Предупреждение о риске сторонних инструментов",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "401",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "75"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "Новости",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield [Official Release Preview] DEV Comm",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "70",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "77"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T04:30:34.369+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "ru-ru",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "Уведомления",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Сведения о временном предложении [поставки «Алая жемчужина»]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "430",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Сведения о специальном найме «Жемчужина Стаи»",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "444",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Об ошибках в игре после обновления драйверов NVIDIA",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "415",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Примечания об обновлении версии [Древнее глубоководье пало от бунтарского прилива]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "387",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Сведения о временном предложении [поставки «Молодой побег»]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "359",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Руководство «Игровые инструменты Arknights: Endfield»",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "142",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Заявление о честной игре для «Arknights: Endfield»",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "98",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Предупреждение о риске сторонних инструментов",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "401",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "75"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "Новости",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield [Official Release Preview] DEV Comm",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "70",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "77"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-01T02:00:43.571+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "ru-ru",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "Уведомления",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Сведения о праздничном событии «Приключения длинноуха»",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1337",
|
||||||
|
"start_ts": "1775008800000",
|
||||||
|
"id": "458",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Сведения о временном предложении [поставки «Алая жемчужина»]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "430",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Сведения о специальном найме «Жемчужина Стаи»",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "444",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Об ошибках в игре после обновления драйверов NVIDIA",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "415",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Примечания об обновлении версии [Древнее глубоководье пало от бунтарского прилива]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "387",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Сведения о временном предложении [поставки «Молодой побег»]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "359",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Руководство «Игровые инструменты Arknights: Endfield»",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "142",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Заявление о честной игре для «Arknights: Endfield»",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "98",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Предупреждение о риске сторонних инструментов",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "401",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "75"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "Новости",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield [Official Release Preview] DEV Comm",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "70",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "77"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -13,6 +13,20 @@
|
|||||||
{
|
{
|
||||||
"tabName": "Уведомления",
|
"tabName": "Уведомления",
|
||||||
"announcements": [
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Сведения о временном предложении [поставки «Алая жемчужина»]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "430",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Сведения о специальном найме «Жемчужина Стаи»",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "444",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"content": "Об ошибках в игре после обновления драйверов NVIDIA",
|
"content": "Об ошибках в игре после обновления драйверов NVIDIA",
|
||||||
"jump_url": "https://endfield.gryphline.com/news/3844",
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
@@ -34,13 +48,6 @@
|
|||||||
"id": "359",
|
"id": "359",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"content": "Информация о специальном найме [Дочь рек]",
|
|
||||||
"jump_url": "https://endfield.gryphline.com/news/1338",
|
|
||||||
"start_ts": "1773203400000",
|
|
||||||
"id": "345",
|
|
||||||
"need_token": false
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"content": "Руководство «Игровые инструменты Arknights: Endfield»",
|
"content": "Руководство «Игровые инструменты Arknights: Endfield»",
|
||||||
"jump_url": "https://endfield.gryphline.com/news/0755",
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
|||||||
@@ -446,5 +446,278 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T04:00:38.791+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "th-th",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "ประกาศ",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "รายละเอียดการสรรหารับรอง [ไข่มุกหมาป่า]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "449",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "ประกาศเกี่ยวกับปัญหาเกมที่เกิดจากการอัปเดตไดรเวอร์ NVIDIA",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "420",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "หมายเหตุการอัปเดตเวอร์ชัน [วารีลึกก่อนเก่าม้วยมอด คลื่นซัดทอดโถมสูงขาดสะบั้น]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "392",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "รายละเอียด [ตั๋วผลิบานใหม่] จำกัดเวลา",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "364",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "ไกด์อุปกรณ์เกม Arknights: Endfield",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "147",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "แถลงการณ์เกี่ยวกับการเล่นอย่างยุติธรรมใน Arknights: Endfield",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "103",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "คำเตือนความเสี่ยงด้านความปลอดภัยจากการใช้เครื่องมือที่ไม่เป็นทางการ",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "406",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "84"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "ข่าวสาร",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield [Official Release Preview] DEV Comm",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "75",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "86"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T04:30:35.081+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "th-th",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "ประกาศ",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "รายละเอียด [ตั๋วมุกสกาเล็ต] จำกัดเวลา",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "435",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "รายละเอียดการสรรหารับรอง [ไข่มุกหมาป่า]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "449",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "ประกาศเกี่ยวกับปัญหาเกมที่เกิดจากการอัปเดตไดรเวอร์ NVIDIA",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "420",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "หมายเหตุการอัปเดตเวอร์ชัน [วารีลึกก่อนเก่าม้วยมอด คลื่นซัดทอดโถมสูงขาดสะบั้น]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "392",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "รายละเอียด [ตั๋วผลิบานใหม่] จำกัดเวลา",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "364",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "ไกด์อุปกรณ์เกม Arknights: Endfield",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "147",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "แถลงการณ์เกี่ยวกับการเล่นอย่างยุติธรรมใน Arknights: Endfield",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "103",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "คำเตือนความเสี่ยงด้านความปลอดภัยจากการใช้เครื่องมือที่ไม่เป็นทางการ",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "406",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "84"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "ข่าวสาร",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield [Official Release Preview] DEV Comm",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "75",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "86"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-01T02:00:43.615+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "th-th",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "ประกาศ",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "รายละเอียดกิจกรรมเฉลิมฉลอง [การเดินทางของเจ้าหูยาว]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1337",
|
||||||
|
"start_ts": "1775008800000",
|
||||||
|
"id": "463",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "รายละเอียด [ตั๋วมุกสกาเล็ต] จำกัดเวลา",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "435",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "รายละเอียดการสรรหารับรอง [ไข่มุกหมาป่า]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "449",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "ประกาศเกี่ยวกับปัญหาเกมที่เกิดจากการอัปเดตไดรเวอร์ NVIDIA",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "420",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "หมายเหตุการอัปเดตเวอร์ชัน [วารีลึกก่อนเก่าม้วยมอด คลื่นซัดทอดโถมสูงขาดสะบั้น]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "392",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "รายละเอียด [ตั๋วผลิบานใหม่] จำกัดเวลา",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "364",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "ไกด์อุปกรณ์เกม Arknights: Endfield",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "147",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "แถลงการณ์เกี่ยวกับการเล่นอย่างยุติธรรมใน Arknights: Endfield",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "103",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "คำเตือนความเสี่ยงด้านความปลอดภัยจากการใช้เครื่องมือที่ไม่เป็นทางการ",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "406",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "84"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "ข่าวสาร",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield [Official Release Preview] DEV Comm",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "75",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "86"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -13,6 +13,20 @@
|
|||||||
{
|
{
|
||||||
"tabName": "ประกาศ",
|
"tabName": "ประกาศ",
|
||||||
"announcements": [
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "รายละเอียด [ตั๋วมุกสกาเล็ต] จำกัดเวลา",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "435",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "รายละเอียดการสรรหารับรอง [ไข่มุกหมาป่า]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "449",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"content": "ประกาศเกี่ยวกับปัญหาเกมที่เกิดจากการอัปเดตไดรเวอร์ NVIDIA",
|
"content": "ประกาศเกี่ยวกับปัญหาเกมที่เกิดจากการอัปเดตไดรเวอร์ NVIDIA",
|
||||||
"jump_url": "https://endfield.gryphline.com/news/3844",
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
@@ -34,13 +48,6 @@
|
|||||||
"id": "364",
|
"id": "364",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"content": "รายละเอียดการสรรหารับรอง [ธิดาแห่งสายน้ำ]",
|
|
||||||
"jump_url": "https://endfield.gryphline.com/news/1338",
|
|
||||||
"start_ts": "1773203400000",
|
|
||||||
"id": "350",
|
|
||||||
"need_token": false
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"content": "ไกด์อุปกรณ์เกม Arknights: Endfield",
|
"content": "ไกด์อุปกรณ์เกม Arknights: Endfield",
|
||||||
"jump_url": "https://endfield.gryphline.com/news/0755",
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
|||||||
@@ -446,5 +446,278 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T04:00:38.850+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "vi-vn",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "Thông Báo",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Chi Tiết Chiêu Mộ Đặc Quyền [Ngọc Trai Sói]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "450",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Thông Báo Về Sự Cố Game Do Cập Nhật Trình Điều Khiển NVIDIA",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "421",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Ghi Chú Cập Nhật Phiên Bản [Sóng Sau Vùi Dập Sóng Trước]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "393",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Chi tiết LTO [Gói Chồi Non Tái Sinh]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "365",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield - Hướng Dẫn Công Cụ Chơi",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "148",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Tuyên Bố Về Chơi Công Bằng Của Arknights: Endfield",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "104",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Cảnh báo rủi ro bảo mật khi sử dụng công cụ không chính thức",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "407",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "87"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "Tin Tức",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield [Official Release Preview] DEV Comm",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "76",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "89"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T04:30:34.642+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "vi-vn",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "Thông Báo",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "[Gói Ngọc Trai Đỏ] Chi Tiết Chương Trình Giới Hạn Thời Gian",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "436",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Chi Tiết Chiêu Mộ Đặc Quyền [Ngọc Trai Sói]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "450",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Thông Báo Về Sự Cố Game Do Cập Nhật Trình Điều Khiển NVIDIA",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "421",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Ghi Chú Cập Nhật Phiên Bản [Sóng Sau Vùi Dập Sóng Trước]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "393",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Chi tiết LTO [Gói Chồi Non Tái Sinh]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "365",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield - Hướng Dẫn Công Cụ Chơi",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "148",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Tuyên Bố Về Chơi Công Bằng Của Arknights: Endfield",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "104",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Cảnh báo rủi ro bảo mật khi sử dụng công cụ không chính thức",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "407",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "87"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "Tin Tức",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield [Official Release Preview] DEV Comm",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "76",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "89"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-01T02:00:43.212+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "vi-vn",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "Thông Báo",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Chi Tiết Sự Kiện Ăn Mừng [Hành Trình Của Tai Dài]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1337",
|
||||||
|
"start_ts": "1775008800000",
|
||||||
|
"id": "464",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "[Gói Ngọc Trai Đỏ] Chi Tiết Chương Trình Giới Hạn Thời Gian",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "436",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Chi Tiết Chiêu Mộ Đặc Quyền [Ngọc Trai Sói]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "450",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Thông Báo Về Sự Cố Game Do Cập Nhật Trình Điều Khiển NVIDIA",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "421",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Ghi Chú Cập Nhật Phiên Bản [Sóng Sau Vùi Dập Sóng Trước]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "393",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Chi tiết LTO [Gói Chồi Non Tái Sinh]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "365",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield - Hướng Dẫn Công Cụ Chơi",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "148",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Tuyên Bố Về Chơi Công Bằng Của Arknights: Endfield",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "104",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Cảnh báo rủi ro bảo mật khi sử dụng công cụ không chính thức",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "407",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "87"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "Tin Tức",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield [Official Release Preview] DEV Comm",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "76",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "89"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -13,6 +13,20 @@
|
|||||||
{
|
{
|
||||||
"tabName": "Thông Báo",
|
"tabName": "Thông Báo",
|
||||||
"announcements": [
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "[Gói Ngọc Trai Đỏ] Chi Tiết Chương Trình Giới Hạn Thời Gian",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "436",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Chi Tiết Chiêu Mộ Đặc Quyền [Ngọc Trai Sói]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "450",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"content": "Thông Báo Về Sự Cố Game Do Cập Nhật Trình Điều Khiển NVIDIA",
|
"content": "Thông Báo Về Sự Cố Game Do Cập Nhật Trình Điều Khiển NVIDIA",
|
||||||
"jump_url": "https://endfield.gryphline.com/news/3844",
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
@@ -34,13 +48,6 @@
|
|||||||
"id": "365",
|
"id": "365",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"content": "Chi tiết Chiêu Mộ Đặc Quyền [Con Gái Của Dòng Sông]",
|
|
||||||
"jump_url": "https://endfield.gryphline.com/news/1338",
|
|
||||||
"start_ts": "1773203400000",
|
|
||||||
"id": "351",
|
|
||||||
"need_token": false
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"content": "Arknights: Endfield - Hướng Dẫn Công Cụ Chơi",
|
"content": "Arknights: Endfield - Hướng Dẫn Công Cụ Chơi",
|
||||||
"jump_url": "https://endfield.gryphline.com/news/0755",
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
|||||||
@@ -446,5 +446,278 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T04:00:39.031+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "zh-cn",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "公告",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "「狼珀」特许寻访说明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "438",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "NVIDIA驱动更新可能导致游戏异常说明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "409",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「新潮起,故渊离」版本更新说明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "381",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「新芽申领」限时特卖说明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "353",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "《明日方舟:终末地》游戏工具指南",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "136",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "《明日方舟:终末地》公平运营声明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "92",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "关于使用非官方工具的安全风险提示",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "395",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "51"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "新闻",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "《明日方舟:终末地》「公测前瞻」研发通讯",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/zh-tw/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "64",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "53"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T04:30:34.612+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "zh-cn",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "公告",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "「绯珀申领」限时特卖说明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "424",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「狼珀」特许寻访说明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "438",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "NVIDIA驱动更新可能导致游戏异常说明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "409",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「新潮起,故渊离」版本更新说明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "381",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「新芽申领」限时特卖说明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "353",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "《明日方舟:终末地》游戏工具指南",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "136",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "《明日方舟:终末地》公平运营声明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "92",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "关于使用非官方工具的安全风险提示",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "395",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "51"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "新闻",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "《明日方舟:终末地》「公测前瞻」研发通讯",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/zh-tw/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "64",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "53"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-01T02:00:43.257+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "zh-cn",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "公告",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "「长耳兽之旅」同庆活动说明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1337",
|
||||||
|
"start_ts": "1775008800000",
|
||||||
|
"id": "452",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「绯珀申领」限时特卖说明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "424",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「狼珀」特许寻访说明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "438",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "NVIDIA驱动更新可能导致游戏异常说明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "409",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「新潮起,故渊离」版本更新说明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "381",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「新芽申领」限时特卖说明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "353",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "《明日方舟:终末地》游戏工具指南",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "136",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "《明日方舟:终末地》公平运营声明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "92",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "关于使用非官方工具的安全风险提示",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "395",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "51"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "新闻",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "《明日方舟:终末地》「公测前瞻」研发通讯",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/zh-tw/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "64",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "53"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -13,6 +13,20 @@
|
|||||||
{
|
{
|
||||||
"tabName": "公告",
|
"tabName": "公告",
|
||||||
"announcements": [
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "「绯珀申领」限时特卖说明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "424",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「狼珀」特许寻访说明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "438",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"content": "NVIDIA驱动更新可能导致游戏异常说明",
|
"content": "NVIDIA驱动更新可能导致游戏异常说明",
|
||||||
"jump_url": "https://endfield.gryphline.com/news/3844",
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
@@ -34,13 +48,6 @@
|
|||||||
"id": "353",
|
"id": "353",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"content": "「河流的女儿」特许寻访说明",
|
|
||||||
"jump_url": "https://endfield.gryphline.com/news/1338",
|
|
||||||
"start_ts": "1773203400000",
|
|
||||||
"id": "339",
|
|
||||||
"need_token": false
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"content": "《明日方舟:终末地》游戏工具指南",
|
"content": "《明日方舟:终末地》游戏工具指南",
|
||||||
"jump_url": "https://endfield.gryphline.com/news/0755",
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
|||||||
@@ -488,5 +488,299 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T04:00:39.055+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "zh-tw",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "公告",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "「狼珀」特許尋訪說明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "439",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "NVIDIA驅動更新可能導致遊戲異常說明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "410",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「新潮起,故淵離」版本更新說明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "382",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「新芽申領」限時特賣說明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "354",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "《明日方舟:終末地》遊戲工具指南",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "137",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "《明日方舟:終末地》公平營運聲明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "93",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "關於使用非官方工具的安全風險提示",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "396",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "60"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "新聞",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "「新潮起,故淵離」開發組通訊",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2662",
|
||||||
|
"start_ts": "1772445600000",
|
||||||
|
"id": "320",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "《明日方舟:終末地》「公測前瞻」開發組通訊",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/zh-tw/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "68",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "62"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T04:30:34.830+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "zh-tw",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "公告",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "「緋珀申領」限時特賣說明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "425",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「狼珀」特許尋訪說明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "439",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "NVIDIA驅動更新可能導致遊戲異常說明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "410",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「新潮起,故淵離」版本更新說明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "382",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「新芽申領」限時特賣說明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "354",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "《明日方舟:終末地》遊戲工具指南",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "137",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "《明日方舟:終末地》公平營運聲明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "93",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "關於使用非官方工具的安全風險提示",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "396",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "60"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "新聞",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "「新潮起,故淵離」開發組通訊",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2662",
|
||||||
|
"start_ts": "1772445600000",
|
||||||
|
"id": "320",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "《明日方舟:終末地》「公測前瞻」開發組通訊",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/zh-tw/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "68",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "62"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-01T02:00:43.272+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "zh-tw",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "公告",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "「長耳獸之旅」同慶活動說明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1337",
|
||||||
|
"start_ts": "1775008800000",
|
||||||
|
"id": "453",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「緋珀申領」限時特賣說明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "425",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「狼珀」特許尋訪說明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "439",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "NVIDIA驅動更新可能導致遊戲異常說明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "410",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「新潮起,故淵離」版本更新說明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "382",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「新芽申領」限時特賣說明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "354",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "《明日方舟:終末地》遊戲工具指南",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "137",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "《明日方舟:終末地》公平營運聲明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "93",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "關於使用非官方工具的安全風險提示",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "396",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "60"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "新聞",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "「新潮起,故淵離」開發組通訊",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2662",
|
||||||
|
"start_ts": "1772445600000",
|
||||||
|
"id": "320",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "《明日方舟:終末地》「公測前瞻」開發組通訊",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/zh-tw/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "68",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "62"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -13,6 +13,20 @@
|
|||||||
{
|
{
|
||||||
"tabName": "公告",
|
"tabName": "公告",
|
||||||
"announcements": [
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "「緋珀申領」限時特賣說明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "425",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「狼珀」特許尋訪說明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "439",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"content": "NVIDIA驅動更新可能導致遊戲異常說明",
|
"content": "NVIDIA驅動更新可能導致遊戲異常說明",
|
||||||
"jump_url": "https://endfield.gryphline.com/news/3844",
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
@@ -34,13 +48,6 @@
|
|||||||
"id": "354",
|
"id": "354",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"content": "「河流的女兒」特許尋訪說明",
|
|
||||||
"jump_url": "https://endfield.gryphline.com/news/1338",
|
|
||||||
"start_ts": "1773203400000",
|
|
||||||
"id": "340",
|
|
||||||
"need_token": false
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"content": "《明日方舟:終末地》遊戲工具指南",
|
"content": "《明日方舟:終末地》遊戲工具指南",
|
||||||
"jump_url": "https://endfield.gryphline.com/news/0755",
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
|||||||
@@ -325,5 +325,783 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-19T15:00:47.326+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "de-de",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/42/ee/42ee4377a48a2be8f09d368759383447.jpg",
|
||||||
|
"md5": "97e129d9d0b470b23b8e8e32e6c319e2",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2033450826884044885&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "314",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/bd/34/bd34d202315438ca9fc4c4c32357af0b.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "300",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/3a/5f/3a5fa14cfeb4fd2e640cb61eb546ff6e.png",
|
||||||
|
"md5": "6d80d5e35e8b9b6b9f15c5f1b46302f1",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "272",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/01/2d/012df07f9b02cee9f5f7e96fe9a9f3ed.png",
|
||||||
|
"md5": "253758dceaf84cb7867eff615f7d91da",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1338",
|
||||||
|
"id": "257",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/57/46/5746e3b4c92cd62be6fd8a315f75a664.png",
|
||||||
|
"md5": "6af7dbd83af7910d183c6e6af16fa2b8",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "238",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/77/72/7772d915d654f875a300b8b9211c3e96.png",
|
||||||
|
"md5": "4084b44ecc64e41efc8d74f001e8be17",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "50",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/fe/97/fe97f4b29f4c302142f29ef56c567265.png",
|
||||||
|
"md5": "38bdd063099ea23ac3d0c32f7e09b58e",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "36",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-20T04:00:41.309+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "de-de",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/24/84/248465f26aff417b33fbef7c61991bb9.jpg",
|
||||||
|
"md5": "5b333e97ca2a634b08f6300f25f7bd84",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "328",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/42/ee/42ee4377a48a2be8f09d368759383447.jpg",
|
||||||
|
"md5": "97e129d9d0b470b23b8e8e32e6c319e2",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2033450826884044885&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "314",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/bd/34/bd34d202315438ca9fc4c4c32357af0b.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "300",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/3a/5f/3a5fa14cfeb4fd2e640cb61eb546ff6e.png",
|
||||||
|
"md5": "6d80d5e35e8b9b6b9f15c5f1b46302f1",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "272",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/01/2d/012df07f9b02cee9f5f7e96fe9a9f3ed.png",
|
||||||
|
"md5": "253758dceaf84cb7867eff615f7d91da",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1338",
|
||||||
|
"id": "257",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/57/46/5746e3b4c92cd62be6fd8a315f75a664.png",
|
||||||
|
"md5": "6af7dbd83af7910d183c6e6af16fa2b8",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "238",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/77/72/7772d915d654f875a300b8b9211c3e96.png",
|
||||||
|
"md5": "4084b44ecc64e41efc8d74f001e8be17",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "50",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/fe/97/fe97f4b29f4c302142f29ef56c567265.png",
|
||||||
|
"md5": "38bdd063099ea23ac3d0c32f7e09b58e",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "36",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-21T11:01:26.070+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "de-de",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/f5/06/f5063fa8df01dc3f1328521ccb3e5d83.png",
|
||||||
|
"md5": "fbfc871c4ac2f7c2e5d215331561140b",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2029132713323603170&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Qingbo",
|
||||||
|
"id": "342",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/24/84/248465f26aff417b33fbef7c61991bb9.jpg",
|
||||||
|
"md5": "5b333e97ca2a634b08f6300f25f7bd84",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "328",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/42/ee/42ee4377a48a2be8f09d368759383447.jpg",
|
||||||
|
"md5": "97e129d9d0b470b23b8e8e32e6c319e2",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2033450826884044885&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "314",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/bd/34/bd34d202315438ca9fc4c4c32357af0b.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "300",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/3a/5f/3a5fa14cfeb4fd2e640cb61eb546ff6e.png",
|
||||||
|
"md5": "6d80d5e35e8b9b6b9f15c5f1b46302f1",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "272",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/01/2d/012df07f9b02cee9f5f7e96fe9a9f3ed.png",
|
||||||
|
"md5": "253758dceaf84cb7867eff615f7d91da",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1338",
|
||||||
|
"id": "257",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/57/46/5746e3b4c92cd62be6fd8a315f75a664.png",
|
||||||
|
"md5": "6af7dbd83af7910d183c6e6af16fa2b8",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "238",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/77/72/7772d915d654f875a300b8b9211c3e96.png",
|
||||||
|
"md5": "4084b44ecc64e41efc8d74f001e8be17",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "50",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/fe/97/fe97f4b29f4c302142f29ef56c567265.png",
|
||||||
|
"md5": "38bdd063099ea23ac3d0c32f7e09b58e",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "36",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T04:00:38.035+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "de-de",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/87/0b/870be97c3a0fee997128e4734a3873c7.jpg",
|
||||||
|
"md5": "64fdc2445f86aba45637841f0941a5db",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "356",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/f5/06/f5063fa8df01dc3f1328521ccb3e5d83.png",
|
||||||
|
"md5": "fbfc871c4ac2f7c2e5d215331561140b",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2029132713323603170&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Qingbo",
|
||||||
|
"id": "342",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/24/84/248465f26aff417b33fbef7c61991bb9.jpg",
|
||||||
|
"md5": "5b333e97ca2a634b08f6300f25f7bd84",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "328",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/42/ee/42ee4377a48a2be8f09d368759383447.jpg",
|
||||||
|
"md5": "97e129d9d0b470b23b8e8e32e6c319e2",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2033450826884044885&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "314",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/bd/34/bd34d202315438ca9fc4c4c32357af0b.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "300",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/3a/5f/3a5fa14cfeb4fd2e640cb61eb546ff6e.png",
|
||||||
|
"md5": "6d80d5e35e8b9b6b9f15c5f1b46302f1",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "272",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/57/46/5746e3b4c92cd62be6fd8a315f75a664.png",
|
||||||
|
"md5": "6af7dbd83af7910d183c6e6af16fa2b8",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "238",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/77/72/7772d915d654f875a300b8b9211c3e96.png",
|
||||||
|
"md5": "4084b44ecc64e41efc8d74f001e8be17",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "50",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/fe/97/fe97f4b29f4c302142f29ef56c567265.png",
|
||||||
|
"md5": "38bdd063099ea23ac3d0c32f7e09b58e",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "36",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T16:00:41.959+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "de-de",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/87/0b/870be97c3a0fee997128e4734a3873c7.jpg",
|
||||||
|
"md5": "64fdc2445f86aba45637841f0941a5db",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "356",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/f5/06/f5063fa8df01dc3f1328521ccb3e5d83.png",
|
||||||
|
"md5": "fbfc871c4ac2f7c2e5d215331561140b",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2029132713323603170&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Qingbo",
|
||||||
|
"id": "342",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/24/84/248465f26aff417b33fbef7c61991bb9.jpg",
|
||||||
|
"md5": "5b333e97ca2a634b08f6300f25f7bd84",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "328",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/bd/34/bd34d202315438ca9fc4c4c32357af0b.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "300",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/3a/5f/3a5fa14cfeb4fd2e640cb61eb546ff6e.png",
|
||||||
|
"md5": "6d80d5e35e8b9b6b9f15c5f1b46302f1",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "272",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/57/46/5746e3b4c92cd62be6fd8a315f75a664.png",
|
||||||
|
"md5": "6af7dbd83af7910d183c6e6af16fa2b8",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "238",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/77/72/7772d915d654f875a300b8b9211c3e96.png",
|
||||||
|
"md5": "4084b44ecc64e41efc8d74f001e8be17",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "50",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/fe/97/fe97f4b29f4c302142f29ef56c567265.png",
|
||||||
|
"md5": "38bdd063099ea23ac3d0c32f7e09b58e",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "36",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-31T15:00:45.132+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "de-de",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/87/0b/870be97c3a0fee997128e4734a3873c7.jpg",
|
||||||
|
"md5": "64fdc2445f86aba45637841f0941a5db",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "356",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/f5/06/f5063fa8df01dc3f1328521ccb3e5d83.png",
|
||||||
|
"md5": "fbfc871c4ac2f7c2e5d215331561140b",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2029132713323603170&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Qingbo",
|
||||||
|
"id": "342",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/24/84/248465f26aff417b33fbef7c61991bb9.jpg",
|
||||||
|
"md5": "5b333e97ca2a634b08f6300f25f7bd84",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "328",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/bd/34/bd34d202315438ca9fc4c4c32357af0b.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "300",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/3a/5f/3a5fa14cfeb4fd2e640cb61eb546ff6e.png",
|
||||||
|
"md5": "6d80d5e35e8b9b6b9f15c5f1b46302f1",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "272",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/77/72/7772d915d654f875a300b8b9211c3e96.png",
|
||||||
|
"md5": "4084b44ecc64e41efc8d74f001e8be17",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "50",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/fe/97/fe97f4b29f4c302142f29ef56c567265.png",
|
||||||
|
"md5": "38bdd063099ea23ac3d0c32f7e09b58e",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "36",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-01T15:00:47.674+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "de-de",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/87/0b/870be97c3a0fee997128e4734a3873c7.jpg",
|
||||||
|
"md5": "64fdc2445f86aba45637841f0941a5db",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "356",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/24/84/248465f26aff417b33fbef7c61991bb9.jpg",
|
||||||
|
"md5": "5b333e97ca2a634b08f6300f25f7bd84",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "328",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/bd/34/bd34d202315438ca9fc4c4c32357af0b.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "300",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/3a/5f/3a5fa14cfeb4fd2e640cb61eb546ff6e.png",
|
||||||
|
"md5": "6d80d5e35e8b9b6b9f15c5f1b46302f1",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "272",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/77/72/7772d915d654f875a300b8b9211c3e96.png",
|
||||||
|
"md5": "4084b44ecc64e41efc8d74f001e8be17",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "50",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/fe/97/fe97f4b29f4c302142f29ef56c567265.png",
|
||||||
|
"md5": "38bdd063099ea23ac3d0c32f7e09b58e",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "36",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-02T11:00:49.695+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "de-de",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/4f/be/4fbe503b6b2f89cc3efed4ea72bbbda4.png",
|
||||||
|
"md5": "45bdd1f1a67702fa980e43b855db79e1",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038589290462449304&hg_media=launcher&hg_link_campaign=banner&hg_link_name=wash",
|
||||||
|
"id": "384",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/87/0b/870be97c3a0fee997128e4734a3873c7.jpg",
|
||||||
|
"md5": "64fdc2445f86aba45637841f0941a5db",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "356",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/24/84/248465f26aff417b33fbef7c61991bb9.jpg",
|
||||||
|
"md5": "5b333e97ca2a634b08f6300f25f7bd84",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "328",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/bd/34/bd34d202315438ca9fc4c4c32357af0b.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "300",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/3a/5f/3a5fa14cfeb4fd2e640cb61eb546ff6e.png",
|
||||||
|
"md5": "6d80d5e35e8b9b6b9f15c5f1b46302f1",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "272",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/77/72/7772d915d654f875a300b8b9211c3e96.png",
|
||||||
|
"md5": "4084b44ecc64e41efc8d74f001e8be17",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "50",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/fe/97/fe97f4b29f4c302142f29ef56c567265.png",
|
||||||
|
"md5": "38bdd063099ea23ac3d0c32f7e09b58e",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "36",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-03T10:00:41.510+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "de-de",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/4f/be/4fbe503b6b2f89cc3efed4ea72bbbda4.png",
|
||||||
|
"md5": "45bdd1f1a67702fa980e43b855db79e1",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038589290462449304&hg_media=launcher&hg_link_campaign=banner&hg_link_name=wash",
|
||||||
|
"id": "384",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/e2/36/e236bcb1efbf852ded6a108793788301.png",
|
||||||
|
"md5": "49ad5f4ab241bca3bead703a4f3b1df6",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "370",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/87/0b/870be97c3a0fee997128e4734a3873c7.jpg",
|
||||||
|
"md5": "64fdc2445f86aba45637841f0941a5db",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "356",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/24/84/248465f26aff417b33fbef7c61991bb9.jpg",
|
||||||
|
"md5": "5b333e97ca2a634b08f6300f25f7bd84",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "328",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/bd/34/bd34d202315438ca9fc4c4c32357af0b.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "300",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/3a/5f/3a5fa14cfeb4fd2e640cb61eb546ff6e.png",
|
||||||
|
"md5": "6d80d5e35e8b9b6b9f15c5f1b46302f1",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "272",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/77/72/7772d915d654f875a300b8b9211c3e96.png",
|
||||||
|
"md5": "4084b44ecc64e41efc8d74f001e8be17",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "50",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/fe/97/fe97f4b29f4c302142f29ef56c567265.png",
|
||||||
|
"md5": "38bdd063099ea23ac3d0c32f7e09b58e",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "36",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-04T03:00:40.732+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "de-de",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/4f/be/4fbe503b6b2f89cc3efed4ea72bbbda4.png",
|
||||||
|
"md5": "45bdd1f1a67702fa980e43b855db79e1",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038589290462449304&hg_media=launcher&hg_link_campaign=banner&hg_link_name=wash",
|
||||||
|
"id": "384",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/71/2b/712b16f00b6dd42389ae112511858e33.png",
|
||||||
|
"md5": "bc8d1c8ba28ad56c8f2213e36855e52e",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038548112145123394&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Rossi",
|
||||||
|
"id": "398",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/e2/36/e236bcb1efbf852ded6a108793788301.png",
|
||||||
|
"md5": "49ad5f4ab241bca3bead703a4f3b1df6",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "370",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/87/0b/870be97c3a0fee997128e4734a3873c7.jpg",
|
||||||
|
"md5": "64fdc2445f86aba45637841f0941a5db",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "356",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/24/84/248465f26aff417b33fbef7c61991bb9.jpg",
|
||||||
|
"md5": "5b333e97ca2a634b08f6300f25f7bd84",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "328",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/bd/34/bd34d202315438ca9fc4c4c32357af0b.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "300",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/3a/5f/3a5fa14cfeb4fd2e640cb61eb546ff6e.png",
|
||||||
|
"md5": "6d80d5e35e8b9b6b9f15c5f1b46302f1",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "272",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/77/72/7772d915d654f875a300b8b9211c3e96.png",
|
||||||
|
"md5": "4084b44ecc64e41efc8d74f001e8be17",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "50",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/fe/97/fe97f4b29f4c302142f29ef56c567265.png",
|
||||||
|
"md5": "38bdd063099ea23ac3d0c32f7e09b58e",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "36",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-07T15:00:57.890+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "de-de",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/4f/be/4fbe503b6b2f89cc3efed4ea72bbbda4.png",
|
||||||
|
"md5": "45bdd1f1a67702fa980e43b855db79e1",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038589290462449304&hg_media=launcher&hg_link_campaign=banner&hg_link_name=wash",
|
||||||
|
"id": "384",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/71/2b/712b16f00b6dd42389ae112511858e33.png",
|
||||||
|
"md5": "bc8d1c8ba28ad56c8f2213e36855e52e",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038548112145123394&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Rossi",
|
||||||
|
"id": "398",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/e2/36/e236bcb1efbf852ded6a108793788301.png",
|
||||||
|
"md5": "49ad5f4ab241bca3bead703a4f3b1df6",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "370",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/87/0b/870be97c3a0fee997128e4734a3873c7.jpg",
|
||||||
|
"md5": "64fdc2445f86aba45637841f0941a5db",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "356",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/24/84/248465f26aff417b33fbef7c61991bb9.jpg",
|
||||||
|
"md5": "5b333e97ca2a634b08f6300f25f7bd84",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "328",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/3a/5f/3a5fa14cfeb4fd2e640cb61eb546ff6e.png",
|
||||||
|
"md5": "6d80d5e35e8b9b6b9f15c5f1b46302f1",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "272",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/77/72/7772d915d654f875a300b8b9211c3e96.png",
|
||||||
|
"md5": "4084b44ecc64e41efc8d74f001e8be17",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "50",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/fe/97/fe97f4b29f4c302142f29ef56c567265.png",
|
||||||
|
"md5": "38bdd063099ea23ac3d0c32f7e09b58e",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "36",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -11,24 +11,38 @@
|
|||||||
"data_version": "",
|
"data_version": "",
|
||||||
"banners": [
|
"banners": [
|
||||||
{
|
{
|
||||||
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/42/ee/42ee4377a48a2be8f09d368759383447.jpg",
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/4f/be/4fbe503b6b2f89cc3efed4ea72bbbda4.png",
|
||||||
"md5": "97e129d9d0b470b23b8e8e32e6c319e2",
|
"md5": "45bdd1f1a67702fa980e43b855db79e1",
|
||||||
"jump_url": "https://www.skport.com/article?id=2033450826884044885&hg_media=launcher&hg_link_campaign=banner",
|
"jump_url": "https://www.skport.com/article?id=2038589290462449304&hg_media=launcher&hg_link_campaign=banner&hg_link_name=wash",
|
||||||
"id": "314",
|
"id": "384",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/bd/34/bd34d202315438ca9fc4c4c32357af0b.png",
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/71/2b/712b16f00b6dd42389ae112511858e33.png",
|
||||||
"md5": "891cc34565de3258110cb0d81a124750",
|
"md5": "bc8d1c8ba28ad56c8f2213e36855e52e",
|
||||||
"jump_url": "https://store.gryphline.com/",
|
"jump_url": "https://www.skport.com/article?id=2038548112145123394&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Rossi",
|
||||||
"id": "300",
|
"id": "398",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/69/45/694598c131120f6f2d363b76426c2859.png",
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/e2/36/e236bcb1efbf852ded6a108793788301.png",
|
||||||
"md5": "c372b49d45507c81c565e939e804ceae",
|
"md5": "49ad5f4ab241bca3bead703a4f3b1df6",
|
||||||
"jump_url": "https://www.skport.com/article?id=2028369049304242052&hg_media=launcher&hg_link_campaign=banner",
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
"id": "286",
|
"id": "370",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/87/0b/870be97c3a0fee997128e4734a3873c7.jpg",
|
||||||
|
"md5": "64fdc2445f86aba45637841f0941a5db",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "356",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/24/84/248465f26aff417b33fbef7c61991bb9.jpg",
|
||||||
|
"md5": "5b333e97ca2a634b08f6300f25f7bd84",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "328",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -38,20 +52,6 @@
|
|||||||
"id": "272",
|
"id": "272",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/01/2d/012df07f9b02cee9f5f7e96fe9a9f3ed.png",
|
|
||||||
"md5": "253758dceaf84cb7867eff615f7d91da",
|
|
||||||
"jump_url": "https://endfield.gryphline.com/news/1338",
|
|
||||||
"id": "257",
|
|
||||||
"need_token": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/57/46/5746e3b4c92cd62be6fd8a315f75a664.png",
|
|
||||||
"md5": "6af7dbd83af7910d183c6e6af16fa2b8",
|
|
||||||
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
|
||||||
"id": "238",
|
|
||||||
"need_token": false
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/77/72/7772d915d654f875a300b8b9211c3e96.png",
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/77/72/7772d915d654f875a300b8b9211c3e96.png",
|
||||||
"md5": "4084b44ecc64e41efc8d74f001e8be17",
|
"md5": "4084b44ecc64e41efc8d74f001e8be17",
|
||||||
|
|||||||
@@ -418,5 +418,960 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-19T15:00:47.354+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "en-us",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/55/0a/550a8080523e18bf8feb828b788a9ccb.jpg",
|
||||||
|
"md5": "62c66b0a8f6f5a719a0aaca4883a7c36",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2033450826884044885&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "309",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/11/66/116684b02f3d231d430b275b354d5ce1.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "294",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/69/4e/694e2fb734c141e73d62f9c6352300a6.png",
|
||||||
|
"md5": "f2115a808c08ef59180478510a01c3f7",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "267",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/4e/05/4e05b16db7eb6b9d81781fdbd23cd6ad.png",
|
||||||
|
"md5": "2ae7d46ebacaab48df6f5aa75babe92f",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1338",
|
||||||
|
"id": "252",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/1b/f6/1bf61912e9c16e2af277f8d670823706.png",
|
||||||
|
"md5": "8cd844f9016978b4b693338abce3dc74",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "233",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/c2/f0/c2f0103a37b0a7d0fdc1d3196b2b7fb2.png",
|
||||||
|
"md5": "9d368a05400a1b7331b9facac7874798",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2662",
|
||||||
|
"id": "228",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/18/44/184490133e005e1a1bb04c9abac71c71.png",
|
||||||
|
"md5": "0a4f2e9fd3119e9eaf3d750b4cb522a9",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "45",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/85/fe/85fe5a907cfdc10f07adc46bdf6c01c3.png",
|
||||||
|
"md5": "dab43fe3ec3eb66d111dfb11045376a0",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "31",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-20T04:00:41.321+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "en-us",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/fd/aa/fdaa9e01b594fb986afc04cb515e5d7a.jpg",
|
||||||
|
"md5": "aa10738e1ad20f300dffb63c8879de27",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "323",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/55/0a/550a8080523e18bf8feb828b788a9ccb.jpg",
|
||||||
|
"md5": "62c66b0a8f6f5a719a0aaca4883a7c36",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2033450826884044885&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "309",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/11/66/116684b02f3d231d430b275b354d5ce1.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "294",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/69/4e/694e2fb734c141e73d62f9c6352300a6.png",
|
||||||
|
"md5": "f2115a808c08ef59180478510a01c3f7",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "267",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/4e/05/4e05b16db7eb6b9d81781fdbd23cd6ad.png",
|
||||||
|
"md5": "2ae7d46ebacaab48df6f5aa75babe92f",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1338",
|
||||||
|
"id": "252",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/1b/f6/1bf61912e9c16e2af277f8d670823706.png",
|
||||||
|
"md5": "8cd844f9016978b4b693338abce3dc74",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "233",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/c2/f0/c2f0103a37b0a7d0fdc1d3196b2b7fb2.png",
|
||||||
|
"md5": "9d368a05400a1b7331b9facac7874798",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2662",
|
||||||
|
"id": "228",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/18/44/184490133e005e1a1bb04c9abac71c71.png",
|
||||||
|
"md5": "0a4f2e9fd3119e9eaf3d750b4cb522a9",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "45",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/85/fe/85fe5a907cfdc10f07adc46bdf6c01c3.png",
|
||||||
|
"md5": "dab43fe3ec3eb66d111dfb11045376a0",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "31",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-21T11:01:26.069+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "en-us",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a2/a9/a2a96b532559113c500a1ca104fed3a9.png",
|
||||||
|
"md5": "1299751f214264c5413566c09ca5986d",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2029132713323603170&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Qingbo",
|
||||||
|
"id": "337",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/fd/aa/fdaa9e01b594fb986afc04cb515e5d7a.jpg",
|
||||||
|
"md5": "aa10738e1ad20f300dffb63c8879de27",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "323",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/55/0a/550a8080523e18bf8feb828b788a9ccb.jpg",
|
||||||
|
"md5": "62c66b0a8f6f5a719a0aaca4883a7c36",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2033450826884044885&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "309",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/11/66/116684b02f3d231d430b275b354d5ce1.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "294",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/69/4e/694e2fb734c141e73d62f9c6352300a6.png",
|
||||||
|
"md5": "f2115a808c08ef59180478510a01c3f7",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "267",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/4e/05/4e05b16db7eb6b9d81781fdbd23cd6ad.png",
|
||||||
|
"md5": "2ae7d46ebacaab48df6f5aa75babe92f",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1338",
|
||||||
|
"id": "252",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/1b/f6/1bf61912e9c16e2af277f8d670823706.png",
|
||||||
|
"md5": "8cd844f9016978b4b693338abce3dc74",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "233",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/c2/f0/c2f0103a37b0a7d0fdc1d3196b2b7fb2.png",
|
||||||
|
"md5": "9d368a05400a1b7331b9facac7874798",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2662",
|
||||||
|
"id": "228",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/18/44/184490133e005e1a1bb04c9abac71c71.png",
|
||||||
|
"md5": "0a4f2e9fd3119e9eaf3d750b4cb522a9",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "45",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/85/fe/85fe5a907cfdc10f07adc46bdf6c01c3.png",
|
||||||
|
"md5": "dab43fe3ec3eb66d111dfb11045376a0",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "31",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T04:00:38.054+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "en-us",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/9b/48/9b48ff955782a49b237c5bd8817339b5.jpg",
|
||||||
|
"md5": "34ef86b571c134d5c26eda763a1619af",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "351",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a2/a9/a2a96b532559113c500a1ca104fed3a9.png",
|
||||||
|
"md5": "1299751f214264c5413566c09ca5986d",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2029132713323603170&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Qingbo",
|
||||||
|
"id": "337",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/fd/aa/fdaa9e01b594fb986afc04cb515e5d7a.jpg",
|
||||||
|
"md5": "aa10738e1ad20f300dffb63c8879de27",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "323",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/55/0a/550a8080523e18bf8feb828b788a9ccb.jpg",
|
||||||
|
"md5": "62c66b0a8f6f5a719a0aaca4883a7c36",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2033450826884044885&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "309",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/11/66/116684b02f3d231d430b275b354d5ce1.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "294",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/69/4e/694e2fb734c141e73d62f9c6352300a6.png",
|
||||||
|
"md5": "f2115a808c08ef59180478510a01c3f7",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "267",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/1b/f6/1bf61912e9c16e2af277f8d670823706.png",
|
||||||
|
"md5": "8cd844f9016978b4b693338abce3dc74",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "233",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/c2/f0/c2f0103a37b0a7d0fdc1d3196b2b7fb2.png",
|
||||||
|
"md5": "9d368a05400a1b7331b9facac7874798",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2662",
|
||||||
|
"id": "228",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/18/44/184490133e005e1a1bb04c9abac71c71.png",
|
||||||
|
"md5": "0a4f2e9fd3119e9eaf3d750b4cb522a9",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "45",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/85/fe/85fe5a907cfdc10f07adc46bdf6c01c3.png",
|
||||||
|
"md5": "dab43fe3ec3eb66d111dfb11045376a0",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "31",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T16:00:41.969+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "en-us",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/9b/48/9b48ff955782a49b237c5bd8817339b5.jpg",
|
||||||
|
"md5": "34ef86b571c134d5c26eda763a1619af",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "351",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a2/a9/a2a96b532559113c500a1ca104fed3a9.png",
|
||||||
|
"md5": "1299751f214264c5413566c09ca5986d",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2029132713323603170&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Qingbo",
|
||||||
|
"id": "337",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/fd/aa/fdaa9e01b594fb986afc04cb515e5d7a.jpg",
|
||||||
|
"md5": "aa10738e1ad20f300dffb63c8879de27",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "323",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/11/66/116684b02f3d231d430b275b354d5ce1.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "294",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/69/4e/694e2fb734c141e73d62f9c6352300a6.png",
|
||||||
|
"md5": "f2115a808c08ef59180478510a01c3f7",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "267",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/1b/f6/1bf61912e9c16e2af277f8d670823706.png",
|
||||||
|
"md5": "8cd844f9016978b4b693338abce3dc74",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "233",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/c2/f0/c2f0103a37b0a7d0fdc1d3196b2b7fb2.png",
|
||||||
|
"md5": "9d368a05400a1b7331b9facac7874798",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2662",
|
||||||
|
"id": "228",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/18/44/184490133e005e1a1bb04c9abac71c71.png",
|
||||||
|
"md5": "0a4f2e9fd3119e9eaf3d750b4cb522a9",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "45",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/85/fe/85fe5a907cfdc10f07adc46bdf6c01c3.png",
|
||||||
|
"md5": "dab43fe3ec3eb66d111dfb11045376a0",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "31",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-31T15:00:45.146+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "en-us",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/9b/48/9b48ff955782a49b237c5bd8817339b5.jpg",
|
||||||
|
"md5": "34ef86b571c134d5c26eda763a1619af",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "351",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a2/a9/a2a96b532559113c500a1ca104fed3a9.png",
|
||||||
|
"md5": "1299751f214264c5413566c09ca5986d",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2029132713323603170&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Qingbo",
|
||||||
|
"id": "337",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/fd/aa/fdaa9e01b594fb986afc04cb515e5d7a.jpg",
|
||||||
|
"md5": "aa10738e1ad20f300dffb63c8879de27",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "323",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/11/66/116684b02f3d231d430b275b354d5ce1.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "294",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/69/4e/694e2fb734c141e73d62f9c6352300a6.png",
|
||||||
|
"md5": "f2115a808c08ef59180478510a01c3f7",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "267",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/c2/f0/c2f0103a37b0a7d0fdc1d3196b2b7fb2.png",
|
||||||
|
"md5": "9d368a05400a1b7331b9facac7874798",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2662",
|
||||||
|
"id": "228",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/18/44/184490133e005e1a1bb04c9abac71c71.png",
|
||||||
|
"md5": "0a4f2e9fd3119e9eaf3d750b4cb522a9",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "45",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/85/fe/85fe5a907cfdc10f07adc46bdf6c01c3.png",
|
||||||
|
"md5": "dab43fe3ec3eb66d111dfb11045376a0",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "31",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-01T15:00:47.690+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "en-us",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/9b/48/9b48ff955782a49b237c5bd8817339b5.jpg",
|
||||||
|
"md5": "34ef86b571c134d5c26eda763a1619af",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "351",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/fd/aa/fdaa9e01b594fb986afc04cb515e5d7a.jpg",
|
||||||
|
"md5": "aa10738e1ad20f300dffb63c8879de27",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "323",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/11/66/116684b02f3d231d430b275b354d5ce1.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "294",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/69/4e/694e2fb734c141e73d62f9c6352300a6.png",
|
||||||
|
"md5": "f2115a808c08ef59180478510a01c3f7",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "267",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/c2/f0/c2f0103a37b0a7d0fdc1d3196b2b7fb2.png",
|
||||||
|
"md5": "9d368a05400a1b7331b9facac7874798",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2662",
|
||||||
|
"id": "228",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/18/44/184490133e005e1a1bb04c9abac71c71.png",
|
||||||
|
"md5": "0a4f2e9fd3119e9eaf3d750b4cb522a9",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "45",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/85/fe/85fe5a907cfdc10f07adc46bdf6c01c3.png",
|
||||||
|
"md5": "dab43fe3ec3eb66d111dfb11045376a0",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "31",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-02T11:00:49.682+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "en-us",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/c9/48/c94841acfe61ceef3fa2b169a15839ff.png",
|
||||||
|
"md5": "2d6504047e2d9b60521585b0b7d382c4",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038589290462449304&hg_media=launcher&hg_link_campaign=banner&hg_link_name=wash",
|
||||||
|
"id": "379",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/9b/48/9b48ff955782a49b237c5bd8817339b5.jpg",
|
||||||
|
"md5": "34ef86b571c134d5c26eda763a1619af",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "351",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/fd/aa/fdaa9e01b594fb986afc04cb515e5d7a.jpg",
|
||||||
|
"md5": "aa10738e1ad20f300dffb63c8879de27",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "323",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/11/66/116684b02f3d231d430b275b354d5ce1.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "294",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/69/4e/694e2fb734c141e73d62f9c6352300a6.png",
|
||||||
|
"md5": "f2115a808c08ef59180478510a01c3f7",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "267",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/c2/f0/c2f0103a37b0a7d0fdc1d3196b2b7fb2.png",
|
||||||
|
"md5": "9d368a05400a1b7331b9facac7874798",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2662",
|
||||||
|
"id": "228",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/18/44/184490133e005e1a1bb04c9abac71c71.png",
|
||||||
|
"md5": "0a4f2e9fd3119e9eaf3d750b4cb522a9",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "45",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/85/fe/85fe5a907cfdc10f07adc46bdf6c01c3.png",
|
||||||
|
"md5": "dab43fe3ec3eb66d111dfb11045376a0",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "31",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-03T10:00:41.495+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "en-us",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/c9/48/c94841acfe61ceef3fa2b169a15839ff.png",
|
||||||
|
"md5": "2d6504047e2d9b60521585b0b7d382c4",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038589290462449304&hg_media=launcher&hg_link_campaign=banner&hg_link_name=wash",
|
||||||
|
"id": "379",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/58/b9/58b9c4c1e044cfc70221ba7e05a4fdbf.png",
|
||||||
|
"md5": "bb9c6e36e3441a120f6af336c647e9f4",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "365",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/9b/48/9b48ff955782a49b237c5bd8817339b5.jpg",
|
||||||
|
"md5": "34ef86b571c134d5c26eda763a1619af",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "351",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/fd/aa/fdaa9e01b594fb986afc04cb515e5d7a.jpg",
|
||||||
|
"md5": "aa10738e1ad20f300dffb63c8879de27",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "323",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/11/66/116684b02f3d231d430b275b354d5ce1.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "294",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/69/4e/694e2fb734c141e73d62f9c6352300a6.png",
|
||||||
|
"md5": "f2115a808c08ef59180478510a01c3f7",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "267",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/c2/f0/c2f0103a37b0a7d0fdc1d3196b2b7fb2.png",
|
||||||
|
"md5": "9d368a05400a1b7331b9facac7874798",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2662",
|
||||||
|
"id": "228",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/18/44/184490133e005e1a1bb04c9abac71c71.png",
|
||||||
|
"md5": "0a4f2e9fd3119e9eaf3d750b4cb522a9",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "45",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/85/fe/85fe5a907cfdc10f07adc46bdf6c01c3.png",
|
||||||
|
"md5": "dab43fe3ec3eb66d111dfb11045376a0",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "31",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-04T03:00:40.102+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "en-us",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/c9/48/c94841acfe61ceef3fa2b169a15839ff.png",
|
||||||
|
"md5": "2d6504047e2d9b60521585b0b7d382c4",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038589290462449304&hg_media=launcher&hg_link_campaign=banner&hg_link_name=wash",
|
||||||
|
"id": "379",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/54/d4/54d40a6d32d58df627e9c6574ac8184b.png",
|
||||||
|
"md5": "4f708e7f6741bbc72ead426d955ba1ef",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038548112145123394&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Rossi",
|
||||||
|
"id": "393",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/58/b9/58b9c4c1e044cfc70221ba7e05a4fdbf.png",
|
||||||
|
"md5": "bb9c6e36e3441a120f6af336c647e9f4",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "365",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/9b/48/9b48ff955782a49b237c5bd8817339b5.jpg",
|
||||||
|
"md5": "34ef86b571c134d5c26eda763a1619af",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "351",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/fd/aa/fdaa9e01b594fb986afc04cb515e5d7a.jpg",
|
||||||
|
"md5": "aa10738e1ad20f300dffb63c8879de27",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "323",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/11/66/116684b02f3d231d430b275b354d5ce1.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "294",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/69/4e/694e2fb734c141e73d62f9c6352300a6.png",
|
||||||
|
"md5": "f2115a808c08ef59180478510a01c3f7",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "267",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/c2/f0/c2f0103a37b0a7d0fdc1d3196b2b7fb2.png",
|
||||||
|
"md5": "9d368a05400a1b7331b9facac7874798",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2662",
|
||||||
|
"id": "228",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/18/44/184490133e005e1a1bb04c9abac71c71.png",
|
||||||
|
"md5": "0a4f2e9fd3119e9eaf3d750b4cb522a9",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "45",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/85/fe/85fe5a907cfdc10f07adc46bdf6c01c3.png",
|
||||||
|
"md5": "dab43fe3ec3eb66d111dfb11045376a0",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "31",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-04T06:15:33.120+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "en-us",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/d7/ac/d7ac43346a2e207395a432ad1c21fbf5.jpg",
|
||||||
|
"md5": "f2026357ebcb87e2a7e7dc4f47aacf90",
|
||||||
|
"jump_url": "https://x.com/akendfield/status/2040278188526280852?s=46",
|
||||||
|
"id": "406",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/c9/48/c94841acfe61ceef3fa2b169a15839ff.png",
|
||||||
|
"md5": "2d6504047e2d9b60521585b0b7d382c4",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038589290462449304&hg_media=launcher&hg_link_campaign=banner&hg_link_name=wash",
|
||||||
|
"id": "379",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/54/d4/54d40a6d32d58df627e9c6574ac8184b.png",
|
||||||
|
"md5": "4f708e7f6741bbc72ead426d955ba1ef",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038548112145123394&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Rossi",
|
||||||
|
"id": "393",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/58/b9/58b9c4c1e044cfc70221ba7e05a4fdbf.png",
|
||||||
|
"md5": "bb9c6e36e3441a120f6af336c647e9f4",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "365",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/9b/48/9b48ff955782a49b237c5bd8817339b5.jpg",
|
||||||
|
"md5": "34ef86b571c134d5c26eda763a1619af",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "351",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/fd/aa/fdaa9e01b594fb986afc04cb515e5d7a.jpg",
|
||||||
|
"md5": "aa10738e1ad20f300dffb63c8879de27",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "323",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/11/66/116684b02f3d231d430b275b354d5ce1.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "294",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/69/4e/694e2fb734c141e73d62f9c6352300a6.png",
|
||||||
|
"md5": "f2115a808c08ef59180478510a01c3f7",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "267",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/c2/f0/c2f0103a37b0a7d0fdc1d3196b2b7fb2.png",
|
||||||
|
"md5": "9d368a05400a1b7331b9facac7874798",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2662",
|
||||||
|
"id": "228",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/18/44/184490133e005e1a1bb04c9abac71c71.png",
|
||||||
|
"md5": "0a4f2e9fd3119e9eaf3d750b4cb522a9",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "45",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/85/fe/85fe5a907cfdc10f07adc46bdf6c01c3.png",
|
||||||
|
"md5": "dab43fe3ec3eb66d111dfb11045376a0",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "31",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-07T15:00:58.607+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "en-us",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/d7/ac/d7ac43346a2e207395a432ad1c21fbf5.jpg",
|
||||||
|
"md5": "f2026357ebcb87e2a7e7dc4f47aacf90",
|
||||||
|
"jump_url": "https://x.com/akendfield/status/2040278188526280852?s=46",
|
||||||
|
"id": "406",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/c9/48/c94841acfe61ceef3fa2b169a15839ff.png",
|
||||||
|
"md5": "2d6504047e2d9b60521585b0b7d382c4",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038589290462449304&hg_media=launcher&hg_link_campaign=banner&hg_link_name=wash",
|
||||||
|
"id": "379",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/54/d4/54d40a6d32d58df627e9c6574ac8184b.png",
|
||||||
|
"md5": "4f708e7f6741bbc72ead426d955ba1ef",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038548112145123394&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Rossi",
|
||||||
|
"id": "393",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/58/b9/58b9c4c1e044cfc70221ba7e05a4fdbf.png",
|
||||||
|
"md5": "bb9c6e36e3441a120f6af336c647e9f4",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "365",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/9b/48/9b48ff955782a49b237c5bd8817339b5.jpg",
|
||||||
|
"md5": "34ef86b571c134d5c26eda763a1619af",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "351",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/fd/aa/fdaa9e01b594fb986afc04cb515e5d7a.jpg",
|
||||||
|
"md5": "aa10738e1ad20f300dffb63c8879de27",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "323",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/69/4e/694e2fb734c141e73d62f9c6352300a6.png",
|
||||||
|
"md5": "f2115a808c08ef59180478510a01c3f7",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "267",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/c2/f0/c2f0103a37b0a7d0fdc1d3196b2b7fb2.png",
|
||||||
|
"md5": "9d368a05400a1b7331b9facac7874798",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2662",
|
||||||
|
"id": "228",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/18/44/184490133e005e1a1bb04c9abac71c71.png",
|
||||||
|
"md5": "0a4f2e9fd3119e9eaf3d750b4cb522a9",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "45",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/85/fe/85fe5a907cfdc10f07adc46bdf6c01c3.png",
|
||||||
|
"md5": "dab43fe3ec3eb66d111dfb11045376a0",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "31",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -11,24 +11,45 @@
|
|||||||
"data_version": "",
|
"data_version": "",
|
||||||
"banners": [
|
"banners": [
|
||||||
{
|
{
|
||||||
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/55/0a/550a8080523e18bf8feb828b788a9ccb.jpg",
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/d7/ac/d7ac43346a2e207395a432ad1c21fbf5.jpg",
|
||||||
"md5": "62c66b0a8f6f5a719a0aaca4883a7c36",
|
"md5": "f2026357ebcb87e2a7e7dc4f47aacf90",
|
||||||
"jump_url": "https://www.skport.com/article?id=2033450826884044885&hg_media=launcher&hg_link_campaign=banner",
|
"jump_url": "https://x.com/akendfield/status/2040278188526280852?s=46",
|
||||||
"id": "309",
|
"id": "406",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/11/66/116684b02f3d231d430b275b354d5ce1.png",
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/c9/48/c94841acfe61ceef3fa2b169a15839ff.png",
|
||||||
"md5": "891cc34565de3258110cb0d81a124750",
|
"md5": "2d6504047e2d9b60521585b0b7d382c4",
|
||||||
"jump_url": "https://store.gryphline.com/",
|
"jump_url": "https://www.skport.com/article?id=2038589290462449304&hg_media=launcher&hg_link_campaign=banner&hg_link_name=wash",
|
||||||
"id": "294",
|
"id": "379",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/48/d0/48d0b44ab8bb84f41cc6a5984c09a25d.png",
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/54/d4/54d40a6d32d58df627e9c6574ac8184b.png",
|
||||||
"md5": "c14ef68b956459bf39b52281025cfbbd",
|
"md5": "4f708e7f6741bbc72ead426d955ba1ef",
|
||||||
"jump_url": "https://www.skport.com/article?id=2028369049304242052&hg_media=launcher&hg_link_campaign=banner",
|
"jump_url": "https://www.skport.com/article?id=2038548112145123394&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Rossi",
|
||||||
"id": "281",
|
"id": "393",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/58/b9/58b9c4c1e044cfc70221ba7e05a4fdbf.png",
|
||||||
|
"md5": "bb9c6e36e3441a120f6af336c647e9f4",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "365",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/9b/48/9b48ff955782a49b237c5bd8817339b5.jpg",
|
||||||
|
"md5": "34ef86b571c134d5c26eda763a1619af",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "351",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/fd/aa/fdaa9e01b594fb986afc04cb515e5d7a.jpg",
|
||||||
|
"md5": "aa10738e1ad20f300dffb63c8879de27",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "323",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -38,20 +59,6 @@
|
|||||||
"id": "267",
|
"id": "267",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/4e/05/4e05b16db7eb6b9d81781fdbd23cd6ad.png",
|
|
||||||
"md5": "2ae7d46ebacaab48df6f5aa75babe92f",
|
|
||||||
"jump_url": "https://endfield.gryphline.com/news/1338",
|
|
||||||
"id": "252",
|
|
||||||
"need_token": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/1b/f6/1bf61912e9c16e2af277f8d670823706.png",
|
|
||||||
"md5": "8cd844f9016978b4b693338abce3dc74",
|
|
||||||
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
|
||||||
"id": "233",
|
|
||||||
"need_token": false
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/c2/f0/c2f0103a37b0a7d0fdc1d3196b2b7fb2.png",
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/c2/f0/c2f0103a37b0a7d0fdc1d3196b2b7fb2.png",
|
||||||
"md5": "9d368a05400a1b7331b9facac7874798",
|
"md5": "9d368a05400a1b7331b9facac7874798",
|
||||||
|
|||||||
@@ -325,5 +325,783 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-19T15:00:47.896+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "es-mx",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/96/76/96768369a94a2d19be46f06f29fe442b.jpg",
|
||||||
|
"md5": "637c9f7ee3ecb62e6a7f515285c1ad7c",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2033450826884044885&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "312",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/04/a1/04a13ab98585f37d37de7b296cf3a6a7.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "298",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/04/92/0492cddbdff8b581cc39f56832d74e5f.png",
|
||||||
|
"md5": "0b8aed6ecbc235a1f62e8576650936bf",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "270",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/c1/03/c10373d2a9ea3d6ad982f9fbaa8dd7a8.png",
|
||||||
|
"md5": "00ed192f7980cad40f97568a6b34ec1d",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1338",
|
||||||
|
"id": "255",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ce/e5/cee513ab85f6a0cb8c465352f8afaa26.png",
|
||||||
|
"md5": "52c30778b5a799804899bfb689c02ac1",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "236",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ca/cd/cacdb2eb0286c8936d0b35fd5b5637d4.png",
|
||||||
|
"md5": "2e4b2307a0da7fea6a4cf31a5b2e88f4",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "48",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/af/32/af3229a958339f478e62fdbb5cc9f7db.png",
|
||||||
|
"md5": "4c28f1ababc17d48e852c9c253ab3425",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "34",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-20T04:00:41.323+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "es-mx",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/fd/d3/fdd3f29ac226bfce8d1e1d9b70b4ad86.jpg",
|
||||||
|
"md5": "a6a9c3437f036d6902c06fc8c14aee37",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "326",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/96/76/96768369a94a2d19be46f06f29fe442b.jpg",
|
||||||
|
"md5": "637c9f7ee3ecb62e6a7f515285c1ad7c",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2033450826884044885&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "312",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/04/a1/04a13ab98585f37d37de7b296cf3a6a7.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "298",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/04/92/0492cddbdff8b581cc39f56832d74e5f.png",
|
||||||
|
"md5": "0b8aed6ecbc235a1f62e8576650936bf",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "270",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/c1/03/c10373d2a9ea3d6ad982f9fbaa8dd7a8.png",
|
||||||
|
"md5": "00ed192f7980cad40f97568a6b34ec1d",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1338",
|
||||||
|
"id": "255",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ce/e5/cee513ab85f6a0cb8c465352f8afaa26.png",
|
||||||
|
"md5": "52c30778b5a799804899bfb689c02ac1",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "236",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ca/cd/cacdb2eb0286c8936d0b35fd5b5637d4.png",
|
||||||
|
"md5": "2e4b2307a0da7fea6a4cf31a5b2e88f4",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "48",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/af/32/af3229a958339f478e62fdbb5cc9f7db.png",
|
||||||
|
"md5": "4c28f1ababc17d48e852c9c253ab3425",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "34",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-21T11:01:26.053+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "es-mx",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/c0/ee/c0ee90eadf4fb3cfb56234e9f108d3e0.png",
|
||||||
|
"md5": "f8f6d94287cb65d09f6808778da90049",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2029132713323603170&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Qingbo",
|
||||||
|
"id": "340",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/fd/d3/fdd3f29ac226bfce8d1e1d9b70b4ad86.jpg",
|
||||||
|
"md5": "a6a9c3437f036d6902c06fc8c14aee37",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "326",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/96/76/96768369a94a2d19be46f06f29fe442b.jpg",
|
||||||
|
"md5": "637c9f7ee3ecb62e6a7f515285c1ad7c",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2033450826884044885&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "312",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/04/a1/04a13ab98585f37d37de7b296cf3a6a7.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "298",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/04/92/0492cddbdff8b581cc39f56832d74e5f.png",
|
||||||
|
"md5": "0b8aed6ecbc235a1f62e8576650936bf",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "270",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/c1/03/c10373d2a9ea3d6ad982f9fbaa8dd7a8.png",
|
||||||
|
"md5": "00ed192f7980cad40f97568a6b34ec1d",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1338",
|
||||||
|
"id": "255",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ce/e5/cee513ab85f6a0cb8c465352f8afaa26.png",
|
||||||
|
"md5": "52c30778b5a799804899bfb689c02ac1",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "236",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ca/cd/cacdb2eb0286c8936d0b35fd5b5637d4.png",
|
||||||
|
"md5": "2e4b2307a0da7fea6a4cf31a5b2e88f4",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "48",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/af/32/af3229a958339f478e62fdbb5cc9f7db.png",
|
||||||
|
"md5": "4c28f1ababc17d48e852c9c253ab3425",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "34",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T04:00:38.052+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "es-mx",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a2/14/a214d3b3a5916bec8b0f33932e34e9a7.jpg",
|
||||||
|
"md5": "97db184801655feefcb8056e88db16d1",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "354",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/c0/ee/c0ee90eadf4fb3cfb56234e9f108d3e0.png",
|
||||||
|
"md5": "f8f6d94287cb65d09f6808778da90049",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2029132713323603170&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Qingbo",
|
||||||
|
"id": "340",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/fd/d3/fdd3f29ac226bfce8d1e1d9b70b4ad86.jpg",
|
||||||
|
"md5": "a6a9c3437f036d6902c06fc8c14aee37",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "326",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/96/76/96768369a94a2d19be46f06f29fe442b.jpg",
|
||||||
|
"md5": "637c9f7ee3ecb62e6a7f515285c1ad7c",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2033450826884044885&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "312",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/04/a1/04a13ab98585f37d37de7b296cf3a6a7.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "298",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/04/92/0492cddbdff8b581cc39f56832d74e5f.png",
|
||||||
|
"md5": "0b8aed6ecbc235a1f62e8576650936bf",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "270",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ce/e5/cee513ab85f6a0cb8c465352f8afaa26.png",
|
||||||
|
"md5": "52c30778b5a799804899bfb689c02ac1",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "236",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ca/cd/cacdb2eb0286c8936d0b35fd5b5637d4.png",
|
||||||
|
"md5": "2e4b2307a0da7fea6a4cf31a5b2e88f4",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "48",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/af/32/af3229a958339f478e62fdbb5cc9f7db.png",
|
||||||
|
"md5": "4c28f1ababc17d48e852c9c253ab3425",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "34",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T16:00:41.932+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "es-mx",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a2/14/a214d3b3a5916bec8b0f33932e34e9a7.jpg",
|
||||||
|
"md5": "97db184801655feefcb8056e88db16d1",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "354",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/c0/ee/c0ee90eadf4fb3cfb56234e9f108d3e0.png",
|
||||||
|
"md5": "f8f6d94287cb65d09f6808778da90049",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2029132713323603170&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Qingbo",
|
||||||
|
"id": "340",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/fd/d3/fdd3f29ac226bfce8d1e1d9b70b4ad86.jpg",
|
||||||
|
"md5": "a6a9c3437f036d6902c06fc8c14aee37",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "326",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/04/a1/04a13ab98585f37d37de7b296cf3a6a7.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "298",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/04/92/0492cddbdff8b581cc39f56832d74e5f.png",
|
||||||
|
"md5": "0b8aed6ecbc235a1f62e8576650936bf",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "270",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ce/e5/cee513ab85f6a0cb8c465352f8afaa26.png",
|
||||||
|
"md5": "52c30778b5a799804899bfb689c02ac1",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "236",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ca/cd/cacdb2eb0286c8936d0b35fd5b5637d4.png",
|
||||||
|
"md5": "2e4b2307a0da7fea6a4cf31a5b2e88f4",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "48",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/af/32/af3229a958339f478e62fdbb5cc9f7db.png",
|
||||||
|
"md5": "4c28f1ababc17d48e852c9c253ab3425",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "34",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-31T15:00:45.814+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "es-mx",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a2/14/a214d3b3a5916bec8b0f33932e34e9a7.jpg",
|
||||||
|
"md5": "97db184801655feefcb8056e88db16d1",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "354",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/c0/ee/c0ee90eadf4fb3cfb56234e9f108d3e0.png",
|
||||||
|
"md5": "f8f6d94287cb65d09f6808778da90049",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2029132713323603170&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Qingbo",
|
||||||
|
"id": "340",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/fd/d3/fdd3f29ac226bfce8d1e1d9b70b4ad86.jpg",
|
||||||
|
"md5": "a6a9c3437f036d6902c06fc8c14aee37",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "326",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/04/a1/04a13ab98585f37d37de7b296cf3a6a7.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "298",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/04/92/0492cddbdff8b581cc39f56832d74e5f.png",
|
||||||
|
"md5": "0b8aed6ecbc235a1f62e8576650936bf",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "270",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ca/cd/cacdb2eb0286c8936d0b35fd5b5637d4.png",
|
||||||
|
"md5": "2e4b2307a0da7fea6a4cf31a5b2e88f4",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "48",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/af/32/af3229a958339f478e62fdbb5cc9f7db.png",
|
||||||
|
"md5": "4c28f1ababc17d48e852c9c253ab3425",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "34",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-01T15:00:47.689+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "es-mx",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a2/14/a214d3b3a5916bec8b0f33932e34e9a7.jpg",
|
||||||
|
"md5": "97db184801655feefcb8056e88db16d1",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "354",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/fd/d3/fdd3f29ac226bfce8d1e1d9b70b4ad86.jpg",
|
||||||
|
"md5": "a6a9c3437f036d6902c06fc8c14aee37",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "326",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/04/a1/04a13ab98585f37d37de7b296cf3a6a7.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "298",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/04/92/0492cddbdff8b581cc39f56832d74e5f.png",
|
||||||
|
"md5": "0b8aed6ecbc235a1f62e8576650936bf",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "270",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ca/cd/cacdb2eb0286c8936d0b35fd5b5637d4.png",
|
||||||
|
"md5": "2e4b2307a0da7fea6a4cf31a5b2e88f4",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "48",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/af/32/af3229a958339f478e62fdbb5cc9f7db.png",
|
||||||
|
"md5": "4c28f1ababc17d48e852c9c253ab3425",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "34",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-02T11:00:49.703+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "es-mx",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/9d/7b/9d7b7ba2ad58bbfbbbf07e9ec2416d5f.png",
|
||||||
|
"md5": "cdc0f748f048097dbdec6cf260a4bb72",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038589290462449304&hg_media=launcher&hg_link_campaign=banner&hg_link_name=wash",
|
||||||
|
"id": "382",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a2/14/a214d3b3a5916bec8b0f33932e34e9a7.jpg",
|
||||||
|
"md5": "97db184801655feefcb8056e88db16d1",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "354",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/fd/d3/fdd3f29ac226bfce8d1e1d9b70b4ad86.jpg",
|
||||||
|
"md5": "a6a9c3437f036d6902c06fc8c14aee37",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "326",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/04/a1/04a13ab98585f37d37de7b296cf3a6a7.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "298",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/04/92/0492cddbdff8b581cc39f56832d74e5f.png",
|
||||||
|
"md5": "0b8aed6ecbc235a1f62e8576650936bf",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "270",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ca/cd/cacdb2eb0286c8936d0b35fd5b5637d4.png",
|
||||||
|
"md5": "2e4b2307a0da7fea6a4cf31a5b2e88f4",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "48",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/af/32/af3229a958339f478e62fdbb5cc9f7db.png",
|
||||||
|
"md5": "4c28f1ababc17d48e852c9c253ab3425",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "34",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-03T10:00:42.200+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "es-mx",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/9d/7b/9d7b7ba2ad58bbfbbbf07e9ec2416d5f.png",
|
||||||
|
"md5": "cdc0f748f048097dbdec6cf260a4bb72",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038589290462449304&hg_media=launcher&hg_link_campaign=banner&hg_link_name=wash",
|
||||||
|
"id": "382",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ff/93/ff933abf1b8ab591095e0ffd3ae14216.png",
|
||||||
|
"md5": "5e747ae8721e103217356bc546072780",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "368",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a2/14/a214d3b3a5916bec8b0f33932e34e9a7.jpg",
|
||||||
|
"md5": "97db184801655feefcb8056e88db16d1",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "354",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/fd/d3/fdd3f29ac226bfce8d1e1d9b70b4ad86.jpg",
|
||||||
|
"md5": "a6a9c3437f036d6902c06fc8c14aee37",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "326",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/04/a1/04a13ab98585f37d37de7b296cf3a6a7.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "298",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/04/92/0492cddbdff8b581cc39f56832d74e5f.png",
|
||||||
|
"md5": "0b8aed6ecbc235a1f62e8576650936bf",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "270",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ca/cd/cacdb2eb0286c8936d0b35fd5b5637d4.png",
|
||||||
|
"md5": "2e4b2307a0da7fea6a4cf31a5b2e88f4",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "48",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/af/32/af3229a958339f478e62fdbb5cc9f7db.png",
|
||||||
|
"md5": "4c28f1ababc17d48e852c9c253ab3425",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "34",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-04T03:00:40.084+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "es-mx",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/9d/7b/9d7b7ba2ad58bbfbbbf07e9ec2416d5f.png",
|
||||||
|
"md5": "cdc0f748f048097dbdec6cf260a4bb72",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038589290462449304&hg_media=launcher&hg_link_campaign=banner&hg_link_name=wash",
|
||||||
|
"id": "382",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a1/41/a1416fca82fbd291760ffeaafb34a7ae.png",
|
||||||
|
"md5": "506dacccced52238c9d5639e7104dc85",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038548112145123394&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Rossi",
|
||||||
|
"id": "396",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ff/93/ff933abf1b8ab591095e0ffd3ae14216.png",
|
||||||
|
"md5": "5e747ae8721e103217356bc546072780",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "368",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a2/14/a214d3b3a5916bec8b0f33932e34e9a7.jpg",
|
||||||
|
"md5": "97db184801655feefcb8056e88db16d1",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "354",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/fd/d3/fdd3f29ac226bfce8d1e1d9b70b4ad86.jpg",
|
||||||
|
"md5": "a6a9c3437f036d6902c06fc8c14aee37",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "326",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/04/a1/04a13ab98585f37d37de7b296cf3a6a7.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "298",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/04/92/0492cddbdff8b581cc39f56832d74e5f.png",
|
||||||
|
"md5": "0b8aed6ecbc235a1f62e8576650936bf",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "270",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ca/cd/cacdb2eb0286c8936d0b35fd5b5637d4.png",
|
||||||
|
"md5": "2e4b2307a0da7fea6a4cf31a5b2e88f4",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "48",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/af/32/af3229a958339f478e62fdbb5cc9f7db.png",
|
||||||
|
"md5": "4c28f1ababc17d48e852c9c253ab3425",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "34",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-07T15:00:57.907+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "es-mx",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/9d/7b/9d7b7ba2ad58bbfbbbf07e9ec2416d5f.png",
|
||||||
|
"md5": "cdc0f748f048097dbdec6cf260a4bb72",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038589290462449304&hg_media=launcher&hg_link_campaign=banner&hg_link_name=wash",
|
||||||
|
"id": "382",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a1/41/a1416fca82fbd291760ffeaafb34a7ae.png",
|
||||||
|
"md5": "506dacccced52238c9d5639e7104dc85",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038548112145123394&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Rossi",
|
||||||
|
"id": "396",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ff/93/ff933abf1b8ab591095e0ffd3ae14216.png",
|
||||||
|
"md5": "5e747ae8721e103217356bc546072780",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "368",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a2/14/a214d3b3a5916bec8b0f33932e34e9a7.jpg",
|
||||||
|
"md5": "97db184801655feefcb8056e88db16d1",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "354",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/fd/d3/fdd3f29ac226bfce8d1e1d9b70b4ad86.jpg",
|
||||||
|
"md5": "a6a9c3437f036d6902c06fc8c14aee37",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "326",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/04/92/0492cddbdff8b581cc39f56832d74e5f.png",
|
||||||
|
"md5": "0b8aed6ecbc235a1f62e8576650936bf",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "270",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ca/cd/cacdb2eb0286c8936d0b35fd5b5637d4.png",
|
||||||
|
"md5": "2e4b2307a0da7fea6a4cf31a5b2e88f4",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "48",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/af/32/af3229a958339f478e62fdbb5cc9f7db.png",
|
||||||
|
"md5": "4c28f1ababc17d48e852c9c253ab3425",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "34",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -11,24 +11,38 @@
|
|||||||
"data_version": "",
|
"data_version": "",
|
||||||
"banners": [
|
"banners": [
|
||||||
{
|
{
|
||||||
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/96/76/96768369a94a2d19be46f06f29fe442b.jpg",
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/9d/7b/9d7b7ba2ad58bbfbbbf07e9ec2416d5f.png",
|
||||||
"md5": "637c9f7ee3ecb62e6a7f515285c1ad7c",
|
"md5": "cdc0f748f048097dbdec6cf260a4bb72",
|
||||||
"jump_url": "https://www.skport.com/article?id=2033450826884044885&hg_media=launcher&hg_link_campaign=banner",
|
"jump_url": "https://www.skport.com/article?id=2038589290462449304&hg_media=launcher&hg_link_campaign=banner&hg_link_name=wash",
|
||||||
"id": "312",
|
"id": "382",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/04/a1/04a13ab98585f37d37de7b296cf3a6a7.png",
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a1/41/a1416fca82fbd291760ffeaafb34a7ae.png",
|
||||||
"md5": "891cc34565de3258110cb0d81a124750",
|
"md5": "506dacccced52238c9d5639e7104dc85",
|
||||||
"jump_url": "https://store.gryphline.com/",
|
"jump_url": "https://www.skport.com/article?id=2038548112145123394&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Rossi",
|
||||||
"id": "298",
|
"id": "396",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/16/91/16910bdb07eca7b78bda2e7f32e708f5.png",
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ff/93/ff933abf1b8ab591095e0ffd3ae14216.png",
|
||||||
"md5": "dd02ef10cbd19592048ce530b7841c58",
|
"md5": "5e747ae8721e103217356bc546072780",
|
||||||
"jump_url": "https://www.skport.com/article?id=2028369049304242052&hg_media=launcher&hg_link_campaign=banner",
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
"id": "284",
|
"id": "368",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a2/14/a214d3b3a5916bec8b0f33932e34e9a7.jpg",
|
||||||
|
"md5": "97db184801655feefcb8056e88db16d1",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "354",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/fd/d3/fdd3f29ac226bfce8d1e1d9b70b4ad86.jpg",
|
||||||
|
"md5": "a6a9c3437f036d6902c06fc8c14aee37",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "326",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -38,20 +52,6 @@
|
|||||||
"id": "270",
|
"id": "270",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/c1/03/c10373d2a9ea3d6ad982f9fbaa8dd7a8.png",
|
|
||||||
"md5": "00ed192f7980cad40f97568a6b34ec1d",
|
|
||||||
"jump_url": "https://endfield.gryphline.com/news/1338",
|
|
||||||
"id": "255",
|
|
||||||
"need_token": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ce/e5/cee513ab85f6a0cb8c465352f8afaa26.png",
|
|
||||||
"md5": "52c30778b5a799804899bfb689c02ac1",
|
|
||||||
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
|
||||||
"id": "236",
|
|
||||||
"need_token": false
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ca/cd/cacdb2eb0286c8936d0b35fd5b5637d4.png",
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ca/cd/cacdb2eb0286c8936d0b35fd5b5637d4.png",
|
||||||
"md5": "2e4b2307a0da7fea6a4cf31a5b2e88f4",
|
"md5": "2e4b2307a0da7fea6a4cf31a5b2e88f4",
|
||||||
|
|||||||
@@ -325,5 +325,783 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-19T15:00:47.511+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "fr-fr",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a1/21/a121e392e98f67023985b71f9b127b54.jpg",
|
||||||
|
"md5": "2484ef4a54d660746d6d124d4e430281",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2033450826884044885&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "315",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/2a/97/2a97a8658be1a93950d8001d8d1718f5.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "301",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/2a/bb/2abb692e3de3d2212d24419123b4a4c5.png",
|
||||||
|
"md5": "38eba4aaee8d63e152b35cd24da8d82d",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "274",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/49/2f/492f9a103a0e41341be0966a85ef69b8.png",
|
||||||
|
"md5": "7104f77e16f1c980f7948e005a42cee4",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1338",
|
||||||
|
"id": "258",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ff/5a/ff5a06f5a8673f4138c15a546ba3776d.png",
|
||||||
|
"md5": "70b1ace521fc1167d3d08bddd99c581d",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "239",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/bb/76/bb76386c0b874beb640d5e149c254bbb.png",
|
||||||
|
"md5": "9f36bb19427a1b7a49b53408c0d0296b",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "51",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/47/86/4786b471d2998a880a79f21451f190b7.png",
|
||||||
|
"md5": "e3dc9203aa21fb06591c6e054e9aeb9b",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "37",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-20T04:00:41.471+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "fr-fr",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/db/26/db26a93f22215ab1a52bfda75319b2ce.jpg",
|
||||||
|
"md5": "99579d3f2cc96048a27b4a7e27e8aaed",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "329",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a1/21/a121e392e98f67023985b71f9b127b54.jpg",
|
||||||
|
"md5": "2484ef4a54d660746d6d124d4e430281",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2033450826884044885&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "315",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/2a/97/2a97a8658be1a93950d8001d8d1718f5.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "301",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/2a/bb/2abb692e3de3d2212d24419123b4a4c5.png",
|
||||||
|
"md5": "38eba4aaee8d63e152b35cd24da8d82d",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "274",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/49/2f/492f9a103a0e41341be0966a85ef69b8.png",
|
||||||
|
"md5": "7104f77e16f1c980f7948e005a42cee4",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1338",
|
||||||
|
"id": "258",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ff/5a/ff5a06f5a8673f4138c15a546ba3776d.png",
|
||||||
|
"md5": "70b1ace521fc1167d3d08bddd99c581d",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "239",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/bb/76/bb76386c0b874beb640d5e149c254bbb.png",
|
||||||
|
"md5": "9f36bb19427a1b7a49b53408c0d0296b",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "51",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/47/86/4786b471d2998a880a79f21451f190b7.png",
|
||||||
|
"md5": "e3dc9203aa21fb06591c6e054e9aeb9b",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "37",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-21T11:01:26.315+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "fr-fr",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/84/da/84da677f430c3b7f857432aff820f946.png",
|
||||||
|
"md5": "58115a7ccef1f83517c7aff83bfb12e5",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2029132713323603170&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Qingbo",
|
||||||
|
"id": "343",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/db/26/db26a93f22215ab1a52bfda75319b2ce.jpg",
|
||||||
|
"md5": "99579d3f2cc96048a27b4a7e27e8aaed",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "329",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a1/21/a121e392e98f67023985b71f9b127b54.jpg",
|
||||||
|
"md5": "2484ef4a54d660746d6d124d4e430281",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2033450826884044885&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "315",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/2a/97/2a97a8658be1a93950d8001d8d1718f5.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "301",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/2a/bb/2abb692e3de3d2212d24419123b4a4c5.png",
|
||||||
|
"md5": "38eba4aaee8d63e152b35cd24da8d82d",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "274",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/49/2f/492f9a103a0e41341be0966a85ef69b8.png",
|
||||||
|
"md5": "7104f77e16f1c980f7948e005a42cee4",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1338",
|
||||||
|
"id": "258",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ff/5a/ff5a06f5a8673f4138c15a546ba3776d.png",
|
||||||
|
"md5": "70b1ace521fc1167d3d08bddd99c581d",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "239",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/bb/76/bb76386c0b874beb640d5e149c254bbb.png",
|
||||||
|
"md5": "9f36bb19427a1b7a49b53408c0d0296b",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "51",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/47/86/4786b471d2998a880a79f21451f190b7.png",
|
||||||
|
"md5": "e3dc9203aa21fb06591c6e054e9aeb9b",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "37",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T04:00:38.289+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "fr-fr",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/eb/99/eb9944883cb0615e8140860465cfc39e.jpg",
|
||||||
|
"md5": "2dd52769795f4d952aba9cf4f828ae51",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "357",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/84/da/84da677f430c3b7f857432aff820f946.png",
|
||||||
|
"md5": "58115a7ccef1f83517c7aff83bfb12e5",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2029132713323603170&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Qingbo",
|
||||||
|
"id": "343",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/db/26/db26a93f22215ab1a52bfda75319b2ce.jpg",
|
||||||
|
"md5": "99579d3f2cc96048a27b4a7e27e8aaed",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "329",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a1/21/a121e392e98f67023985b71f9b127b54.jpg",
|
||||||
|
"md5": "2484ef4a54d660746d6d124d4e430281",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2033450826884044885&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "315",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/2a/97/2a97a8658be1a93950d8001d8d1718f5.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "301",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/2a/bb/2abb692e3de3d2212d24419123b4a4c5.png",
|
||||||
|
"md5": "38eba4aaee8d63e152b35cd24da8d82d",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "274",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ff/5a/ff5a06f5a8673f4138c15a546ba3776d.png",
|
||||||
|
"md5": "70b1ace521fc1167d3d08bddd99c581d",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "239",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/bb/76/bb76386c0b874beb640d5e149c254bbb.png",
|
||||||
|
"md5": "9f36bb19427a1b7a49b53408c0d0296b",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "51",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/47/86/4786b471d2998a880a79f21451f190b7.png",
|
||||||
|
"md5": "e3dc9203aa21fb06591c6e054e9aeb9b",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "37",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T16:00:42.116+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "fr-fr",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/eb/99/eb9944883cb0615e8140860465cfc39e.jpg",
|
||||||
|
"md5": "2dd52769795f4d952aba9cf4f828ae51",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "357",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/84/da/84da677f430c3b7f857432aff820f946.png",
|
||||||
|
"md5": "58115a7ccef1f83517c7aff83bfb12e5",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2029132713323603170&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Qingbo",
|
||||||
|
"id": "343",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/db/26/db26a93f22215ab1a52bfda75319b2ce.jpg",
|
||||||
|
"md5": "99579d3f2cc96048a27b4a7e27e8aaed",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "329",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/2a/97/2a97a8658be1a93950d8001d8d1718f5.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "301",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/2a/bb/2abb692e3de3d2212d24419123b4a4c5.png",
|
||||||
|
"md5": "38eba4aaee8d63e152b35cd24da8d82d",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "274",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ff/5a/ff5a06f5a8673f4138c15a546ba3776d.png",
|
||||||
|
"md5": "70b1ace521fc1167d3d08bddd99c581d",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "239",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/bb/76/bb76386c0b874beb640d5e149c254bbb.png",
|
||||||
|
"md5": "9f36bb19427a1b7a49b53408c0d0296b",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "51",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/47/86/4786b471d2998a880a79f21451f190b7.png",
|
||||||
|
"md5": "e3dc9203aa21fb06591c6e054e9aeb9b",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "37",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-31T15:00:45.370+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "fr-fr",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/eb/99/eb9944883cb0615e8140860465cfc39e.jpg",
|
||||||
|
"md5": "2dd52769795f4d952aba9cf4f828ae51",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "357",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/84/da/84da677f430c3b7f857432aff820f946.png",
|
||||||
|
"md5": "58115a7ccef1f83517c7aff83bfb12e5",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2029132713323603170&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Qingbo",
|
||||||
|
"id": "343",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/db/26/db26a93f22215ab1a52bfda75319b2ce.jpg",
|
||||||
|
"md5": "99579d3f2cc96048a27b4a7e27e8aaed",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "329",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/2a/97/2a97a8658be1a93950d8001d8d1718f5.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "301",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/2a/bb/2abb692e3de3d2212d24419123b4a4c5.png",
|
||||||
|
"md5": "38eba4aaee8d63e152b35cd24da8d82d",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "274",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/bb/76/bb76386c0b874beb640d5e149c254bbb.png",
|
||||||
|
"md5": "9f36bb19427a1b7a49b53408c0d0296b",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "51",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/47/86/4786b471d2998a880a79f21451f190b7.png",
|
||||||
|
"md5": "e3dc9203aa21fb06591c6e054e9aeb9b",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "37",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-01T15:00:47.868+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "fr-fr",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/eb/99/eb9944883cb0615e8140860465cfc39e.jpg",
|
||||||
|
"md5": "2dd52769795f4d952aba9cf4f828ae51",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "357",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/db/26/db26a93f22215ab1a52bfda75319b2ce.jpg",
|
||||||
|
"md5": "99579d3f2cc96048a27b4a7e27e8aaed",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "329",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/2a/97/2a97a8658be1a93950d8001d8d1718f5.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "301",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/2a/bb/2abb692e3de3d2212d24419123b4a4c5.png",
|
||||||
|
"md5": "38eba4aaee8d63e152b35cd24da8d82d",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "274",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/bb/76/bb76386c0b874beb640d5e149c254bbb.png",
|
||||||
|
"md5": "9f36bb19427a1b7a49b53408c0d0296b",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "51",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/47/86/4786b471d2998a880a79f21451f190b7.png",
|
||||||
|
"md5": "e3dc9203aa21fb06591c6e054e9aeb9b",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "37",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-02T11:00:49.903+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "fr-fr",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/7b/ab/7bab1b26dad7e64bde10b7d385713c34.png",
|
||||||
|
"md5": "48132aaca88b4be843d94554dce098a1",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038589290462449304&hg_media=launcher&hg_link_campaign=banner&hg_link_name=wash",
|
||||||
|
"id": "385",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/eb/99/eb9944883cb0615e8140860465cfc39e.jpg",
|
||||||
|
"md5": "2dd52769795f4d952aba9cf4f828ae51",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "357",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/db/26/db26a93f22215ab1a52bfda75319b2ce.jpg",
|
||||||
|
"md5": "99579d3f2cc96048a27b4a7e27e8aaed",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "329",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/2a/97/2a97a8658be1a93950d8001d8d1718f5.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "301",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/2a/bb/2abb692e3de3d2212d24419123b4a4c5.png",
|
||||||
|
"md5": "38eba4aaee8d63e152b35cd24da8d82d",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "274",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/bb/76/bb76386c0b874beb640d5e149c254bbb.png",
|
||||||
|
"md5": "9f36bb19427a1b7a49b53408c0d0296b",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "51",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/47/86/4786b471d2998a880a79f21451f190b7.png",
|
||||||
|
"md5": "e3dc9203aa21fb06591c6e054e9aeb9b",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "37",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-03T10:00:41.718+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "fr-fr",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/7b/ab/7bab1b26dad7e64bde10b7d385713c34.png",
|
||||||
|
"md5": "48132aaca88b4be843d94554dce098a1",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038589290462449304&hg_media=launcher&hg_link_campaign=banner&hg_link_name=wash",
|
||||||
|
"id": "385",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/17/46/1746f324bbe883e52a7e0a68a09d89c2.png",
|
||||||
|
"md5": "10fcc1e55a3e7d3c760f50eea9fd1229",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "371",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/eb/99/eb9944883cb0615e8140860465cfc39e.jpg",
|
||||||
|
"md5": "2dd52769795f4d952aba9cf4f828ae51",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "357",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/db/26/db26a93f22215ab1a52bfda75319b2ce.jpg",
|
||||||
|
"md5": "99579d3f2cc96048a27b4a7e27e8aaed",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "329",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/2a/97/2a97a8658be1a93950d8001d8d1718f5.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "301",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/2a/bb/2abb692e3de3d2212d24419123b4a4c5.png",
|
||||||
|
"md5": "38eba4aaee8d63e152b35cd24da8d82d",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "274",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/bb/76/bb76386c0b874beb640d5e149c254bbb.png",
|
||||||
|
"md5": "9f36bb19427a1b7a49b53408c0d0296b",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "51",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/47/86/4786b471d2998a880a79f21451f190b7.png",
|
||||||
|
"md5": "e3dc9203aa21fb06591c6e054e9aeb9b",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "37",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-04T03:00:40.967+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "fr-fr",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/7b/ab/7bab1b26dad7e64bde10b7d385713c34.png",
|
||||||
|
"md5": "48132aaca88b4be843d94554dce098a1",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038589290462449304&hg_media=launcher&hg_link_campaign=banner&hg_link_name=wash",
|
||||||
|
"id": "385",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a5/8b/a58b71cea0fb2ec9a1ae2e025a11f266.png",
|
||||||
|
"md5": "79a88b3385efe66383b09c49cd7413f7",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038548112145123394&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Rossi",
|
||||||
|
"id": "399",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/17/46/1746f324bbe883e52a7e0a68a09d89c2.png",
|
||||||
|
"md5": "10fcc1e55a3e7d3c760f50eea9fd1229",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "371",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/eb/99/eb9944883cb0615e8140860465cfc39e.jpg",
|
||||||
|
"md5": "2dd52769795f4d952aba9cf4f828ae51",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "357",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/db/26/db26a93f22215ab1a52bfda75319b2ce.jpg",
|
||||||
|
"md5": "99579d3f2cc96048a27b4a7e27e8aaed",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "329",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/2a/97/2a97a8658be1a93950d8001d8d1718f5.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "301",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/2a/bb/2abb692e3de3d2212d24419123b4a4c5.png",
|
||||||
|
"md5": "38eba4aaee8d63e152b35cd24da8d82d",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "274",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/bb/76/bb76386c0b874beb640d5e149c254bbb.png",
|
||||||
|
"md5": "9f36bb19427a1b7a49b53408c0d0296b",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "51",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/47/86/4786b471d2998a880a79f21451f190b7.png",
|
||||||
|
"md5": "e3dc9203aa21fb06591c6e054e9aeb9b",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "37",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-07T15:00:58.173+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "fr-fr",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/7b/ab/7bab1b26dad7e64bde10b7d385713c34.png",
|
||||||
|
"md5": "48132aaca88b4be843d94554dce098a1",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038589290462449304&hg_media=launcher&hg_link_campaign=banner&hg_link_name=wash",
|
||||||
|
"id": "385",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a5/8b/a58b71cea0fb2ec9a1ae2e025a11f266.png",
|
||||||
|
"md5": "79a88b3385efe66383b09c49cd7413f7",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038548112145123394&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Rossi",
|
||||||
|
"id": "399",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/17/46/1746f324bbe883e52a7e0a68a09d89c2.png",
|
||||||
|
"md5": "10fcc1e55a3e7d3c760f50eea9fd1229",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "371",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/eb/99/eb9944883cb0615e8140860465cfc39e.jpg",
|
||||||
|
"md5": "2dd52769795f4d952aba9cf4f828ae51",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "357",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/db/26/db26a93f22215ab1a52bfda75319b2ce.jpg",
|
||||||
|
"md5": "99579d3f2cc96048a27b4a7e27e8aaed",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "329",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/2a/bb/2abb692e3de3d2212d24419123b4a4c5.png",
|
||||||
|
"md5": "38eba4aaee8d63e152b35cd24da8d82d",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "274",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/bb/76/bb76386c0b874beb640d5e149c254bbb.png",
|
||||||
|
"md5": "9f36bb19427a1b7a49b53408c0d0296b",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "51",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/47/86/4786b471d2998a880a79f21451f190b7.png",
|
||||||
|
"md5": "e3dc9203aa21fb06591c6e054e9aeb9b",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "37",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -11,24 +11,38 @@
|
|||||||
"data_version": "",
|
"data_version": "",
|
||||||
"banners": [
|
"banners": [
|
||||||
{
|
{
|
||||||
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a1/21/a121e392e98f67023985b71f9b127b54.jpg",
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/7b/ab/7bab1b26dad7e64bde10b7d385713c34.png",
|
||||||
"md5": "2484ef4a54d660746d6d124d4e430281",
|
"md5": "48132aaca88b4be843d94554dce098a1",
|
||||||
"jump_url": "https://www.skport.com/article?id=2033450826884044885&hg_media=launcher&hg_link_campaign=banner",
|
"jump_url": "https://www.skport.com/article?id=2038589290462449304&hg_media=launcher&hg_link_campaign=banner&hg_link_name=wash",
|
||||||
"id": "315",
|
"id": "385",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/2a/97/2a97a8658be1a93950d8001d8d1718f5.png",
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a5/8b/a58b71cea0fb2ec9a1ae2e025a11f266.png",
|
||||||
"md5": "891cc34565de3258110cb0d81a124750",
|
"md5": "79a88b3385efe66383b09c49cd7413f7",
|
||||||
"jump_url": "https://store.gryphline.com/",
|
"jump_url": "https://www.skport.com/article?id=2038548112145123394&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Rossi",
|
||||||
"id": "301",
|
"id": "399",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/16/bd/16bddfab949cad08a296bdc327ae9fa9.png",
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/17/46/1746f324bbe883e52a7e0a68a09d89c2.png",
|
||||||
"md5": "ae46921246cf87849fcbde73edecc4a1",
|
"md5": "10fcc1e55a3e7d3c760f50eea9fd1229",
|
||||||
"jump_url": "https://www.skport.com/article?id=2028369049304242052&hg_media=launcher&hg_link_campaign=banner",
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
"id": "287",
|
"id": "371",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/eb/99/eb9944883cb0615e8140860465cfc39e.jpg",
|
||||||
|
"md5": "2dd52769795f4d952aba9cf4f828ae51",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "357",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/db/26/db26a93f22215ab1a52bfda75319b2ce.jpg",
|
||||||
|
"md5": "99579d3f2cc96048a27b4a7e27e8aaed",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "329",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -38,20 +52,6 @@
|
|||||||
"id": "274",
|
"id": "274",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/49/2f/492f9a103a0e41341be0966a85ef69b8.png",
|
|
||||||
"md5": "7104f77e16f1c980f7948e005a42cee4",
|
|
||||||
"jump_url": "https://endfield.gryphline.com/news/1338",
|
|
||||||
"id": "258",
|
|
||||||
"need_token": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ff/5a/ff5a06f5a8673f4138c15a546ba3776d.png",
|
|
||||||
"md5": "70b1ace521fc1167d3d08bddd99c581d",
|
|
||||||
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
|
||||||
"id": "239",
|
|
||||||
"need_token": false
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/bb/76/bb76386c0b874beb640d5e149c254bbb.png",
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/bb/76/bb76386c0b874beb640d5e149c254bbb.png",
|
||||||
"md5": "9f36bb19427a1b7a49b53408c0d0296b",
|
"md5": "9f36bb19427a1b7a49b53408c0d0296b",
|
||||||
|
|||||||
@@ -325,5 +325,783 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-19T15:00:47.534+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "id-id",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a4/07/a407e1e32d2eb4eea48bc7028500230e.jpg",
|
||||||
|
"md5": "7b9a52242f61a6775227b83f31959daf",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2033450826884044885&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "317",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/af/c0/afc065d26ab8e0bb5f9ab8db6956cb8e.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "303",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a3/bd/a3bd1573d3c9f546df17cfedfb12a179.png",
|
||||||
|
"md5": "aa836f72405933a3ff18dcb003b96cc4",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "275",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ca/ea/caeaf1b7b8736b2f41727d976892c9de.png",
|
||||||
|
"md5": "52ec6177b19be727a21fb4e1ead60c84",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1338",
|
||||||
|
"id": "260",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ff/b7/ffb70cf2fa839f7b7e2a1944a81d7b0c.png",
|
||||||
|
"md5": "e3fc09c29db345bc587414f51bb1b66d",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "241",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/f5/da/f5da6be39e6378253999f04e4bd8eb62.png",
|
||||||
|
"md5": "f84c65b7d9a894e9b5dd1c99edf325b8",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "53",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/35/ac/35ac20cb09982a66b55e4d6ae0b014a0.png",
|
||||||
|
"md5": "8bf5ade1d8d9b9d52b54f4fea12f1e01",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "39",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-20T04:00:41.638+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "id-id",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/84/3c/843ca42ff629172ac79c7d429a2376f4.jpg",
|
||||||
|
"md5": "f5e3f75393361ec65317b059967dacd5",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "331",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a4/07/a407e1e32d2eb4eea48bc7028500230e.jpg",
|
||||||
|
"md5": "7b9a52242f61a6775227b83f31959daf",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2033450826884044885&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "317",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/af/c0/afc065d26ab8e0bb5f9ab8db6956cb8e.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "303",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a3/bd/a3bd1573d3c9f546df17cfedfb12a179.png",
|
||||||
|
"md5": "aa836f72405933a3ff18dcb003b96cc4",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "275",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ca/ea/caeaf1b7b8736b2f41727d976892c9de.png",
|
||||||
|
"md5": "52ec6177b19be727a21fb4e1ead60c84",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1338",
|
||||||
|
"id": "260",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ff/b7/ffb70cf2fa839f7b7e2a1944a81d7b0c.png",
|
||||||
|
"md5": "e3fc09c29db345bc587414f51bb1b66d",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "241",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/f5/da/f5da6be39e6378253999f04e4bd8eb62.png",
|
||||||
|
"md5": "f84c65b7d9a894e9b5dd1c99edf325b8",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "53",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/35/ac/35ac20cb09982a66b55e4d6ae0b014a0.png",
|
||||||
|
"md5": "8bf5ade1d8d9b9d52b54f4fea12f1e01",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "39",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-21T11:01:26.326+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "id-id",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/20/43/2043baac986b1ad988495ad56a707486.png",
|
||||||
|
"md5": "2066e8b320a6f7dd03aad0cbebfa2d77",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2029132713323603170&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Qingbo",
|
||||||
|
"id": "345",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/84/3c/843ca42ff629172ac79c7d429a2376f4.jpg",
|
||||||
|
"md5": "f5e3f75393361ec65317b059967dacd5",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "331",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a4/07/a407e1e32d2eb4eea48bc7028500230e.jpg",
|
||||||
|
"md5": "7b9a52242f61a6775227b83f31959daf",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2033450826884044885&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "317",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/af/c0/afc065d26ab8e0bb5f9ab8db6956cb8e.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "303",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a3/bd/a3bd1573d3c9f546df17cfedfb12a179.png",
|
||||||
|
"md5": "aa836f72405933a3ff18dcb003b96cc4",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "275",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ca/ea/caeaf1b7b8736b2f41727d976892c9de.png",
|
||||||
|
"md5": "52ec6177b19be727a21fb4e1ead60c84",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1338",
|
||||||
|
"id": "260",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ff/b7/ffb70cf2fa839f7b7e2a1944a81d7b0c.png",
|
||||||
|
"md5": "e3fc09c29db345bc587414f51bb1b66d",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "241",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/f5/da/f5da6be39e6378253999f04e4bd8eb62.png",
|
||||||
|
"md5": "f84c65b7d9a894e9b5dd1c99edf325b8",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "53",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/35/ac/35ac20cb09982a66b55e4d6ae0b014a0.png",
|
||||||
|
"md5": "8bf5ade1d8d9b9d52b54f4fea12f1e01",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "39",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T04:00:38.301+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "id-id",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a0/79/a079485eedf4863c6f3c187f8eb97474.jpg",
|
||||||
|
"md5": "2fe6e040baab8c9adc9d5aaae440b4e4",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "359",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/20/43/2043baac986b1ad988495ad56a707486.png",
|
||||||
|
"md5": "2066e8b320a6f7dd03aad0cbebfa2d77",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2029132713323603170&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Qingbo",
|
||||||
|
"id": "345",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/84/3c/843ca42ff629172ac79c7d429a2376f4.jpg",
|
||||||
|
"md5": "f5e3f75393361ec65317b059967dacd5",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "331",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a4/07/a407e1e32d2eb4eea48bc7028500230e.jpg",
|
||||||
|
"md5": "7b9a52242f61a6775227b83f31959daf",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2033450826884044885&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "317",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/af/c0/afc065d26ab8e0bb5f9ab8db6956cb8e.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "303",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a3/bd/a3bd1573d3c9f546df17cfedfb12a179.png",
|
||||||
|
"md5": "aa836f72405933a3ff18dcb003b96cc4",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "275",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ff/b7/ffb70cf2fa839f7b7e2a1944a81d7b0c.png",
|
||||||
|
"md5": "e3fc09c29db345bc587414f51bb1b66d",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "241",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/f5/da/f5da6be39e6378253999f04e4bd8eb62.png",
|
||||||
|
"md5": "f84c65b7d9a894e9b5dd1c99edf325b8",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "53",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/35/ac/35ac20cb09982a66b55e4d6ae0b014a0.png",
|
||||||
|
"md5": "8bf5ade1d8d9b9d52b54f4fea12f1e01",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "39",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T16:00:42.136+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "id-id",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a0/79/a079485eedf4863c6f3c187f8eb97474.jpg",
|
||||||
|
"md5": "2fe6e040baab8c9adc9d5aaae440b4e4",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "359",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/20/43/2043baac986b1ad988495ad56a707486.png",
|
||||||
|
"md5": "2066e8b320a6f7dd03aad0cbebfa2d77",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2029132713323603170&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Qingbo",
|
||||||
|
"id": "345",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/84/3c/843ca42ff629172ac79c7d429a2376f4.jpg",
|
||||||
|
"md5": "f5e3f75393361ec65317b059967dacd5",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "331",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/af/c0/afc065d26ab8e0bb5f9ab8db6956cb8e.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "303",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a3/bd/a3bd1573d3c9f546df17cfedfb12a179.png",
|
||||||
|
"md5": "aa836f72405933a3ff18dcb003b96cc4",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "275",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ff/b7/ffb70cf2fa839f7b7e2a1944a81d7b0c.png",
|
||||||
|
"md5": "e3fc09c29db345bc587414f51bb1b66d",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "241",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/f5/da/f5da6be39e6378253999f04e4bd8eb62.png",
|
||||||
|
"md5": "f84c65b7d9a894e9b5dd1c99edf325b8",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "53",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/35/ac/35ac20cb09982a66b55e4d6ae0b014a0.png",
|
||||||
|
"md5": "8bf5ade1d8d9b9d52b54f4fea12f1e01",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "39",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-31T15:00:45.371+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "id-id",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a0/79/a079485eedf4863c6f3c187f8eb97474.jpg",
|
||||||
|
"md5": "2fe6e040baab8c9adc9d5aaae440b4e4",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "359",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/20/43/2043baac986b1ad988495ad56a707486.png",
|
||||||
|
"md5": "2066e8b320a6f7dd03aad0cbebfa2d77",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2029132713323603170&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Qingbo",
|
||||||
|
"id": "345",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/84/3c/843ca42ff629172ac79c7d429a2376f4.jpg",
|
||||||
|
"md5": "f5e3f75393361ec65317b059967dacd5",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "331",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/af/c0/afc065d26ab8e0bb5f9ab8db6956cb8e.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "303",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a3/bd/a3bd1573d3c9f546df17cfedfb12a179.png",
|
||||||
|
"md5": "aa836f72405933a3ff18dcb003b96cc4",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "275",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/f5/da/f5da6be39e6378253999f04e4bd8eb62.png",
|
||||||
|
"md5": "f84c65b7d9a894e9b5dd1c99edf325b8",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "53",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/35/ac/35ac20cb09982a66b55e4d6ae0b014a0.png",
|
||||||
|
"md5": "8bf5ade1d8d9b9d52b54f4fea12f1e01",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "39",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-01T15:00:48.438+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "id-id",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a0/79/a079485eedf4863c6f3c187f8eb97474.jpg",
|
||||||
|
"md5": "2fe6e040baab8c9adc9d5aaae440b4e4",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "359",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/84/3c/843ca42ff629172ac79c7d429a2376f4.jpg",
|
||||||
|
"md5": "f5e3f75393361ec65317b059967dacd5",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "331",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/af/c0/afc065d26ab8e0bb5f9ab8db6956cb8e.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "303",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a3/bd/a3bd1573d3c9f546df17cfedfb12a179.png",
|
||||||
|
"md5": "aa836f72405933a3ff18dcb003b96cc4",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "275",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/f5/da/f5da6be39e6378253999f04e4bd8eb62.png",
|
||||||
|
"md5": "f84c65b7d9a894e9b5dd1c99edf325b8",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "53",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/35/ac/35ac20cb09982a66b55e4d6ae0b014a0.png",
|
||||||
|
"md5": "8bf5ade1d8d9b9d52b54f4fea12f1e01",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "39",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-02T11:00:49.946+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "id-id",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/9f/50/9f5092b9655d7aae1fa05a27018bccd3.png",
|
||||||
|
"md5": "ba71364fd495db8d3091897b147b4264",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038589290462449304&hg_media=launcher&hg_link_campaign=banner&hg_link_name=wash",
|
||||||
|
"id": "387",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a0/79/a079485eedf4863c6f3c187f8eb97474.jpg",
|
||||||
|
"md5": "2fe6e040baab8c9adc9d5aaae440b4e4",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "359",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/84/3c/843ca42ff629172ac79c7d429a2376f4.jpg",
|
||||||
|
"md5": "f5e3f75393361ec65317b059967dacd5",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "331",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/af/c0/afc065d26ab8e0bb5f9ab8db6956cb8e.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "303",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a3/bd/a3bd1573d3c9f546df17cfedfb12a179.png",
|
||||||
|
"md5": "aa836f72405933a3ff18dcb003b96cc4",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "275",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/f5/da/f5da6be39e6378253999f04e4bd8eb62.png",
|
||||||
|
"md5": "f84c65b7d9a894e9b5dd1c99edf325b8",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "53",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/35/ac/35ac20cb09982a66b55e4d6ae0b014a0.png",
|
||||||
|
"md5": "8bf5ade1d8d9b9d52b54f4fea12f1e01",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "39",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-03T10:00:41.776+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "id-id",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/9f/50/9f5092b9655d7aae1fa05a27018bccd3.png",
|
||||||
|
"md5": "ba71364fd495db8d3091897b147b4264",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038589290462449304&hg_media=launcher&hg_link_campaign=banner&hg_link_name=wash",
|
||||||
|
"id": "387",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/2d/bc/2dbc265714ab77b1392567467d229e4b.png",
|
||||||
|
"md5": "6bba8fbabe9c2728f1118683bdbe36b3",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "373",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a0/79/a079485eedf4863c6f3c187f8eb97474.jpg",
|
||||||
|
"md5": "2fe6e040baab8c9adc9d5aaae440b4e4",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "359",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/84/3c/843ca42ff629172ac79c7d429a2376f4.jpg",
|
||||||
|
"md5": "f5e3f75393361ec65317b059967dacd5",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "331",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/af/c0/afc065d26ab8e0bb5f9ab8db6956cb8e.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "303",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a3/bd/a3bd1573d3c9f546df17cfedfb12a179.png",
|
||||||
|
"md5": "aa836f72405933a3ff18dcb003b96cc4",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "275",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/f5/da/f5da6be39e6378253999f04e4bd8eb62.png",
|
||||||
|
"md5": "f84c65b7d9a894e9b5dd1c99edf325b8",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "53",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/35/ac/35ac20cb09982a66b55e4d6ae0b014a0.png",
|
||||||
|
"md5": "8bf5ade1d8d9b9d52b54f4fea12f1e01",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "39",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-04T03:00:40.299+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "id-id",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/9f/50/9f5092b9655d7aae1fa05a27018bccd3.png",
|
||||||
|
"md5": "ba71364fd495db8d3091897b147b4264",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038589290462449304&hg_media=launcher&hg_link_campaign=banner&hg_link_name=wash",
|
||||||
|
"id": "387",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/68/e8/68e87ae9bb6922aac78a6e514b8a386c.png",
|
||||||
|
"md5": "ac24126db2ba18e7607a23f5a2a6b352",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038548112145123394&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Rossi",
|
||||||
|
"id": "401",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/2d/bc/2dbc265714ab77b1392567467d229e4b.png",
|
||||||
|
"md5": "6bba8fbabe9c2728f1118683bdbe36b3",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "373",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a0/79/a079485eedf4863c6f3c187f8eb97474.jpg",
|
||||||
|
"md5": "2fe6e040baab8c9adc9d5aaae440b4e4",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "359",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/84/3c/843ca42ff629172ac79c7d429a2376f4.jpg",
|
||||||
|
"md5": "f5e3f75393361ec65317b059967dacd5",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "331",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/af/c0/afc065d26ab8e0bb5f9ab8db6956cb8e.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "303",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a3/bd/a3bd1573d3c9f546df17cfedfb12a179.png",
|
||||||
|
"md5": "aa836f72405933a3ff18dcb003b96cc4",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "275",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/f5/da/f5da6be39e6378253999f04e4bd8eb62.png",
|
||||||
|
"md5": "f84c65b7d9a894e9b5dd1c99edf325b8",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "53",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/35/ac/35ac20cb09982a66b55e4d6ae0b014a0.png",
|
||||||
|
"md5": "8bf5ade1d8d9b9d52b54f4fea12f1e01",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "39",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-07T15:00:58.187+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "id-id",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/9f/50/9f5092b9655d7aae1fa05a27018bccd3.png",
|
||||||
|
"md5": "ba71364fd495db8d3091897b147b4264",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038589290462449304&hg_media=launcher&hg_link_campaign=banner&hg_link_name=wash",
|
||||||
|
"id": "387",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/68/e8/68e87ae9bb6922aac78a6e514b8a386c.png",
|
||||||
|
"md5": "ac24126db2ba18e7607a23f5a2a6b352",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038548112145123394&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Rossi",
|
||||||
|
"id": "401",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/2d/bc/2dbc265714ab77b1392567467d229e4b.png",
|
||||||
|
"md5": "6bba8fbabe9c2728f1118683bdbe36b3",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "373",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a0/79/a079485eedf4863c6f3c187f8eb97474.jpg",
|
||||||
|
"md5": "2fe6e040baab8c9adc9d5aaae440b4e4",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "359",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/84/3c/843ca42ff629172ac79c7d429a2376f4.jpg",
|
||||||
|
"md5": "f5e3f75393361ec65317b059967dacd5",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "331",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a3/bd/a3bd1573d3c9f546df17cfedfb12a179.png",
|
||||||
|
"md5": "aa836f72405933a3ff18dcb003b96cc4",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "275",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/f5/da/f5da6be39e6378253999f04e4bd8eb62.png",
|
||||||
|
"md5": "f84c65b7d9a894e9b5dd1c99edf325b8",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "53",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/35/ac/35ac20cb09982a66b55e4d6ae0b014a0.png",
|
||||||
|
"md5": "8bf5ade1d8d9b9d52b54f4fea12f1e01",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "39",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -11,24 +11,38 @@
|
|||||||
"data_version": "",
|
"data_version": "",
|
||||||
"banners": [
|
"banners": [
|
||||||
{
|
{
|
||||||
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a4/07/a407e1e32d2eb4eea48bc7028500230e.jpg",
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/9f/50/9f5092b9655d7aae1fa05a27018bccd3.png",
|
||||||
"md5": "7b9a52242f61a6775227b83f31959daf",
|
"md5": "ba71364fd495db8d3091897b147b4264",
|
||||||
"jump_url": "https://www.skport.com/article?id=2033450826884044885&hg_media=launcher&hg_link_campaign=banner",
|
"jump_url": "https://www.skport.com/article?id=2038589290462449304&hg_media=launcher&hg_link_campaign=banner&hg_link_name=wash",
|
||||||
"id": "317",
|
"id": "387",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/af/c0/afc065d26ab8e0bb5f9ab8db6956cb8e.png",
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/68/e8/68e87ae9bb6922aac78a6e514b8a386c.png",
|
||||||
"md5": "891cc34565de3258110cb0d81a124750",
|
"md5": "ac24126db2ba18e7607a23f5a2a6b352",
|
||||||
"jump_url": "https://store.gryphline.com/",
|
"jump_url": "https://www.skport.com/article?id=2038548112145123394&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Rossi",
|
||||||
"id": "303",
|
"id": "401",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/20/93/209367cbc5ffdc21a6e1d7478208239e.png",
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/2d/bc/2dbc265714ab77b1392567467d229e4b.png",
|
||||||
"md5": "a70d4dff5ef72dcdddf4424b2452afa6",
|
"md5": "6bba8fbabe9c2728f1118683bdbe36b3",
|
||||||
"jump_url": "https://www.skport.com/article?id=2028369049304242052&hg_media=launcher&hg_link_campaign=banner",
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
"id": "289",
|
"id": "373",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a0/79/a079485eedf4863c6f3c187f8eb97474.jpg",
|
||||||
|
"md5": "2fe6e040baab8c9adc9d5aaae440b4e4",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "359",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/84/3c/843ca42ff629172ac79c7d429a2376f4.jpg",
|
||||||
|
"md5": "f5e3f75393361ec65317b059967dacd5",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "331",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -38,20 +52,6 @@
|
|||||||
"id": "275",
|
"id": "275",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ca/ea/caeaf1b7b8736b2f41727d976892c9de.png",
|
|
||||||
"md5": "52ec6177b19be727a21fb4e1ead60c84",
|
|
||||||
"jump_url": "https://endfield.gryphline.com/news/1338",
|
|
||||||
"id": "260",
|
|
||||||
"need_token": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ff/b7/ffb70cf2fa839f7b7e2a1944a81d7b0c.png",
|
|
||||||
"md5": "e3fc09c29db345bc587414f51bb1b66d",
|
|
||||||
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
|
||||||
"id": "241",
|
|
||||||
"need_token": false
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/f5/da/f5da6be39e6378253999f04e4bd8eb62.png",
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/f5/da/f5da6be39e6378253999f04e4bd8eb62.png",
|
||||||
"md5": "f84c65b7d9a894e9b5dd1c99edf325b8",
|
"md5": "f84c65b7d9a894e9b5dd1c99edf325b8",
|
||||||
|
|||||||
@@ -325,5 +325,783 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-19T15:00:47.557+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "it-it",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/3b/55/3b558477e617c2b9a954c619d9257d50.jpg",
|
||||||
|
"md5": "d22eda81bf7d3b866ff2239bbf2b464e",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2033450826884044885&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "320",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/e7/43/e743f237a4d60ad18d32df39eca13d22.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "306",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/16/74/1674eadb9e62a0204f9341a9b485d850.png",
|
||||||
|
"md5": "c2d9e4af327a93beadff0ab98259bfa8",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "278",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a3/49/a3496fadcf1da5f721dd8eeba39adab2.png",
|
||||||
|
"md5": "1e2e79397c73538f8ec068830dbdf418",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1338",
|
||||||
|
"id": "263",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/9a/80/9a801b991ddf9d555037461f7659ec64.png",
|
||||||
|
"md5": "55ff30d6b65c63d7c87429eb09495c4c",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "244",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a4/1e/a41ee462badb78f704ff8698842a7735.png",
|
||||||
|
"md5": "25d294f620ea565425ce7d74139a151c",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "56",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/12/27/1227d65fbd4d1c14dfdd1b7bf8d5c942.png",
|
||||||
|
"md5": "73647e72345993d06e61e3e244f99864",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "42",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-20T04:00:41.567+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "it-it",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/03/2a/032a95b74fea5820f787413463670be7.jpg",
|
||||||
|
"md5": "1e5da204494034244abbc57b7428b010",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "334",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/3b/55/3b558477e617c2b9a954c619d9257d50.jpg",
|
||||||
|
"md5": "d22eda81bf7d3b866ff2239bbf2b464e",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2033450826884044885&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "320",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/e7/43/e743f237a4d60ad18d32df39eca13d22.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "306",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/16/74/1674eadb9e62a0204f9341a9b485d850.png",
|
||||||
|
"md5": "c2d9e4af327a93beadff0ab98259bfa8",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "278",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a3/49/a3496fadcf1da5f721dd8eeba39adab2.png",
|
||||||
|
"md5": "1e2e79397c73538f8ec068830dbdf418",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1338",
|
||||||
|
"id": "263",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/9a/80/9a801b991ddf9d555037461f7659ec64.png",
|
||||||
|
"md5": "55ff30d6b65c63d7c87429eb09495c4c",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "244",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a4/1e/a41ee462badb78f704ff8698842a7735.png",
|
||||||
|
"md5": "25d294f620ea565425ce7d74139a151c",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "56",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/12/27/1227d65fbd4d1c14dfdd1b7bf8d5c942.png",
|
||||||
|
"md5": "73647e72345993d06e61e3e244f99864",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "42",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-21T11:01:26.316+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "it-it",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/43/ff/43fff8f23b7709219bc0dff650438757.png",
|
||||||
|
"md5": "e0a6d184d2e67bccc271aba7262436bc",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2029132713323603170&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Qingbo",
|
||||||
|
"id": "348",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/03/2a/032a95b74fea5820f787413463670be7.jpg",
|
||||||
|
"md5": "1e5da204494034244abbc57b7428b010",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "334",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/3b/55/3b558477e617c2b9a954c619d9257d50.jpg",
|
||||||
|
"md5": "d22eda81bf7d3b866ff2239bbf2b464e",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2033450826884044885&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "320",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/e7/43/e743f237a4d60ad18d32df39eca13d22.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "306",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/16/74/1674eadb9e62a0204f9341a9b485d850.png",
|
||||||
|
"md5": "c2d9e4af327a93beadff0ab98259bfa8",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "278",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a3/49/a3496fadcf1da5f721dd8eeba39adab2.png",
|
||||||
|
"md5": "1e2e79397c73538f8ec068830dbdf418",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1338",
|
||||||
|
"id": "263",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/9a/80/9a801b991ddf9d555037461f7659ec64.png",
|
||||||
|
"md5": "55ff30d6b65c63d7c87429eb09495c4c",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "244",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a4/1e/a41ee462badb78f704ff8698842a7735.png",
|
||||||
|
"md5": "25d294f620ea565425ce7d74139a151c",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "56",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/12/27/1227d65fbd4d1c14dfdd1b7bf8d5c942.png",
|
||||||
|
"md5": "73647e72345993d06e61e3e244f99864",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "42",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T04:00:38.330+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "it-it",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/3e/eb/3eebe43db24cd3ef9b839e2af7c9fd4c.jpg",
|
||||||
|
"md5": "e74a9e602028bb25c89380e1879fd991",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "362",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/43/ff/43fff8f23b7709219bc0dff650438757.png",
|
||||||
|
"md5": "e0a6d184d2e67bccc271aba7262436bc",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2029132713323603170&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Qingbo",
|
||||||
|
"id": "348",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/03/2a/032a95b74fea5820f787413463670be7.jpg",
|
||||||
|
"md5": "1e5da204494034244abbc57b7428b010",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "334",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/3b/55/3b558477e617c2b9a954c619d9257d50.jpg",
|
||||||
|
"md5": "d22eda81bf7d3b866ff2239bbf2b464e",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2033450826884044885&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "320",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/e7/43/e743f237a4d60ad18d32df39eca13d22.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "306",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/16/74/1674eadb9e62a0204f9341a9b485d850.png",
|
||||||
|
"md5": "c2d9e4af327a93beadff0ab98259bfa8",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "278",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/9a/80/9a801b991ddf9d555037461f7659ec64.png",
|
||||||
|
"md5": "55ff30d6b65c63d7c87429eb09495c4c",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "244",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a4/1e/a41ee462badb78f704ff8698842a7735.png",
|
||||||
|
"md5": "25d294f620ea565425ce7d74139a151c",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "56",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/12/27/1227d65fbd4d1c14dfdd1b7bf8d5c942.png",
|
||||||
|
"md5": "73647e72345993d06e61e3e244f99864",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "42",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T16:00:42.820+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "it-it",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/3e/eb/3eebe43db24cd3ef9b839e2af7c9fd4c.jpg",
|
||||||
|
"md5": "e74a9e602028bb25c89380e1879fd991",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "362",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/43/ff/43fff8f23b7709219bc0dff650438757.png",
|
||||||
|
"md5": "e0a6d184d2e67bccc271aba7262436bc",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2029132713323603170&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Qingbo",
|
||||||
|
"id": "348",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/03/2a/032a95b74fea5820f787413463670be7.jpg",
|
||||||
|
"md5": "1e5da204494034244abbc57b7428b010",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "334",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/e7/43/e743f237a4d60ad18d32df39eca13d22.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "306",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/16/74/1674eadb9e62a0204f9341a9b485d850.png",
|
||||||
|
"md5": "c2d9e4af327a93beadff0ab98259bfa8",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "278",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/9a/80/9a801b991ddf9d555037461f7659ec64.png",
|
||||||
|
"md5": "55ff30d6b65c63d7c87429eb09495c4c",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "244",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a4/1e/a41ee462badb78f704ff8698842a7735.png",
|
||||||
|
"md5": "25d294f620ea565425ce7d74139a151c",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "56",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/12/27/1227d65fbd4d1c14dfdd1b7bf8d5c942.png",
|
||||||
|
"md5": "73647e72345993d06e61e3e244f99864",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "42",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-31T15:00:45.405+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "it-it",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/3e/eb/3eebe43db24cd3ef9b839e2af7c9fd4c.jpg",
|
||||||
|
"md5": "e74a9e602028bb25c89380e1879fd991",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "362",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/43/ff/43fff8f23b7709219bc0dff650438757.png",
|
||||||
|
"md5": "e0a6d184d2e67bccc271aba7262436bc",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2029132713323603170&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Qingbo",
|
||||||
|
"id": "348",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/03/2a/032a95b74fea5820f787413463670be7.jpg",
|
||||||
|
"md5": "1e5da204494034244abbc57b7428b010",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "334",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/e7/43/e743f237a4d60ad18d32df39eca13d22.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "306",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/16/74/1674eadb9e62a0204f9341a9b485d850.png",
|
||||||
|
"md5": "c2d9e4af327a93beadff0ab98259bfa8",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "278",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a4/1e/a41ee462badb78f704ff8698842a7735.png",
|
||||||
|
"md5": "25d294f620ea565425ce7d74139a151c",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "56",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/12/27/1227d65fbd4d1c14dfdd1b7bf8d5c942.png",
|
||||||
|
"md5": "73647e72345993d06e61e3e244f99864",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "42",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-01T15:00:47.893+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "it-it",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/3e/eb/3eebe43db24cd3ef9b839e2af7c9fd4c.jpg",
|
||||||
|
"md5": "e74a9e602028bb25c89380e1879fd991",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "362",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/03/2a/032a95b74fea5820f787413463670be7.jpg",
|
||||||
|
"md5": "1e5da204494034244abbc57b7428b010",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "334",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/e7/43/e743f237a4d60ad18d32df39eca13d22.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "306",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/16/74/1674eadb9e62a0204f9341a9b485d850.png",
|
||||||
|
"md5": "c2d9e4af327a93beadff0ab98259bfa8",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "278",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a4/1e/a41ee462badb78f704ff8698842a7735.png",
|
||||||
|
"md5": "25d294f620ea565425ce7d74139a151c",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "56",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/12/27/1227d65fbd4d1c14dfdd1b7bf8d5c942.png",
|
||||||
|
"md5": "73647e72345993d06e61e3e244f99864",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "42",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-02T11:00:49.960+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "it-it",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/64/c7/64c7168cb6f7f23037c3ae8dc43da490.png",
|
||||||
|
"md5": "801726de8f397fdf8c91845dde7ceac2",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038589290462449304&hg_media=launcher&hg_link_campaign=banner&hg_link_name=wash",
|
||||||
|
"id": "390",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/3e/eb/3eebe43db24cd3ef9b839e2af7c9fd4c.jpg",
|
||||||
|
"md5": "e74a9e602028bb25c89380e1879fd991",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "362",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/03/2a/032a95b74fea5820f787413463670be7.jpg",
|
||||||
|
"md5": "1e5da204494034244abbc57b7428b010",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "334",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/e7/43/e743f237a4d60ad18d32df39eca13d22.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "306",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/16/74/1674eadb9e62a0204f9341a9b485d850.png",
|
||||||
|
"md5": "c2d9e4af327a93beadff0ab98259bfa8",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "278",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a4/1e/a41ee462badb78f704ff8698842a7735.png",
|
||||||
|
"md5": "25d294f620ea565425ce7d74139a151c",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "56",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/12/27/1227d65fbd4d1c14dfdd1b7bf8d5c942.png",
|
||||||
|
"md5": "73647e72345993d06e61e3e244f99864",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "42",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-03T10:00:41.970+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "it-it",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/64/c7/64c7168cb6f7f23037c3ae8dc43da490.png",
|
||||||
|
"md5": "801726de8f397fdf8c91845dde7ceac2",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038589290462449304&hg_media=launcher&hg_link_campaign=banner&hg_link_name=wash",
|
||||||
|
"id": "390",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/67/45/6745bae2c6539955289e4c93cc95b1b5.png",
|
||||||
|
"md5": "1e9b242b03b0bba68855c721870bfb9f",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "376",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/3e/eb/3eebe43db24cd3ef9b839e2af7c9fd4c.jpg",
|
||||||
|
"md5": "e74a9e602028bb25c89380e1879fd991",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "362",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/03/2a/032a95b74fea5820f787413463670be7.jpg",
|
||||||
|
"md5": "1e5da204494034244abbc57b7428b010",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "334",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/e7/43/e743f237a4d60ad18d32df39eca13d22.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "306",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/16/74/1674eadb9e62a0204f9341a9b485d850.png",
|
||||||
|
"md5": "c2d9e4af327a93beadff0ab98259bfa8",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "278",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a4/1e/a41ee462badb78f704ff8698842a7735.png",
|
||||||
|
"md5": "25d294f620ea565425ce7d74139a151c",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "56",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/12/27/1227d65fbd4d1c14dfdd1b7bf8d5c942.png",
|
||||||
|
"md5": "73647e72345993d06e61e3e244f99864",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "42",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-04T03:00:40.345+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "it-it",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/64/c7/64c7168cb6f7f23037c3ae8dc43da490.png",
|
||||||
|
"md5": "801726de8f397fdf8c91845dde7ceac2",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038589290462449304&hg_media=launcher&hg_link_campaign=banner&hg_link_name=wash",
|
||||||
|
"id": "390",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/8f/12/8f12f9f1d150d23706c981d5e14ae074.png",
|
||||||
|
"md5": "c2bb51ba1a9c2d879223fd80cdf62879",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038548112145123394&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Rossi",
|
||||||
|
"id": "404",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/67/45/6745bae2c6539955289e4c93cc95b1b5.png",
|
||||||
|
"md5": "1e9b242b03b0bba68855c721870bfb9f",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "376",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/3e/eb/3eebe43db24cd3ef9b839e2af7c9fd4c.jpg",
|
||||||
|
"md5": "e74a9e602028bb25c89380e1879fd991",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "362",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/03/2a/032a95b74fea5820f787413463670be7.jpg",
|
||||||
|
"md5": "1e5da204494034244abbc57b7428b010",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "334",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/e7/43/e743f237a4d60ad18d32df39eca13d22.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "306",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/16/74/1674eadb9e62a0204f9341a9b485d850.png",
|
||||||
|
"md5": "c2d9e4af327a93beadff0ab98259bfa8",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "278",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a4/1e/a41ee462badb78f704ff8698842a7735.png",
|
||||||
|
"md5": "25d294f620ea565425ce7d74139a151c",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "56",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/12/27/1227d65fbd4d1c14dfdd1b7bf8d5c942.png",
|
||||||
|
"md5": "73647e72345993d06e61e3e244f99864",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "42",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-07T15:00:58.436+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "it-it",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/64/c7/64c7168cb6f7f23037c3ae8dc43da490.png",
|
||||||
|
"md5": "801726de8f397fdf8c91845dde7ceac2",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038589290462449304&hg_media=launcher&hg_link_campaign=banner&hg_link_name=wash",
|
||||||
|
"id": "390",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/8f/12/8f12f9f1d150d23706c981d5e14ae074.png",
|
||||||
|
"md5": "c2bb51ba1a9c2d879223fd80cdf62879",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038548112145123394&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Rossi",
|
||||||
|
"id": "404",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/67/45/6745bae2c6539955289e4c93cc95b1b5.png",
|
||||||
|
"md5": "1e9b242b03b0bba68855c721870bfb9f",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "376",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/3e/eb/3eebe43db24cd3ef9b839e2af7c9fd4c.jpg",
|
||||||
|
"md5": "e74a9e602028bb25c89380e1879fd991",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "362",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/03/2a/032a95b74fea5820f787413463670be7.jpg",
|
||||||
|
"md5": "1e5da204494034244abbc57b7428b010",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "334",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/16/74/1674eadb9e62a0204f9341a9b485d850.png",
|
||||||
|
"md5": "c2d9e4af327a93beadff0ab98259bfa8",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "278",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a4/1e/a41ee462badb78f704ff8698842a7735.png",
|
||||||
|
"md5": "25d294f620ea565425ce7d74139a151c",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "56",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/12/27/1227d65fbd4d1c14dfdd1b7bf8d5c942.png",
|
||||||
|
"md5": "73647e72345993d06e61e3e244f99864",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "42",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -11,24 +11,38 @@
|
|||||||
"data_version": "",
|
"data_version": "",
|
||||||
"banners": [
|
"banners": [
|
||||||
{
|
{
|
||||||
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/3b/55/3b558477e617c2b9a954c619d9257d50.jpg",
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/64/c7/64c7168cb6f7f23037c3ae8dc43da490.png",
|
||||||
"md5": "d22eda81bf7d3b866ff2239bbf2b464e",
|
"md5": "801726de8f397fdf8c91845dde7ceac2",
|
||||||
"jump_url": "https://www.skport.com/article?id=2033450826884044885&hg_media=launcher&hg_link_campaign=banner",
|
"jump_url": "https://www.skport.com/article?id=2038589290462449304&hg_media=launcher&hg_link_campaign=banner&hg_link_name=wash",
|
||||||
"id": "320",
|
"id": "390",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/e7/43/e743f237a4d60ad18d32df39eca13d22.png",
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/8f/12/8f12f9f1d150d23706c981d5e14ae074.png",
|
||||||
"md5": "891cc34565de3258110cb0d81a124750",
|
"md5": "c2bb51ba1a9c2d879223fd80cdf62879",
|
||||||
"jump_url": "https://store.gryphline.com/",
|
"jump_url": "https://www.skport.com/article?id=2038548112145123394&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Rossi",
|
||||||
"id": "306",
|
"id": "404",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/52/56/525677ff47d85dc577fab51277e39640.png",
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/67/45/6745bae2c6539955289e4c93cc95b1b5.png",
|
||||||
"md5": "3d46c6f10ffdedee910771fe3c151ac1",
|
"md5": "1e9b242b03b0bba68855c721870bfb9f",
|
||||||
"jump_url": "https://www.skport.com/article?id=2028369049304242052&hg_media=launcher&hg_link_campaign=banner",
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
"id": "292",
|
"id": "376",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/3e/eb/3eebe43db24cd3ef9b839e2af7c9fd4c.jpg",
|
||||||
|
"md5": "e74a9e602028bb25c89380e1879fd991",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "362",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/03/2a/032a95b74fea5820f787413463670be7.jpg",
|
||||||
|
"md5": "1e5da204494034244abbc57b7428b010",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "334",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -38,20 +52,6 @@
|
|||||||
"id": "278",
|
"id": "278",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a3/49/a3496fadcf1da5f721dd8eeba39adab2.png",
|
|
||||||
"md5": "1e2e79397c73538f8ec068830dbdf418",
|
|
||||||
"jump_url": "https://endfield.gryphline.com/news/1338",
|
|
||||||
"id": "263",
|
|
||||||
"need_token": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/9a/80/9a801b991ddf9d555037461f7659ec64.png",
|
|
||||||
"md5": "55ff30d6b65c63d7c87429eb09495c4c",
|
|
||||||
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
|
||||||
"id": "244",
|
|
||||||
"need_token": false
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a4/1e/a41ee462badb78f704ff8698842a7735.png",
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a4/1e/a41ee462badb78f704ff8698842a7735.png",
|
||||||
"md5": "25d294f620ea565425ce7d74139a151c",
|
"md5": "25d294f620ea565425ce7d74139a151c",
|
||||||
|
|||||||
@@ -418,5 +418,960 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-19T15:00:47.739+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "ja-jp",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ca/98/ca98ac8aca7794cce22886f048641ee6.jpg",
|
||||||
|
"md5": "760e7d07aef6fef451dd5f179d80e21a",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2033450826884044885&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "310",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/86/39/8639e8e62022366a440544f41fd8ff8d.png",
|
||||||
|
"md5": "a204db9eef507b006a5a5d444b574b0f",
|
||||||
|
"jump_url": "https://store.gryphline.com/ja",
|
||||||
|
"id": "295",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ee/40/ee40feeba4b18bde855d9f0f5c8098ab.png",
|
||||||
|
"md5": "12cd4fb5d2dcee2891bd504f4dde85cf",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "268",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/77/85/7785fccd8aa16c1efe77e2ba2ec2f0b5.png",
|
||||||
|
"md5": "6f2c53ee1eb8be295d8ace887bca4983",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1338",
|
||||||
|
"id": "253",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/87/31/87317ac7c02255ee5c7a93c18f4acf56.png",
|
||||||
|
"md5": "71e0eab5ccca748c67c409fb491fc077",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "234",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/90/f9/90f98b009057d10fbe9c470362964f5f.png",
|
||||||
|
"md5": "bf285eff24f25be6e0020fd18276d971",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2662",
|
||||||
|
"id": "229",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/e8/e2/e8e296371815eb7de0123b6bdbf3c400.png",
|
||||||
|
"md5": "a58874d82a940ef3899f28a17dc3a0e4",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "46",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/7d/27/7d2716788b2f66ab62d21e3b16b18fee.png",
|
||||||
|
"md5": "dd2f682917b68975cb1c487e548a7297",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/ja-jp/news/4499",
|
||||||
|
"id": "32",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-20T04:00:41.743+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "ja-jp",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/7d/9b/7d9b99463921eb40ef4a6ef1278138b1.jpg",
|
||||||
|
"md5": "6062fbdd5e4a1172295d1033892fd03f",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "324",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ca/98/ca98ac8aca7794cce22886f048641ee6.jpg",
|
||||||
|
"md5": "760e7d07aef6fef451dd5f179d80e21a",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2033450826884044885&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "310",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/86/39/8639e8e62022366a440544f41fd8ff8d.png",
|
||||||
|
"md5": "a204db9eef507b006a5a5d444b574b0f",
|
||||||
|
"jump_url": "https://store.gryphline.com/ja",
|
||||||
|
"id": "295",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ee/40/ee40feeba4b18bde855d9f0f5c8098ab.png",
|
||||||
|
"md5": "12cd4fb5d2dcee2891bd504f4dde85cf",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "268",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/77/85/7785fccd8aa16c1efe77e2ba2ec2f0b5.png",
|
||||||
|
"md5": "6f2c53ee1eb8be295d8ace887bca4983",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1338",
|
||||||
|
"id": "253",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/87/31/87317ac7c02255ee5c7a93c18f4acf56.png",
|
||||||
|
"md5": "71e0eab5ccca748c67c409fb491fc077",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "234",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/90/f9/90f98b009057d10fbe9c470362964f5f.png",
|
||||||
|
"md5": "bf285eff24f25be6e0020fd18276d971",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2662",
|
||||||
|
"id": "229",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/e8/e2/e8e296371815eb7de0123b6bdbf3c400.png",
|
||||||
|
"md5": "a58874d82a940ef3899f28a17dc3a0e4",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "46",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/7d/27/7d2716788b2f66ab62d21e3b16b18fee.png",
|
||||||
|
"md5": "dd2f682917b68975cb1c487e548a7297",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/ja-jp/news/4499",
|
||||||
|
"id": "32",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-21T11:01:27.252+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "ja-jp",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/29/21/2921be275f19ac906529f1a867be978c.png",
|
||||||
|
"md5": "ae6571574c6df4b4765f9093f4af3e78",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2029132713323603170&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Qingbo",
|
||||||
|
"id": "338",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/7d/9b/7d9b99463921eb40ef4a6ef1278138b1.jpg",
|
||||||
|
"md5": "6062fbdd5e4a1172295d1033892fd03f",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "324",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ca/98/ca98ac8aca7794cce22886f048641ee6.jpg",
|
||||||
|
"md5": "760e7d07aef6fef451dd5f179d80e21a",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2033450826884044885&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "310",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/86/39/8639e8e62022366a440544f41fd8ff8d.png",
|
||||||
|
"md5": "a204db9eef507b006a5a5d444b574b0f",
|
||||||
|
"jump_url": "https://store.gryphline.com/ja",
|
||||||
|
"id": "295",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ee/40/ee40feeba4b18bde855d9f0f5c8098ab.png",
|
||||||
|
"md5": "12cd4fb5d2dcee2891bd504f4dde85cf",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "268",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/77/85/7785fccd8aa16c1efe77e2ba2ec2f0b5.png",
|
||||||
|
"md5": "6f2c53ee1eb8be295d8ace887bca4983",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1338",
|
||||||
|
"id": "253",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/87/31/87317ac7c02255ee5c7a93c18f4acf56.png",
|
||||||
|
"md5": "71e0eab5ccca748c67c409fb491fc077",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "234",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/90/f9/90f98b009057d10fbe9c470362964f5f.png",
|
||||||
|
"md5": "bf285eff24f25be6e0020fd18276d971",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2662",
|
||||||
|
"id": "229",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/e8/e2/e8e296371815eb7de0123b6bdbf3c400.png",
|
||||||
|
"md5": "a58874d82a940ef3899f28a17dc3a0e4",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "46",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/7d/27/7d2716788b2f66ab62d21e3b16b18fee.png",
|
||||||
|
"md5": "dd2f682917b68975cb1c487e548a7297",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/ja-jp/news/4499",
|
||||||
|
"id": "32",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T04:00:38.618+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "ja-jp",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/5f/33/5f331e959a65bf1eebc0f8e748c2c528.jpg",
|
||||||
|
"md5": "6e324394aedae6b7bcf8289e45b92b4d",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "352",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/29/21/2921be275f19ac906529f1a867be978c.png",
|
||||||
|
"md5": "ae6571574c6df4b4765f9093f4af3e78",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2029132713323603170&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Qingbo",
|
||||||
|
"id": "338",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/7d/9b/7d9b99463921eb40ef4a6ef1278138b1.jpg",
|
||||||
|
"md5": "6062fbdd5e4a1172295d1033892fd03f",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "324",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ca/98/ca98ac8aca7794cce22886f048641ee6.jpg",
|
||||||
|
"md5": "760e7d07aef6fef451dd5f179d80e21a",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2033450826884044885&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "310",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/86/39/8639e8e62022366a440544f41fd8ff8d.png",
|
||||||
|
"md5": "a204db9eef507b006a5a5d444b574b0f",
|
||||||
|
"jump_url": "https://store.gryphline.com/ja",
|
||||||
|
"id": "295",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ee/40/ee40feeba4b18bde855d9f0f5c8098ab.png",
|
||||||
|
"md5": "12cd4fb5d2dcee2891bd504f4dde85cf",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "268",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/87/31/87317ac7c02255ee5c7a93c18f4acf56.png",
|
||||||
|
"md5": "71e0eab5ccca748c67c409fb491fc077",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "234",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/90/f9/90f98b009057d10fbe9c470362964f5f.png",
|
||||||
|
"md5": "bf285eff24f25be6e0020fd18276d971",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2662",
|
||||||
|
"id": "229",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/e8/e2/e8e296371815eb7de0123b6bdbf3c400.png",
|
||||||
|
"md5": "a58874d82a940ef3899f28a17dc3a0e4",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "46",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/7d/27/7d2716788b2f66ab62d21e3b16b18fee.png",
|
||||||
|
"md5": "dd2f682917b68975cb1c487e548a7297",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/ja-jp/news/4499",
|
||||||
|
"id": "32",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T16:00:42.313+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "ja-jp",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/5f/33/5f331e959a65bf1eebc0f8e748c2c528.jpg",
|
||||||
|
"md5": "6e324394aedae6b7bcf8289e45b92b4d",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "352",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/29/21/2921be275f19ac906529f1a867be978c.png",
|
||||||
|
"md5": "ae6571574c6df4b4765f9093f4af3e78",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2029132713323603170&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Qingbo",
|
||||||
|
"id": "338",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/7d/9b/7d9b99463921eb40ef4a6ef1278138b1.jpg",
|
||||||
|
"md5": "6062fbdd5e4a1172295d1033892fd03f",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "324",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/86/39/8639e8e62022366a440544f41fd8ff8d.png",
|
||||||
|
"md5": "a204db9eef507b006a5a5d444b574b0f",
|
||||||
|
"jump_url": "https://store.gryphline.com/ja",
|
||||||
|
"id": "295",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ee/40/ee40feeba4b18bde855d9f0f5c8098ab.png",
|
||||||
|
"md5": "12cd4fb5d2dcee2891bd504f4dde85cf",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "268",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/87/31/87317ac7c02255ee5c7a93c18f4acf56.png",
|
||||||
|
"md5": "71e0eab5ccca748c67c409fb491fc077",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "234",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/90/f9/90f98b009057d10fbe9c470362964f5f.png",
|
||||||
|
"md5": "bf285eff24f25be6e0020fd18276d971",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2662",
|
||||||
|
"id": "229",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/e8/e2/e8e296371815eb7de0123b6bdbf3c400.png",
|
||||||
|
"md5": "a58874d82a940ef3899f28a17dc3a0e4",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "46",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/7d/27/7d2716788b2f66ab62d21e3b16b18fee.png",
|
||||||
|
"md5": "dd2f682917b68975cb1c487e548a7297",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/ja-jp/news/4499",
|
||||||
|
"id": "32",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-31T15:00:45.594+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "ja-jp",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/5f/33/5f331e959a65bf1eebc0f8e748c2c528.jpg",
|
||||||
|
"md5": "6e324394aedae6b7bcf8289e45b92b4d",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "352",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/29/21/2921be275f19ac906529f1a867be978c.png",
|
||||||
|
"md5": "ae6571574c6df4b4765f9093f4af3e78",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2029132713323603170&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Qingbo",
|
||||||
|
"id": "338",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/7d/9b/7d9b99463921eb40ef4a6ef1278138b1.jpg",
|
||||||
|
"md5": "6062fbdd5e4a1172295d1033892fd03f",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "324",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/86/39/8639e8e62022366a440544f41fd8ff8d.png",
|
||||||
|
"md5": "a204db9eef507b006a5a5d444b574b0f",
|
||||||
|
"jump_url": "https://store.gryphline.com/ja",
|
||||||
|
"id": "295",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ee/40/ee40feeba4b18bde855d9f0f5c8098ab.png",
|
||||||
|
"md5": "12cd4fb5d2dcee2891bd504f4dde85cf",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "268",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/90/f9/90f98b009057d10fbe9c470362964f5f.png",
|
||||||
|
"md5": "bf285eff24f25be6e0020fd18276d971",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2662",
|
||||||
|
"id": "229",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/e8/e2/e8e296371815eb7de0123b6bdbf3c400.png",
|
||||||
|
"md5": "a58874d82a940ef3899f28a17dc3a0e4",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "46",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/7d/27/7d2716788b2f66ab62d21e3b16b18fee.png",
|
||||||
|
"md5": "dd2f682917b68975cb1c487e548a7297",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/ja-jp/news/4499",
|
||||||
|
"id": "32",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-01T15:00:48.637+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "ja-jp",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/5f/33/5f331e959a65bf1eebc0f8e748c2c528.jpg",
|
||||||
|
"md5": "6e324394aedae6b7bcf8289e45b92b4d",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "352",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/7d/9b/7d9b99463921eb40ef4a6ef1278138b1.jpg",
|
||||||
|
"md5": "6062fbdd5e4a1172295d1033892fd03f",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "324",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/86/39/8639e8e62022366a440544f41fd8ff8d.png",
|
||||||
|
"md5": "a204db9eef507b006a5a5d444b574b0f",
|
||||||
|
"jump_url": "https://store.gryphline.com/ja",
|
||||||
|
"id": "295",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ee/40/ee40feeba4b18bde855d9f0f5c8098ab.png",
|
||||||
|
"md5": "12cd4fb5d2dcee2891bd504f4dde85cf",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "268",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/90/f9/90f98b009057d10fbe9c470362964f5f.png",
|
||||||
|
"md5": "bf285eff24f25be6e0020fd18276d971",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2662",
|
||||||
|
"id": "229",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/e8/e2/e8e296371815eb7de0123b6bdbf3c400.png",
|
||||||
|
"md5": "a58874d82a940ef3899f28a17dc3a0e4",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "46",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/7d/27/7d2716788b2f66ab62d21e3b16b18fee.png",
|
||||||
|
"md5": "dd2f682917b68975cb1c487e548a7297",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/ja-jp/news/4499",
|
||||||
|
"id": "32",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-02T11:00:50.200+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "ja-jp",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ba/00/ba0065a08f9338ab1fcd853606d9d23b.png",
|
||||||
|
"md5": "904e8a7f0f5184b261d96373873516e7",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038589290462449304&hg_media=launcher&hg_link_campaign=banner&hg_link_name=wash",
|
||||||
|
"id": "380",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/5f/33/5f331e959a65bf1eebc0f8e748c2c528.jpg",
|
||||||
|
"md5": "6e324394aedae6b7bcf8289e45b92b4d",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "352",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/7d/9b/7d9b99463921eb40ef4a6ef1278138b1.jpg",
|
||||||
|
"md5": "6062fbdd5e4a1172295d1033892fd03f",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "324",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/86/39/8639e8e62022366a440544f41fd8ff8d.png",
|
||||||
|
"md5": "a204db9eef507b006a5a5d444b574b0f",
|
||||||
|
"jump_url": "https://store.gryphline.com/ja",
|
||||||
|
"id": "295",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ee/40/ee40feeba4b18bde855d9f0f5c8098ab.png",
|
||||||
|
"md5": "12cd4fb5d2dcee2891bd504f4dde85cf",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "268",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/90/f9/90f98b009057d10fbe9c470362964f5f.png",
|
||||||
|
"md5": "bf285eff24f25be6e0020fd18276d971",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2662",
|
||||||
|
"id": "229",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/e8/e2/e8e296371815eb7de0123b6bdbf3c400.png",
|
||||||
|
"md5": "a58874d82a940ef3899f28a17dc3a0e4",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "46",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/7d/27/7d2716788b2f66ab62d21e3b16b18fee.png",
|
||||||
|
"md5": "dd2f682917b68975cb1c487e548a7297",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/ja-jp/news/4499",
|
||||||
|
"id": "32",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-03T10:00:42.728+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "ja-jp",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ba/00/ba0065a08f9338ab1fcd853606d9d23b.png",
|
||||||
|
"md5": "904e8a7f0f5184b261d96373873516e7",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038589290462449304&hg_media=launcher&hg_link_campaign=banner&hg_link_name=wash",
|
||||||
|
"id": "380",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ce/ff/ceff61e1e8c95e1e964de91d6fc17884.png",
|
||||||
|
"md5": "73e15a924c561eec50d178848abd1e76",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "366",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/5f/33/5f331e959a65bf1eebc0f8e748c2c528.jpg",
|
||||||
|
"md5": "6e324394aedae6b7bcf8289e45b92b4d",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "352",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/7d/9b/7d9b99463921eb40ef4a6ef1278138b1.jpg",
|
||||||
|
"md5": "6062fbdd5e4a1172295d1033892fd03f",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "324",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/86/39/8639e8e62022366a440544f41fd8ff8d.png",
|
||||||
|
"md5": "a204db9eef507b006a5a5d444b574b0f",
|
||||||
|
"jump_url": "https://store.gryphline.com/ja",
|
||||||
|
"id": "295",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ee/40/ee40feeba4b18bde855d9f0f5c8098ab.png",
|
||||||
|
"md5": "12cd4fb5d2dcee2891bd504f4dde85cf",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "268",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/90/f9/90f98b009057d10fbe9c470362964f5f.png",
|
||||||
|
"md5": "bf285eff24f25be6e0020fd18276d971",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2662",
|
||||||
|
"id": "229",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/e8/e2/e8e296371815eb7de0123b6bdbf3c400.png",
|
||||||
|
"md5": "a58874d82a940ef3899f28a17dc3a0e4",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "46",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/7d/27/7d2716788b2f66ab62d21e3b16b18fee.png",
|
||||||
|
"md5": "dd2f682917b68975cb1c487e548a7297",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/ja-jp/news/4499",
|
||||||
|
"id": "32",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-04T03:00:40.540+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "ja-jp",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ba/00/ba0065a08f9338ab1fcd853606d9d23b.png",
|
||||||
|
"md5": "904e8a7f0f5184b261d96373873516e7",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038589290462449304&hg_media=launcher&hg_link_campaign=banner&hg_link_name=wash",
|
||||||
|
"id": "380",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/c7/b6/c7b6967c4832acc832d04dcebc7dd64b.png",
|
||||||
|
"md5": "cfb3c62e69e1ff28e3424ff47ad85e96",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038548112145123394&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Rossi",
|
||||||
|
"id": "394",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ce/ff/ceff61e1e8c95e1e964de91d6fc17884.png",
|
||||||
|
"md5": "73e15a924c561eec50d178848abd1e76",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "366",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/5f/33/5f331e959a65bf1eebc0f8e748c2c528.jpg",
|
||||||
|
"md5": "6e324394aedae6b7bcf8289e45b92b4d",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "352",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/7d/9b/7d9b99463921eb40ef4a6ef1278138b1.jpg",
|
||||||
|
"md5": "6062fbdd5e4a1172295d1033892fd03f",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "324",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/86/39/8639e8e62022366a440544f41fd8ff8d.png",
|
||||||
|
"md5": "a204db9eef507b006a5a5d444b574b0f",
|
||||||
|
"jump_url": "https://store.gryphline.com/ja",
|
||||||
|
"id": "295",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ee/40/ee40feeba4b18bde855d9f0f5c8098ab.png",
|
||||||
|
"md5": "12cd4fb5d2dcee2891bd504f4dde85cf",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "268",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/90/f9/90f98b009057d10fbe9c470362964f5f.png",
|
||||||
|
"md5": "bf285eff24f25be6e0020fd18276d971",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2662",
|
||||||
|
"id": "229",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/e8/e2/e8e296371815eb7de0123b6bdbf3c400.png",
|
||||||
|
"md5": "a58874d82a940ef3899f28a17dc3a0e4",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "46",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/7d/27/7d2716788b2f66ab62d21e3b16b18fee.png",
|
||||||
|
"md5": "dd2f682917b68975cb1c487e548a7297",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/ja-jp/news/4499",
|
||||||
|
"id": "32",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-04T06:15:34.255+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "ja-jp",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a5/b7/a5b7950229b2eb5e05c1a954f4758a22.jpg",
|
||||||
|
"md5": "830f3f28b5f1553493665cfa965020f4",
|
||||||
|
"jump_url": "https://x.com/akendfieldjp/status/2040278185393439003?s=46",
|
||||||
|
"id": "407",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ba/00/ba0065a08f9338ab1fcd853606d9d23b.png",
|
||||||
|
"md5": "904e8a7f0f5184b261d96373873516e7",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038589290462449304&hg_media=launcher&hg_link_campaign=banner&hg_link_name=wash",
|
||||||
|
"id": "380",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/c7/b6/c7b6967c4832acc832d04dcebc7dd64b.png",
|
||||||
|
"md5": "cfb3c62e69e1ff28e3424ff47ad85e96",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038548112145123394&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Rossi",
|
||||||
|
"id": "394",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ce/ff/ceff61e1e8c95e1e964de91d6fc17884.png",
|
||||||
|
"md5": "73e15a924c561eec50d178848abd1e76",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "366",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/5f/33/5f331e959a65bf1eebc0f8e748c2c528.jpg",
|
||||||
|
"md5": "6e324394aedae6b7bcf8289e45b92b4d",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "352",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/7d/9b/7d9b99463921eb40ef4a6ef1278138b1.jpg",
|
||||||
|
"md5": "6062fbdd5e4a1172295d1033892fd03f",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "324",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/86/39/8639e8e62022366a440544f41fd8ff8d.png",
|
||||||
|
"md5": "a204db9eef507b006a5a5d444b574b0f",
|
||||||
|
"jump_url": "https://store.gryphline.com/ja",
|
||||||
|
"id": "295",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ee/40/ee40feeba4b18bde855d9f0f5c8098ab.png",
|
||||||
|
"md5": "12cd4fb5d2dcee2891bd504f4dde85cf",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "268",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/90/f9/90f98b009057d10fbe9c470362964f5f.png",
|
||||||
|
"md5": "bf285eff24f25be6e0020fd18276d971",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2662",
|
||||||
|
"id": "229",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/e8/e2/e8e296371815eb7de0123b6bdbf3c400.png",
|
||||||
|
"md5": "a58874d82a940ef3899f28a17dc3a0e4",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "46",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/7d/27/7d2716788b2f66ab62d21e3b16b18fee.png",
|
||||||
|
"md5": "dd2f682917b68975cb1c487e548a7297",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/ja-jp/news/4499",
|
||||||
|
"id": "32",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-07T15:00:58.484+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "ja-jp",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a5/b7/a5b7950229b2eb5e05c1a954f4758a22.jpg",
|
||||||
|
"md5": "830f3f28b5f1553493665cfa965020f4",
|
||||||
|
"jump_url": "https://x.com/akendfieldjp/status/2040278185393439003?s=46",
|
||||||
|
"id": "407",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ba/00/ba0065a08f9338ab1fcd853606d9d23b.png",
|
||||||
|
"md5": "904e8a7f0f5184b261d96373873516e7",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038589290462449304&hg_media=launcher&hg_link_campaign=banner&hg_link_name=wash",
|
||||||
|
"id": "380",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/c7/b6/c7b6967c4832acc832d04dcebc7dd64b.png",
|
||||||
|
"md5": "cfb3c62e69e1ff28e3424ff47ad85e96",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038548112145123394&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Rossi",
|
||||||
|
"id": "394",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ce/ff/ceff61e1e8c95e1e964de91d6fc17884.png",
|
||||||
|
"md5": "73e15a924c561eec50d178848abd1e76",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "366",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/5f/33/5f331e959a65bf1eebc0f8e748c2c528.jpg",
|
||||||
|
"md5": "6e324394aedae6b7bcf8289e45b92b4d",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "352",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/7d/9b/7d9b99463921eb40ef4a6ef1278138b1.jpg",
|
||||||
|
"md5": "6062fbdd5e4a1172295d1033892fd03f",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "324",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ee/40/ee40feeba4b18bde855d9f0f5c8098ab.png",
|
||||||
|
"md5": "12cd4fb5d2dcee2891bd504f4dde85cf",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "268",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/90/f9/90f98b009057d10fbe9c470362964f5f.png",
|
||||||
|
"md5": "bf285eff24f25be6e0020fd18276d971",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2662",
|
||||||
|
"id": "229",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/e8/e2/e8e296371815eb7de0123b6bdbf3c400.png",
|
||||||
|
"md5": "a58874d82a940ef3899f28a17dc3a0e4",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "46",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/7d/27/7d2716788b2f66ab62d21e3b16b18fee.png",
|
||||||
|
"md5": "dd2f682917b68975cb1c487e548a7297",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/ja-jp/news/4499",
|
||||||
|
"id": "32",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -11,24 +11,45 @@
|
|||||||
"data_version": "",
|
"data_version": "",
|
||||||
"banners": [
|
"banners": [
|
||||||
{
|
{
|
||||||
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ca/98/ca98ac8aca7794cce22886f048641ee6.jpg",
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a5/b7/a5b7950229b2eb5e05c1a954f4758a22.jpg",
|
||||||
"md5": "760e7d07aef6fef451dd5f179d80e21a",
|
"md5": "830f3f28b5f1553493665cfa965020f4",
|
||||||
"jump_url": "https://www.skport.com/article?id=2033450826884044885&hg_media=launcher&hg_link_campaign=banner",
|
"jump_url": "https://x.com/akendfieldjp/status/2040278185393439003?s=46",
|
||||||
"id": "310",
|
"id": "407",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/86/39/8639e8e62022366a440544f41fd8ff8d.png",
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ba/00/ba0065a08f9338ab1fcd853606d9d23b.png",
|
||||||
"md5": "a204db9eef507b006a5a5d444b574b0f",
|
"md5": "904e8a7f0f5184b261d96373873516e7",
|
||||||
"jump_url": "https://store.gryphline.com/ja",
|
"jump_url": "https://www.skport.com/article?id=2038589290462449304&hg_media=launcher&hg_link_campaign=banner&hg_link_name=wash",
|
||||||
"id": "295",
|
"id": "380",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/c6/9a/c69acaf2f14d2557968f074ded75932c.png",
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/c7/b6/c7b6967c4832acc832d04dcebc7dd64b.png",
|
||||||
"md5": "172d4189663c73ad04f987f052c70528",
|
"md5": "cfb3c62e69e1ff28e3424ff47ad85e96",
|
||||||
"jump_url": "https://www.skport.com/article?id=2028369049304242052&hg_media=launcher&hg_link_campaign=banner",
|
"jump_url": "https://www.skport.com/article?id=2038548112145123394&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Rossi",
|
||||||
"id": "282",
|
"id": "394",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ce/ff/ceff61e1e8c95e1e964de91d6fc17884.png",
|
||||||
|
"md5": "73e15a924c561eec50d178848abd1e76",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "366",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/5f/33/5f331e959a65bf1eebc0f8e748c2c528.jpg",
|
||||||
|
"md5": "6e324394aedae6b7bcf8289e45b92b4d",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "352",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/7d/9b/7d9b99463921eb40ef4a6ef1278138b1.jpg",
|
||||||
|
"md5": "6062fbdd5e4a1172295d1033892fd03f",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "324",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -38,20 +59,6 @@
|
|||||||
"id": "268",
|
"id": "268",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/77/85/7785fccd8aa16c1efe77e2ba2ec2f0b5.png",
|
|
||||||
"md5": "6f2c53ee1eb8be295d8ace887bca4983",
|
|
||||||
"jump_url": "https://endfield.gryphline.com/news/1338",
|
|
||||||
"id": "253",
|
|
||||||
"need_token": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/87/31/87317ac7c02255ee5c7a93c18f4acf56.png",
|
|
||||||
"md5": "71e0eab5ccca748c67c409fb491fc077",
|
|
||||||
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
|
||||||
"id": "234",
|
|
||||||
"need_token": false
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/90/f9/90f98b009057d10fbe9c470362964f5f.png",
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/90/f9/90f98b009057d10fbe9c470362964f5f.png",
|
||||||
"md5": "bf285eff24f25be6e0020fd18276d971",
|
"md5": "bf285eff24f25be6e0020fd18276d971",
|
||||||
|
|||||||
@@ -418,5 +418,960 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-19T15:00:47.750+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "ko-kr",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/be/b0/beb06d5e85e54922a5042925552adce1.jpg",
|
||||||
|
"md5": "a981c03775b5efc6909d6d1a44c0b000",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2033450826884044885&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "311",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/2d/1d/2d1dfc1e1759dadc68db0cdd75e84a0d.png",
|
||||||
|
"md5": "7d57fefa28c7357199ec93b4bcf7ff8f",
|
||||||
|
"jump_url": "https://store.gryphline.com/ko",
|
||||||
|
"id": "297",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/34/ee/34ee73ca8481eeb811bdf236bf7f2b06.png",
|
||||||
|
"md5": "372d765df50a245579c57290fcf8b36a",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "269",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/c3/0f/c30f97bc50908fb2ecb67657404a2ae6.png",
|
||||||
|
"md5": "0da65ace79ca08e54462c6fe9dc6c22f",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1338",
|
||||||
|
"id": "254",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/8c/2a/8c2a91410e87affa564a0730e32d60c1.png",
|
||||||
|
"md5": "6a2dd2261109d1f261050ec2876981d5",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "235",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/4c/cb/4ccbc87521947666cd344a774ccb9bc1.png",
|
||||||
|
"md5": "20274125de1f12311da91b4e6ef41529",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2662",
|
||||||
|
"id": "230",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ce/17/ce17d6e1514707c3cc1ea7077b28603e.png",
|
||||||
|
"md5": "7d0bfbdb66ce223db0d062450fab5107",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "47",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/d5/9b/d59b71e5cf1db3d14d32f5126a613eb4.png",
|
||||||
|
"md5": "1ff7a484bb5970232d9d270dca0a1e78",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/ko-kr/news/4499",
|
||||||
|
"id": "33",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-20T04:00:41.922+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "ko-kr",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/b0/b7/b0b7ae6be2c31d81bc8f21712c68cf67.jpg",
|
||||||
|
"md5": "b346de6bf7e86618cbda6f91ca1109ab",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "325",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/be/b0/beb06d5e85e54922a5042925552adce1.jpg",
|
||||||
|
"md5": "a981c03775b5efc6909d6d1a44c0b000",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2033450826884044885&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "311",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/2d/1d/2d1dfc1e1759dadc68db0cdd75e84a0d.png",
|
||||||
|
"md5": "7d57fefa28c7357199ec93b4bcf7ff8f",
|
||||||
|
"jump_url": "https://store.gryphline.com/ko",
|
||||||
|
"id": "297",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/34/ee/34ee73ca8481eeb811bdf236bf7f2b06.png",
|
||||||
|
"md5": "372d765df50a245579c57290fcf8b36a",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "269",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/c3/0f/c30f97bc50908fb2ecb67657404a2ae6.png",
|
||||||
|
"md5": "0da65ace79ca08e54462c6fe9dc6c22f",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1338",
|
||||||
|
"id": "254",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/8c/2a/8c2a91410e87affa564a0730e32d60c1.png",
|
||||||
|
"md5": "6a2dd2261109d1f261050ec2876981d5",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "235",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/4c/cb/4ccbc87521947666cd344a774ccb9bc1.png",
|
||||||
|
"md5": "20274125de1f12311da91b4e6ef41529",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2662",
|
||||||
|
"id": "230",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ce/17/ce17d6e1514707c3cc1ea7077b28603e.png",
|
||||||
|
"md5": "7d0bfbdb66ce223db0d062450fab5107",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "47",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/d5/9b/d59b71e5cf1db3d14d32f5126a613eb4.png",
|
||||||
|
"md5": "1ff7a484bb5970232d9d270dca0a1e78",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/ko-kr/news/4499",
|
||||||
|
"id": "33",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-21T11:01:26.577+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "ko-kr",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/8c/ab/8cab66fa433323e79fdedda625ec464b.png",
|
||||||
|
"md5": "66d272374f0b4bf5a7c9d879e985e0a9",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2029132713323603170&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Qingbo",
|
||||||
|
"id": "339",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/b0/b7/b0b7ae6be2c31d81bc8f21712c68cf67.jpg",
|
||||||
|
"md5": "b346de6bf7e86618cbda6f91ca1109ab",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "325",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/be/b0/beb06d5e85e54922a5042925552adce1.jpg",
|
||||||
|
"md5": "a981c03775b5efc6909d6d1a44c0b000",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2033450826884044885&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "311",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/2d/1d/2d1dfc1e1759dadc68db0cdd75e84a0d.png",
|
||||||
|
"md5": "7d57fefa28c7357199ec93b4bcf7ff8f",
|
||||||
|
"jump_url": "https://store.gryphline.com/ko",
|
||||||
|
"id": "297",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/34/ee/34ee73ca8481eeb811bdf236bf7f2b06.png",
|
||||||
|
"md5": "372d765df50a245579c57290fcf8b36a",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "269",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/c3/0f/c30f97bc50908fb2ecb67657404a2ae6.png",
|
||||||
|
"md5": "0da65ace79ca08e54462c6fe9dc6c22f",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1338",
|
||||||
|
"id": "254",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/8c/2a/8c2a91410e87affa564a0730e32d60c1.png",
|
||||||
|
"md5": "6a2dd2261109d1f261050ec2876981d5",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "235",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/4c/cb/4ccbc87521947666cd344a774ccb9bc1.png",
|
||||||
|
"md5": "20274125de1f12311da91b4e6ef41529",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2662",
|
||||||
|
"id": "230",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ce/17/ce17d6e1514707c3cc1ea7077b28603e.png",
|
||||||
|
"md5": "7d0bfbdb66ce223db0d062450fab5107",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "47",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/d5/9b/d59b71e5cf1db3d14d32f5126a613eb4.png",
|
||||||
|
"md5": "1ff7a484bb5970232d9d270dca0a1e78",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/ko-kr/news/4499",
|
||||||
|
"id": "33",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T04:00:38.552+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "ko-kr",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/b2/63/b2631f335cc3f75e2360b72f1820bfa7.jpg",
|
||||||
|
"md5": "ba8286f24a06f9a65df3ed39b3c17c6c",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "353",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/8c/ab/8cab66fa433323e79fdedda625ec464b.png",
|
||||||
|
"md5": "66d272374f0b4bf5a7c9d879e985e0a9",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2029132713323603170&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Qingbo",
|
||||||
|
"id": "339",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/b0/b7/b0b7ae6be2c31d81bc8f21712c68cf67.jpg",
|
||||||
|
"md5": "b346de6bf7e86618cbda6f91ca1109ab",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "325",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/be/b0/beb06d5e85e54922a5042925552adce1.jpg",
|
||||||
|
"md5": "a981c03775b5efc6909d6d1a44c0b000",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2033450826884044885&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "311",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/2d/1d/2d1dfc1e1759dadc68db0cdd75e84a0d.png",
|
||||||
|
"md5": "7d57fefa28c7357199ec93b4bcf7ff8f",
|
||||||
|
"jump_url": "https://store.gryphline.com/ko",
|
||||||
|
"id": "297",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/34/ee/34ee73ca8481eeb811bdf236bf7f2b06.png",
|
||||||
|
"md5": "372d765df50a245579c57290fcf8b36a",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "269",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/8c/2a/8c2a91410e87affa564a0730e32d60c1.png",
|
||||||
|
"md5": "6a2dd2261109d1f261050ec2876981d5",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "235",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/4c/cb/4ccbc87521947666cd344a774ccb9bc1.png",
|
||||||
|
"md5": "20274125de1f12311da91b4e6ef41529",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2662",
|
||||||
|
"id": "230",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ce/17/ce17d6e1514707c3cc1ea7077b28603e.png",
|
||||||
|
"md5": "7d0bfbdb66ce223db0d062450fab5107",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "47",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/d5/9b/d59b71e5cf1db3d14d32f5126a613eb4.png",
|
||||||
|
"md5": "1ff7a484bb5970232d9d270dca0a1e78",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/ko-kr/news/4499",
|
||||||
|
"id": "33",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T16:00:42.343+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "ko-kr",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/b2/63/b2631f335cc3f75e2360b72f1820bfa7.jpg",
|
||||||
|
"md5": "ba8286f24a06f9a65df3ed39b3c17c6c",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "353",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/8c/ab/8cab66fa433323e79fdedda625ec464b.png",
|
||||||
|
"md5": "66d272374f0b4bf5a7c9d879e985e0a9",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2029132713323603170&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Qingbo",
|
||||||
|
"id": "339",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/b0/b7/b0b7ae6be2c31d81bc8f21712c68cf67.jpg",
|
||||||
|
"md5": "b346de6bf7e86618cbda6f91ca1109ab",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "325",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/2d/1d/2d1dfc1e1759dadc68db0cdd75e84a0d.png",
|
||||||
|
"md5": "7d57fefa28c7357199ec93b4bcf7ff8f",
|
||||||
|
"jump_url": "https://store.gryphline.com/ko",
|
||||||
|
"id": "297",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/34/ee/34ee73ca8481eeb811bdf236bf7f2b06.png",
|
||||||
|
"md5": "372d765df50a245579c57290fcf8b36a",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "269",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/8c/2a/8c2a91410e87affa564a0730e32d60c1.png",
|
||||||
|
"md5": "6a2dd2261109d1f261050ec2876981d5",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "235",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/4c/cb/4ccbc87521947666cd344a774ccb9bc1.png",
|
||||||
|
"md5": "20274125de1f12311da91b4e6ef41529",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2662",
|
||||||
|
"id": "230",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ce/17/ce17d6e1514707c3cc1ea7077b28603e.png",
|
||||||
|
"md5": "7d0bfbdb66ce223db0d062450fab5107",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "47",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/d5/9b/d59b71e5cf1db3d14d32f5126a613eb4.png",
|
||||||
|
"md5": "1ff7a484bb5970232d9d270dca0a1e78",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/ko-kr/news/4499",
|
||||||
|
"id": "33",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-31T15:00:45.673+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "ko-kr",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/b2/63/b2631f335cc3f75e2360b72f1820bfa7.jpg",
|
||||||
|
"md5": "ba8286f24a06f9a65df3ed39b3c17c6c",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "353",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/8c/ab/8cab66fa433323e79fdedda625ec464b.png",
|
||||||
|
"md5": "66d272374f0b4bf5a7c9d879e985e0a9",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2029132713323603170&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Qingbo",
|
||||||
|
"id": "339",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/b0/b7/b0b7ae6be2c31d81bc8f21712c68cf67.jpg",
|
||||||
|
"md5": "b346de6bf7e86618cbda6f91ca1109ab",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "325",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/2d/1d/2d1dfc1e1759dadc68db0cdd75e84a0d.png",
|
||||||
|
"md5": "7d57fefa28c7357199ec93b4bcf7ff8f",
|
||||||
|
"jump_url": "https://store.gryphline.com/ko",
|
||||||
|
"id": "297",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/34/ee/34ee73ca8481eeb811bdf236bf7f2b06.png",
|
||||||
|
"md5": "372d765df50a245579c57290fcf8b36a",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "269",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/4c/cb/4ccbc87521947666cd344a774ccb9bc1.png",
|
||||||
|
"md5": "20274125de1f12311da91b4e6ef41529",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2662",
|
||||||
|
"id": "230",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ce/17/ce17d6e1514707c3cc1ea7077b28603e.png",
|
||||||
|
"md5": "7d0bfbdb66ce223db0d062450fab5107",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "47",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/d5/9b/d59b71e5cf1db3d14d32f5126a613eb4.png",
|
||||||
|
"md5": "1ff7a484bb5970232d9d270dca0a1e78",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/ko-kr/news/4499",
|
||||||
|
"id": "33",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-01T15:00:48.157+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "ko-kr",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/b2/63/b2631f335cc3f75e2360b72f1820bfa7.jpg",
|
||||||
|
"md5": "ba8286f24a06f9a65df3ed39b3c17c6c",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "353",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/b0/b7/b0b7ae6be2c31d81bc8f21712c68cf67.jpg",
|
||||||
|
"md5": "b346de6bf7e86618cbda6f91ca1109ab",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "325",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/2d/1d/2d1dfc1e1759dadc68db0cdd75e84a0d.png",
|
||||||
|
"md5": "7d57fefa28c7357199ec93b4bcf7ff8f",
|
||||||
|
"jump_url": "https://store.gryphline.com/ko",
|
||||||
|
"id": "297",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/34/ee/34ee73ca8481eeb811bdf236bf7f2b06.png",
|
||||||
|
"md5": "372d765df50a245579c57290fcf8b36a",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "269",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/4c/cb/4ccbc87521947666cd344a774ccb9bc1.png",
|
||||||
|
"md5": "20274125de1f12311da91b4e6ef41529",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2662",
|
||||||
|
"id": "230",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ce/17/ce17d6e1514707c3cc1ea7077b28603e.png",
|
||||||
|
"md5": "7d0bfbdb66ce223db0d062450fab5107",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "47",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/d5/9b/d59b71e5cf1db3d14d32f5126a613eb4.png",
|
||||||
|
"md5": "1ff7a484bb5970232d9d270dca0a1e78",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/ko-kr/news/4499",
|
||||||
|
"id": "33",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-02T11:00:50.192+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "ko-kr",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/eb/69/eb693bc1670553cdcef55920e73e1446.png",
|
||||||
|
"md5": "4cfb88def942c525ed6711268a29abce",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038589290462449304&hg_media=launcher&hg_link_campaign=banner&hg_link_name=wash",
|
||||||
|
"id": "381",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/b2/63/b2631f335cc3f75e2360b72f1820bfa7.jpg",
|
||||||
|
"md5": "ba8286f24a06f9a65df3ed39b3c17c6c",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "353",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/b0/b7/b0b7ae6be2c31d81bc8f21712c68cf67.jpg",
|
||||||
|
"md5": "b346de6bf7e86618cbda6f91ca1109ab",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "325",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/2d/1d/2d1dfc1e1759dadc68db0cdd75e84a0d.png",
|
||||||
|
"md5": "7d57fefa28c7357199ec93b4bcf7ff8f",
|
||||||
|
"jump_url": "https://store.gryphline.com/ko",
|
||||||
|
"id": "297",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/34/ee/34ee73ca8481eeb811bdf236bf7f2b06.png",
|
||||||
|
"md5": "372d765df50a245579c57290fcf8b36a",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "269",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/4c/cb/4ccbc87521947666cd344a774ccb9bc1.png",
|
||||||
|
"md5": "20274125de1f12311da91b4e6ef41529",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2662",
|
||||||
|
"id": "230",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ce/17/ce17d6e1514707c3cc1ea7077b28603e.png",
|
||||||
|
"md5": "7d0bfbdb66ce223db0d062450fab5107",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "47",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/d5/9b/d59b71e5cf1db3d14d32f5126a613eb4.png",
|
||||||
|
"md5": "1ff7a484bb5970232d9d270dca0a1e78",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/ko-kr/news/4499",
|
||||||
|
"id": "33",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-03T10:00:42.030+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "ko-kr",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/eb/69/eb693bc1670553cdcef55920e73e1446.png",
|
||||||
|
"md5": "4cfb88def942c525ed6711268a29abce",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038589290462449304&hg_media=launcher&hg_link_campaign=banner&hg_link_name=wash",
|
||||||
|
"id": "381",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/57/5e/575ecae29c07951ce74fe804af3bdf70.png",
|
||||||
|
"md5": "f8adafa36d94742c5ecfa6f2356bed3e",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "367",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/b2/63/b2631f335cc3f75e2360b72f1820bfa7.jpg",
|
||||||
|
"md5": "ba8286f24a06f9a65df3ed39b3c17c6c",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "353",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/b0/b7/b0b7ae6be2c31d81bc8f21712c68cf67.jpg",
|
||||||
|
"md5": "b346de6bf7e86618cbda6f91ca1109ab",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "325",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/2d/1d/2d1dfc1e1759dadc68db0cdd75e84a0d.png",
|
||||||
|
"md5": "7d57fefa28c7357199ec93b4bcf7ff8f",
|
||||||
|
"jump_url": "https://store.gryphline.com/ko",
|
||||||
|
"id": "297",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/34/ee/34ee73ca8481eeb811bdf236bf7f2b06.png",
|
||||||
|
"md5": "372d765df50a245579c57290fcf8b36a",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "269",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/4c/cb/4ccbc87521947666cd344a774ccb9bc1.png",
|
||||||
|
"md5": "20274125de1f12311da91b4e6ef41529",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2662",
|
||||||
|
"id": "230",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ce/17/ce17d6e1514707c3cc1ea7077b28603e.png",
|
||||||
|
"md5": "7d0bfbdb66ce223db0d062450fab5107",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "47",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/d5/9b/d59b71e5cf1db3d14d32f5126a613eb4.png",
|
||||||
|
"md5": "1ff7a484bb5970232d9d270dca0a1e78",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/ko-kr/news/4499",
|
||||||
|
"id": "33",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-04T03:00:41.183+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "ko-kr",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/eb/69/eb693bc1670553cdcef55920e73e1446.png",
|
||||||
|
"md5": "4cfb88def942c525ed6711268a29abce",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038589290462449304&hg_media=launcher&hg_link_campaign=banner&hg_link_name=wash",
|
||||||
|
"id": "381",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/39/18/3918cac3faa8ad5b039682d5294b4da7.png",
|
||||||
|
"md5": "7524f94b1c06d90c36be627ebc34384c",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038548112145123394&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Rossi",
|
||||||
|
"id": "395",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/57/5e/575ecae29c07951ce74fe804af3bdf70.png",
|
||||||
|
"md5": "f8adafa36d94742c5ecfa6f2356bed3e",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "367",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/b2/63/b2631f335cc3f75e2360b72f1820bfa7.jpg",
|
||||||
|
"md5": "ba8286f24a06f9a65df3ed39b3c17c6c",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "353",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/b0/b7/b0b7ae6be2c31d81bc8f21712c68cf67.jpg",
|
||||||
|
"md5": "b346de6bf7e86618cbda6f91ca1109ab",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "325",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/2d/1d/2d1dfc1e1759dadc68db0cdd75e84a0d.png",
|
||||||
|
"md5": "7d57fefa28c7357199ec93b4bcf7ff8f",
|
||||||
|
"jump_url": "https://store.gryphline.com/ko",
|
||||||
|
"id": "297",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/34/ee/34ee73ca8481eeb811bdf236bf7f2b06.png",
|
||||||
|
"md5": "372d765df50a245579c57290fcf8b36a",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "269",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/4c/cb/4ccbc87521947666cd344a774ccb9bc1.png",
|
||||||
|
"md5": "20274125de1f12311da91b4e6ef41529",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2662",
|
||||||
|
"id": "230",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ce/17/ce17d6e1514707c3cc1ea7077b28603e.png",
|
||||||
|
"md5": "7d0bfbdb66ce223db0d062450fab5107",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "47",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/d5/9b/d59b71e5cf1db3d14d32f5126a613eb4.png",
|
||||||
|
"md5": "1ff7a484bb5970232d9d270dca0a1e78",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/ko-kr/news/4499",
|
||||||
|
"id": "33",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-04T06:15:33.609+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "ko-kr",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/4d/bf/4dbfa34b085c9cbc8d0cbbe16b18e476.jpg",
|
||||||
|
"md5": "fc6954934a3e83a8996c4e0f722837a3",
|
||||||
|
"jump_url": "https://x.com/akendfieldkr/status/2040289557606994247?s=46",
|
||||||
|
"id": "408",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/eb/69/eb693bc1670553cdcef55920e73e1446.png",
|
||||||
|
"md5": "4cfb88def942c525ed6711268a29abce",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038589290462449304&hg_media=launcher&hg_link_campaign=banner&hg_link_name=wash",
|
||||||
|
"id": "381",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/39/18/3918cac3faa8ad5b039682d5294b4da7.png",
|
||||||
|
"md5": "7524f94b1c06d90c36be627ebc34384c",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038548112145123394&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Rossi",
|
||||||
|
"id": "395",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/57/5e/575ecae29c07951ce74fe804af3bdf70.png",
|
||||||
|
"md5": "f8adafa36d94742c5ecfa6f2356bed3e",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "367",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/b2/63/b2631f335cc3f75e2360b72f1820bfa7.jpg",
|
||||||
|
"md5": "ba8286f24a06f9a65df3ed39b3c17c6c",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "353",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/b0/b7/b0b7ae6be2c31d81bc8f21712c68cf67.jpg",
|
||||||
|
"md5": "b346de6bf7e86618cbda6f91ca1109ab",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "325",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/2d/1d/2d1dfc1e1759dadc68db0cdd75e84a0d.png",
|
||||||
|
"md5": "7d57fefa28c7357199ec93b4bcf7ff8f",
|
||||||
|
"jump_url": "https://store.gryphline.com/ko",
|
||||||
|
"id": "297",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/34/ee/34ee73ca8481eeb811bdf236bf7f2b06.png",
|
||||||
|
"md5": "372d765df50a245579c57290fcf8b36a",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "269",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/4c/cb/4ccbc87521947666cd344a774ccb9bc1.png",
|
||||||
|
"md5": "20274125de1f12311da91b4e6ef41529",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2662",
|
||||||
|
"id": "230",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ce/17/ce17d6e1514707c3cc1ea7077b28603e.png",
|
||||||
|
"md5": "7d0bfbdb66ce223db0d062450fab5107",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "47",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/d5/9b/d59b71e5cf1db3d14d32f5126a613eb4.png",
|
||||||
|
"md5": "1ff7a484bb5970232d9d270dca0a1e78",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/ko-kr/news/4499",
|
||||||
|
"id": "33",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-07T15:00:58.702+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "ko-kr",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/4d/bf/4dbfa34b085c9cbc8d0cbbe16b18e476.jpg",
|
||||||
|
"md5": "fc6954934a3e83a8996c4e0f722837a3",
|
||||||
|
"jump_url": "https://x.com/akendfieldkr/status/2040289557606994247?s=46",
|
||||||
|
"id": "408",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/eb/69/eb693bc1670553cdcef55920e73e1446.png",
|
||||||
|
"md5": "4cfb88def942c525ed6711268a29abce",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038589290462449304&hg_media=launcher&hg_link_campaign=banner&hg_link_name=wash",
|
||||||
|
"id": "381",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/39/18/3918cac3faa8ad5b039682d5294b4da7.png",
|
||||||
|
"md5": "7524f94b1c06d90c36be627ebc34384c",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038548112145123394&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Rossi",
|
||||||
|
"id": "395",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/57/5e/575ecae29c07951ce74fe804af3bdf70.png",
|
||||||
|
"md5": "f8adafa36d94742c5ecfa6f2356bed3e",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "367",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/b2/63/b2631f335cc3f75e2360b72f1820bfa7.jpg",
|
||||||
|
"md5": "ba8286f24a06f9a65df3ed39b3c17c6c",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "353",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/b0/b7/b0b7ae6be2c31d81bc8f21712c68cf67.jpg",
|
||||||
|
"md5": "b346de6bf7e86618cbda6f91ca1109ab",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "325",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/34/ee/34ee73ca8481eeb811bdf236bf7f2b06.png",
|
||||||
|
"md5": "372d765df50a245579c57290fcf8b36a",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "269",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/4c/cb/4ccbc87521947666cd344a774ccb9bc1.png",
|
||||||
|
"md5": "20274125de1f12311da91b4e6ef41529",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2662",
|
||||||
|
"id": "230",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ce/17/ce17d6e1514707c3cc1ea7077b28603e.png",
|
||||||
|
"md5": "7d0bfbdb66ce223db0d062450fab5107",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "47",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/d5/9b/d59b71e5cf1db3d14d32f5126a613eb4.png",
|
||||||
|
"md5": "1ff7a484bb5970232d9d270dca0a1e78",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/ko-kr/news/4499",
|
||||||
|
"id": "33",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -11,24 +11,45 @@
|
|||||||
"data_version": "",
|
"data_version": "",
|
||||||
"banners": [
|
"banners": [
|
||||||
{
|
{
|
||||||
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/be/b0/beb06d5e85e54922a5042925552adce1.jpg",
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/4d/bf/4dbfa34b085c9cbc8d0cbbe16b18e476.jpg",
|
||||||
"md5": "a981c03775b5efc6909d6d1a44c0b000",
|
"md5": "fc6954934a3e83a8996c4e0f722837a3",
|
||||||
"jump_url": "https://www.skport.com/article?id=2033450826884044885&hg_media=launcher&hg_link_campaign=banner",
|
"jump_url": "https://x.com/akendfieldkr/status/2040289557606994247?s=46",
|
||||||
"id": "311",
|
"id": "408",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/2d/1d/2d1dfc1e1759dadc68db0cdd75e84a0d.png",
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/eb/69/eb693bc1670553cdcef55920e73e1446.png",
|
||||||
"md5": "7d57fefa28c7357199ec93b4bcf7ff8f",
|
"md5": "4cfb88def942c525ed6711268a29abce",
|
||||||
"jump_url": "https://store.gryphline.com/ko",
|
"jump_url": "https://www.skport.com/article?id=2038589290462449304&hg_media=launcher&hg_link_campaign=banner&hg_link_name=wash",
|
||||||
"id": "297",
|
"id": "381",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/39/1e/391e7d4af04e2f3b139aec5c6675ec68.png",
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/39/18/3918cac3faa8ad5b039682d5294b4da7.png",
|
||||||
"md5": "13dc8723ebdc406c4342d40d3ac9e154",
|
"md5": "7524f94b1c06d90c36be627ebc34384c",
|
||||||
"jump_url": "https://www.skport.com/article?id=2028369049304242052&hg_media=launcher&hg_link_campaign=banner",
|
"jump_url": "https://www.skport.com/article?id=2038548112145123394&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Rossi",
|
||||||
"id": "283",
|
"id": "395",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/57/5e/575ecae29c07951ce74fe804af3bdf70.png",
|
||||||
|
"md5": "f8adafa36d94742c5ecfa6f2356bed3e",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "367",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/b2/63/b2631f335cc3f75e2360b72f1820bfa7.jpg",
|
||||||
|
"md5": "ba8286f24a06f9a65df3ed39b3c17c6c",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "353",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/b0/b7/b0b7ae6be2c31d81bc8f21712c68cf67.jpg",
|
||||||
|
"md5": "b346de6bf7e86618cbda6f91ca1109ab",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "325",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -38,20 +59,6 @@
|
|||||||
"id": "269",
|
"id": "269",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/c3/0f/c30f97bc50908fb2ecb67657404a2ae6.png",
|
|
||||||
"md5": "0da65ace79ca08e54462c6fe9dc6c22f",
|
|
||||||
"jump_url": "https://endfield.gryphline.com/news/1338",
|
|
||||||
"id": "254",
|
|
||||||
"need_token": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/8c/2a/8c2a91410e87affa564a0730e32d60c1.png",
|
|
||||||
"md5": "6a2dd2261109d1f261050ec2876981d5",
|
|
||||||
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
|
||||||
"id": "235",
|
|
||||||
"need_token": false
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/4c/cb/4ccbc87521947666cd344a774ccb9bc1.png",
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/4c/cb/4ccbc87521947666cd344a774ccb9bc1.png",
|
||||||
"md5": "20274125de1f12311da91b4e6ef41529",
|
"md5": "20274125de1f12311da91b4e6ef41529",
|
||||||
|
|||||||
@@ -325,5 +325,783 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-19T15:00:47.904+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "pt-br",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/c6/11/c6116aa889350965a1ffb7b1bf391dc5.jpg",
|
||||||
|
"md5": "9e16a1a8fe594e1abf6d34a8ee08df42",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2033450826884044885&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "316",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/b0/7e/b07e3d4a80658f0690435966e5c2be56.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "302",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/83/f0/83f02b9bc865e8d6d733b75b7f1d3646.png",
|
||||||
|
"md5": "7a60c6e2935d6d4c735616ce6ddced5d",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "273",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/29/7a/297aa0a6827b390d540becd0ad59f032.png",
|
||||||
|
"md5": "bef18f833355e60480d5cfb6c8025f78",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1338",
|
||||||
|
"id": "259",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/61/ad/61ad248fcd4352c430aed12655bf5496.png",
|
||||||
|
"md5": "b0a2742e3f9d5cdcac972267954ce817",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "240",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/d4/65/d465e2d336ad91e07a97440322614657.png",
|
||||||
|
"md5": "d80813695f154027fc2e75bd082ac21c",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "52",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ad/52/ad52ba60835f388696d6f81f66bf0535.png",
|
||||||
|
"md5": "f55f3db2cdac94deb8b883e60cb43c49",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "38",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-20T04:00:41.928+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "pt-br",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a1/4e/a14e2f4716f2eb253514af615d0cc444.jpg",
|
||||||
|
"md5": "d4f0111b60a5511be7149b3bc28eb23e",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "330",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/c6/11/c6116aa889350965a1ffb7b1bf391dc5.jpg",
|
||||||
|
"md5": "9e16a1a8fe594e1abf6d34a8ee08df42",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2033450826884044885&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "316",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/b0/7e/b07e3d4a80658f0690435966e5c2be56.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "302",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/83/f0/83f02b9bc865e8d6d733b75b7f1d3646.png",
|
||||||
|
"md5": "7a60c6e2935d6d4c735616ce6ddced5d",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "273",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/29/7a/297aa0a6827b390d540becd0ad59f032.png",
|
||||||
|
"md5": "bef18f833355e60480d5cfb6c8025f78",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1338",
|
||||||
|
"id": "259",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/61/ad/61ad248fcd4352c430aed12655bf5496.png",
|
||||||
|
"md5": "b0a2742e3f9d5cdcac972267954ce817",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "240",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/d4/65/d465e2d336ad91e07a97440322614657.png",
|
||||||
|
"md5": "d80813695f154027fc2e75bd082ac21c",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "52",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ad/52/ad52ba60835f388696d6f81f66bf0535.png",
|
||||||
|
"md5": "f55f3db2cdac94deb8b883e60cb43c49",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "38",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-21T11:01:26.605+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "pt-br",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/f4/58/f45870e3f1961c7592f88eb7d6680149.png",
|
||||||
|
"md5": "e030a67fe97a5367a40df0387cb789cd",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2029132713323603170&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Qingbo",
|
||||||
|
"id": "344",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a1/4e/a14e2f4716f2eb253514af615d0cc444.jpg",
|
||||||
|
"md5": "d4f0111b60a5511be7149b3bc28eb23e",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "330",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/c6/11/c6116aa889350965a1ffb7b1bf391dc5.jpg",
|
||||||
|
"md5": "9e16a1a8fe594e1abf6d34a8ee08df42",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2033450826884044885&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "316",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/b0/7e/b07e3d4a80658f0690435966e5c2be56.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "302",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/83/f0/83f02b9bc865e8d6d733b75b7f1d3646.png",
|
||||||
|
"md5": "7a60c6e2935d6d4c735616ce6ddced5d",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "273",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/29/7a/297aa0a6827b390d540becd0ad59f032.png",
|
||||||
|
"md5": "bef18f833355e60480d5cfb6c8025f78",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1338",
|
||||||
|
"id": "259",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/61/ad/61ad248fcd4352c430aed12655bf5496.png",
|
||||||
|
"md5": "b0a2742e3f9d5cdcac972267954ce817",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "240",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/d4/65/d465e2d336ad91e07a97440322614657.png",
|
||||||
|
"md5": "d80813695f154027fc2e75bd082ac21c",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "52",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ad/52/ad52ba60835f388696d6f81f66bf0535.png",
|
||||||
|
"md5": "f55f3db2cdac94deb8b883e60cb43c49",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "38",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T04:00:38.568+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "pt-br",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/1b/9b/1b9bf17eef6695adb93b8696ce434571.jpg",
|
||||||
|
"md5": "5839ead5bdb47558d120bf7e361d72fe",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "358",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/f4/58/f45870e3f1961c7592f88eb7d6680149.png",
|
||||||
|
"md5": "e030a67fe97a5367a40df0387cb789cd",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2029132713323603170&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Qingbo",
|
||||||
|
"id": "344",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a1/4e/a14e2f4716f2eb253514af615d0cc444.jpg",
|
||||||
|
"md5": "d4f0111b60a5511be7149b3bc28eb23e",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "330",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/c6/11/c6116aa889350965a1ffb7b1bf391dc5.jpg",
|
||||||
|
"md5": "9e16a1a8fe594e1abf6d34a8ee08df42",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2033450826884044885&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "316",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/b0/7e/b07e3d4a80658f0690435966e5c2be56.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "302",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/83/f0/83f02b9bc865e8d6d733b75b7f1d3646.png",
|
||||||
|
"md5": "7a60c6e2935d6d4c735616ce6ddced5d",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "273",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/61/ad/61ad248fcd4352c430aed12655bf5496.png",
|
||||||
|
"md5": "b0a2742e3f9d5cdcac972267954ce817",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "240",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/d4/65/d465e2d336ad91e07a97440322614657.png",
|
||||||
|
"md5": "d80813695f154027fc2e75bd082ac21c",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "52",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ad/52/ad52ba60835f388696d6f81f66bf0535.png",
|
||||||
|
"md5": "f55f3db2cdac94deb8b883e60cb43c49",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "38",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T16:00:42.370+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "pt-br",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/1b/9b/1b9bf17eef6695adb93b8696ce434571.jpg",
|
||||||
|
"md5": "5839ead5bdb47558d120bf7e361d72fe",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "358",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/f4/58/f45870e3f1961c7592f88eb7d6680149.png",
|
||||||
|
"md5": "e030a67fe97a5367a40df0387cb789cd",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2029132713323603170&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Qingbo",
|
||||||
|
"id": "344",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a1/4e/a14e2f4716f2eb253514af615d0cc444.jpg",
|
||||||
|
"md5": "d4f0111b60a5511be7149b3bc28eb23e",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "330",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/b0/7e/b07e3d4a80658f0690435966e5c2be56.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "302",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/83/f0/83f02b9bc865e8d6d733b75b7f1d3646.png",
|
||||||
|
"md5": "7a60c6e2935d6d4c735616ce6ddced5d",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "273",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/61/ad/61ad248fcd4352c430aed12655bf5496.png",
|
||||||
|
"md5": "b0a2742e3f9d5cdcac972267954ce817",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "240",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/d4/65/d465e2d336ad91e07a97440322614657.png",
|
||||||
|
"md5": "d80813695f154027fc2e75bd082ac21c",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "52",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ad/52/ad52ba60835f388696d6f81f66bf0535.png",
|
||||||
|
"md5": "f55f3db2cdac94deb8b883e60cb43c49",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "38",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-31T15:00:45.659+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "pt-br",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/1b/9b/1b9bf17eef6695adb93b8696ce434571.jpg",
|
||||||
|
"md5": "5839ead5bdb47558d120bf7e361d72fe",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "358",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/f4/58/f45870e3f1961c7592f88eb7d6680149.png",
|
||||||
|
"md5": "e030a67fe97a5367a40df0387cb789cd",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2029132713323603170&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Qingbo",
|
||||||
|
"id": "344",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a1/4e/a14e2f4716f2eb253514af615d0cc444.jpg",
|
||||||
|
"md5": "d4f0111b60a5511be7149b3bc28eb23e",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "330",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/b0/7e/b07e3d4a80658f0690435966e5c2be56.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "302",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/83/f0/83f02b9bc865e8d6d733b75b7f1d3646.png",
|
||||||
|
"md5": "7a60c6e2935d6d4c735616ce6ddced5d",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "273",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/d4/65/d465e2d336ad91e07a97440322614657.png",
|
||||||
|
"md5": "d80813695f154027fc2e75bd082ac21c",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "52",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ad/52/ad52ba60835f388696d6f81f66bf0535.png",
|
||||||
|
"md5": "f55f3db2cdac94deb8b883e60cb43c49",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "38",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-01T15:00:48.317+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "pt-br",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/1b/9b/1b9bf17eef6695adb93b8696ce434571.jpg",
|
||||||
|
"md5": "5839ead5bdb47558d120bf7e361d72fe",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "358",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a1/4e/a14e2f4716f2eb253514af615d0cc444.jpg",
|
||||||
|
"md5": "d4f0111b60a5511be7149b3bc28eb23e",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "330",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/b0/7e/b07e3d4a80658f0690435966e5c2be56.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "302",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/83/f0/83f02b9bc865e8d6d733b75b7f1d3646.png",
|
||||||
|
"md5": "7a60c6e2935d6d4c735616ce6ddced5d",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "273",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/d4/65/d465e2d336ad91e07a97440322614657.png",
|
||||||
|
"md5": "d80813695f154027fc2e75bd082ac21c",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "52",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ad/52/ad52ba60835f388696d6f81f66bf0535.png",
|
||||||
|
"md5": "f55f3db2cdac94deb8b883e60cb43c49",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "38",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-02T11:00:51.177+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "pt-br",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/f2/c3/f2c3421d0a1435c9e06d14e3829b8ea2.png",
|
||||||
|
"md5": "0dae32acbf2ec8e4d956e1de0bffed5b",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038589290462449304&hg_media=launcher&hg_link_campaign=banner&hg_link_name=wash",
|
||||||
|
"id": "386",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/1b/9b/1b9bf17eef6695adb93b8696ce434571.jpg",
|
||||||
|
"md5": "5839ead5bdb47558d120bf7e361d72fe",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "358",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a1/4e/a14e2f4716f2eb253514af615d0cc444.jpg",
|
||||||
|
"md5": "d4f0111b60a5511be7149b3bc28eb23e",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "330",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/b0/7e/b07e3d4a80658f0690435966e5c2be56.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "302",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/83/f0/83f02b9bc865e8d6d733b75b7f1d3646.png",
|
||||||
|
"md5": "7a60c6e2935d6d4c735616ce6ddced5d",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "273",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/d4/65/d465e2d336ad91e07a97440322614657.png",
|
||||||
|
"md5": "d80813695f154027fc2e75bd082ac21c",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "52",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ad/52/ad52ba60835f388696d6f81f66bf0535.png",
|
||||||
|
"md5": "f55f3db2cdac94deb8b883e60cb43c49",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "38",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-03T10:00:42.252+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "pt-br",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/f2/c3/f2c3421d0a1435c9e06d14e3829b8ea2.png",
|
||||||
|
"md5": "0dae32acbf2ec8e4d956e1de0bffed5b",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038589290462449304&hg_media=launcher&hg_link_campaign=banner&hg_link_name=wash",
|
||||||
|
"id": "386",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/43/d3/43d39f2d80073aa776abe0eeeb92eb5c.png",
|
||||||
|
"md5": "dcc1be55be6bc8df2e37fb1ddbeb4e30",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "372",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/1b/9b/1b9bf17eef6695adb93b8696ce434571.jpg",
|
||||||
|
"md5": "5839ead5bdb47558d120bf7e361d72fe",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "358",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a1/4e/a14e2f4716f2eb253514af615d0cc444.jpg",
|
||||||
|
"md5": "d4f0111b60a5511be7149b3bc28eb23e",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "330",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/b0/7e/b07e3d4a80658f0690435966e5c2be56.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "302",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/83/f0/83f02b9bc865e8d6d733b75b7f1d3646.png",
|
||||||
|
"md5": "7a60c6e2935d6d4c735616ce6ddced5d",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "273",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/d4/65/d465e2d336ad91e07a97440322614657.png",
|
||||||
|
"md5": "d80813695f154027fc2e75bd082ac21c",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "52",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ad/52/ad52ba60835f388696d6f81f66bf0535.png",
|
||||||
|
"md5": "f55f3db2cdac94deb8b883e60cb43c49",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "38",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-04T03:00:40.730+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "pt-br",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/f2/c3/f2c3421d0a1435c9e06d14e3829b8ea2.png",
|
||||||
|
"md5": "0dae32acbf2ec8e4d956e1de0bffed5b",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038589290462449304&hg_media=launcher&hg_link_campaign=banner&hg_link_name=wash",
|
||||||
|
"id": "386",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/cd/38/cd38b069f12e48a2d7cae3c0da1f6c11.png",
|
||||||
|
"md5": "2944c603abaad9c2f86e00f9fdec32fa",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038548112145123394&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Rossi",
|
||||||
|
"id": "400",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/43/d3/43d39f2d80073aa776abe0eeeb92eb5c.png",
|
||||||
|
"md5": "dcc1be55be6bc8df2e37fb1ddbeb4e30",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "372",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/1b/9b/1b9bf17eef6695adb93b8696ce434571.jpg",
|
||||||
|
"md5": "5839ead5bdb47558d120bf7e361d72fe",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "358",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a1/4e/a14e2f4716f2eb253514af615d0cc444.jpg",
|
||||||
|
"md5": "d4f0111b60a5511be7149b3bc28eb23e",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "330",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/b0/7e/b07e3d4a80658f0690435966e5c2be56.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "302",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/83/f0/83f02b9bc865e8d6d733b75b7f1d3646.png",
|
||||||
|
"md5": "7a60c6e2935d6d4c735616ce6ddced5d",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "273",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/d4/65/d465e2d336ad91e07a97440322614657.png",
|
||||||
|
"md5": "d80813695f154027fc2e75bd082ac21c",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "52",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ad/52/ad52ba60835f388696d6f81f66bf0535.png",
|
||||||
|
"md5": "f55f3db2cdac94deb8b883e60cb43c49",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "38",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-07T15:00:58.758+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "pt-br",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/f2/c3/f2c3421d0a1435c9e06d14e3829b8ea2.png",
|
||||||
|
"md5": "0dae32acbf2ec8e4d956e1de0bffed5b",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038589290462449304&hg_media=launcher&hg_link_campaign=banner&hg_link_name=wash",
|
||||||
|
"id": "386",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/cd/38/cd38b069f12e48a2d7cae3c0da1f6c11.png",
|
||||||
|
"md5": "2944c603abaad9c2f86e00f9fdec32fa",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038548112145123394&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Rossi",
|
||||||
|
"id": "400",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/43/d3/43d39f2d80073aa776abe0eeeb92eb5c.png",
|
||||||
|
"md5": "dcc1be55be6bc8df2e37fb1ddbeb4e30",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "372",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/1b/9b/1b9bf17eef6695adb93b8696ce434571.jpg",
|
||||||
|
"md5": "5839ead5bdb47558d120bf7e361d72fe",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "358",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a1/4e/a14e2f4716f2eb253514af615d0cc444.jpg",
|
||||||
|
"md5": "d4f0111b60a5511be7149b3bc28eb23e",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "330",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/83/f0/83f02b9bc865e8d6d733b75b7f1d3646.png",
|
||||||
|
"md5": "7a60c6e2935d6d4c735616ce6ddced5d",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "273",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/d4/65/d465e2d336ad91e07a97440322614657.png",
|
||||||
|
"md5": "d80813695f154027fc2e75bd082ac21c",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "52",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ad/52/ad52ba60835f388696d6f81f66bf0535.png",
|
||||||
|
"md5": "f55f3db2cdac94deb8b883e60cb43c49",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "38",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -11,24 +11,38 @@
|
|||||||
"data_version": "",
|
"data_version": "",
|
||||||
"banners": [
|
"banners": [
|
||||||
{
|
{
|
||||||
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/c6/11/c6116aa889350965a1ffb7b1bf391dc5.jpg",
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/f2/c3/f2c3421d0a1435c9e06d14e3829b8ea2.png",
|
||||||
"md5": "9e16a1a8fe594e1abf6d34a8ee08df42",
|
"md5": "0dae32acbf2ec8e4d956e1de0bffed5b",
|
||||||
"jump_url": "https://www.skport.com/article?id=2033450826884044885&hg_media=launcher&hg_link_campaign=banner",
|
"jump_url": "https://www.skport.com/article?id=2038589290462449304&hg_media=launcher&hg_link_campaign=banner&hg_link_name=wash",
|
||||||
"id": "316",
|
"id": "386",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/b0/7e/b07e3d4a80658f0690435966e5c2be56.png",
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/cd/38/cd38b069f12e48a2d7cae3c0da1f6c11.png",
|
||||||
"md5": "891cc34565de3258110cb0d81a124750",
|
"md5": "2944c603abaad9c2f86e00f9fdec32fa",
|
||||||
"jump_url": "https://store.gryphline.com/",
|
"jump_url": "https://www.skport.com/article?id=2038548112145123394&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Rossi",
|
||||||
"id": "302",
|
"id": "400",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/8d/80/8d801fc982cb970c6004e8dc6a4397f8.png",
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/43/d3/43d39f2d80073aa776abe0eeeb92eb5c.png",
|
||||||
"md5": "ffcdc65e562747862211158e151083e5",
|
"md5": "dcc1be55be6bc8df2e37fb1ddbeb4e30",
|
||||||
"jump_url": "https://www.skport.com/article?id=2028369049304242052&hg_media=launcher&hg_link_campaign=banner",
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
"id": "288",
|
"id": "372",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/1b/9b/1b9bf17eef6695adb93b8696ce434571.jpg",
|
||||||
|
"md5": "5839ead5bdb47558d120bf7e361d72fe",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "358",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a1/4e/a14e2f4716f2eb253514af615d0cc444.jpg",
|
||||||
|
"md5": "d4f0111b60a5511be7149b3bc28eb23e",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "330",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -38,20 +52,6 @@
|
|||||||
"id": "273",
|
"id": "273",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/29/7a/297aa0a6827b390d540becd0ad59f032.png",
|
|
||||||
"md5": "bef18f833355e60480d5cfb6c8025f78",
|
|
||||||
"jump_url": "https://endfield.gryphline.com/news/1338",
|
|
||||||
"id": "259",
|
|
||||||
"need_token": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/61/ad/61ad248fcd4352c430aed12655bf5496.png",
|
|
||||||
"md5": "b0a2742e3f9d5cdcac972267954ce817",
|
|
||||||
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
|
||||||
"id": "240",
|
|
||||||
"need_token": false
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/d4/65/d465e2d336ad91e07a97440322614657.png",
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/d4/65/d465e2d336ad91e07a97440322614657.png",
|
||||||
"md5": "d80813695f154027fc2e75bd082ac21c",
|
"md5": "d80813695f154027fc2e75bd082ac21c",
|
||||||
|
|||||||
@@ -325,5 +325,783 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-19T15:00:48.136+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "ru-ru",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/6b/98/6b98c388edbfb1c9edf7d86f4806e71f.jpg",
|
||||||
|
"md5": "25ee58fcab5ca5913d82582287eb0ddc",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2033450826884044885&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "313",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/69/c4/69c4c4362eae9d7a75d9ce5b5a1bc845.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "299",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/be/57/be57131435106c9f7bd2d9527e764537.png",
|
||||||
|
"md5": "bfca674740b1e0a8b114576784ec2748",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "271",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/fd/b5/fdb52f28067be4f1683b6c1fc8497bd5.png",
|
||||||
|
"md5": "b1340cc67882da591eb3e7d0b36ffff9",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1338",
|
||||||
|
"id": "256",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/d8/80/d8806b589e1fadfe57362e54b51897e5.png",
|
||||||
|
"md5": "e05b72e902eb4f1ae7f410fa1fdde63e",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "237",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a0/44/a04468c569fc1bcc7f3b4ed0c0efbc19.png",
|
||||||
|
"md5": "a8758bc23cd51baf03ae9f495d7aedd5",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "49",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/3f/52/3f52281953f8e275283bea82b0422870.png",
|
||||||
|
"md5": "5a0111ce8e562f240a48bfd759d01cf9",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "35",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-20T04:00:42.043+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "ru-ru",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/4f/56/4f5657bf2ecc733dfd91d246f6586710.jpg",
|
||||||
|
"md5": "41d35bdf5c36ba1c7c3e4b71137c574b",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "327",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/6b/98/6b98c388edbfb1c9edf7d86f4806e71f.jpg",
|
||||||
|
"md5": "25ee58fcab5ca5913d82582287eb0ddc",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2033450826884044885&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "313",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/69/c4/69c4c4362eae9d7a75d9ce5b5a1bc845.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "299",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/be/57/be57131435106c9f7bd2d9527e764537.png",
|
||||||
|
"md5": "bfca674740b1e0a8b114576784ec2748",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "271",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/fd/b5/fdb52f28067be4f1683b6c1fc8497bd5.png",
|
||||||
|
"md5": "b1340cc67882da591eb3e7d0b36ffff9",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1338",
|
||||||
|
"id": "256",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/d8/80/d8806b589e1fadfe57362e54b51897e5.png",
|
||||||
|
"md5": "e05b72e902eb4f1ae7f410fa1fdde63e",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "237",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a0/44/a04468c569fc1bcc7f3b4ed0c0efbc19.png",
|
||||||
|
"md5": "a8758bc23cd51baf03ae9f495d7aedd5",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "49",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/3f/52/3f52281953f8e275283bea82b0422870.png",
|
||||||
|
"md5": "5a0111ce8e562f240a48bfd759d01cf9",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "35",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-21T11:01:26.823+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "ru-ru",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ab/d3/abd310ebf8fd5ab564c6f7e001fb6b5b.png",
|
||||||
|
"md5": "07de30dd75bdf2723f8a0e39e4af0817",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2029132713323603170&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Qingbo",
|
||||||
|
"id": "341",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/4f/56/4f5657bf2ecc733dfd91d246f6586710.jpg",
|
||||||
|
"md5": "41d35bdf5c36ba1c7c3e4b71137c574b",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "327",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/6b/98/6b98c388edbfb1c9edf7d86f4806e71f.jpg",
|
||||||
|
"md5": "25ee58fcab5ca5913d82582287eb0ddc",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2033450826884044885&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "313",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/69/c4/69c4c4362eae9d7a75d9ce5b5a1bc845.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "299",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/be/57/be57131435106c9f7bd2d9527e764537.png",
|
||||||
|
"md5": "bfca674740b1e0a8b114576784ec2748",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "271",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/fd/b5/fdb52f28067be4f1683b6c1fc8497bd5.png",
|
||||||
|
"md5": "b1340cc67882da591eb3e7d0b36ffff9",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1338",
|
||||||
|
"id": "256",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/d8/80/d8806b589e1fadfe57362e54b51897e5.png",
|
||||||
|
"md5": "e05b72e902eb4f1ae7f410fa1fdde63e",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "237",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a0/44/a04468c569fc1bcc7f3b4ed0c0efbc19.png",
|
||||||
|
"md5": "a8758bc23cd51baf03ae9f495d7aedd5",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "49",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/3f/52/3f52281953f8e275283bea82b0422870.png",
|
||||||
|
"md5": "5a0111ce8e562f240a48bfd759d01cf9",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "35",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T04:00:38.788+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "ru-ru",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/f6/94/f694b85de44573a150547f2119e64db2.jpg",
|
||||||
|
"md5": "58f1b4060c1fcc7baf4b44c70bd78bdd",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "355",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ab/d3/abd310ebf8fd5ab564c6f7e001fb6b5b.png",
|
||||||
|
"md5": "07de30dd75bdf2723f8a0e39e4af0817",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2029132713323603170&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Qingbo",
|
||||||
|
"id": "341",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/4f/56/4f5657bf2ecc733dfd91d246f6586710.jpg",
|
||||||
|
"md5": "41d35bdf5c36ba1c7c3e4b71137c574b",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "327",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/6b/98/6b98c388edbfb1c9edf7d86f4806e71f.jpg",
|
||||||
|
"md5": "25ee58fcab5ca5913d82582287eb0ddc",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2033450826884044885&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "313",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/69/c4/69c4c4362eae9d7a75d9ce5b5a1bc845.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "299",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/be/57/be57131435106c9f7bd2d9527e764537.png",
|
||||||
|
"md5": "bfca674740b1e0a8b114576784ec2748",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "271",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/d8/80/d8806b589e1fadfe57362e54b51897e5.png",
|
||||||
|
"md5": "e05b72e902eb4f1ae7f410fa1fdde63e",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "237",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a0/44/a04468c569fc1bcc7f3b4ed0c0efbc19.png",
|
||||||
|
"md5": "a8758bc23cd51baf03ae9f495d7aedd5",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "49",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/3f/52/3f52281953f8e275283bea82b0422870.png",
|
||||||
|
"md5": "5a0111ce8e562f240a48bfd759d01cf9",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "35",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T16:00:42.504+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "ru-ru",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/f6/94/f694b85de44573a150547f2119e64db2.jpg",
|
||||||
|
"md5": "58f1b4060c1fcc7baf4b44c70bd78bdd",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "355",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ab/d3/abd310ebf8fd5ab564c6f7e001fb6b5b.png",
|
||||||
|
"md5": "07de30dd75bdf2723f8a0e39e4af0817",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2029132713323603170&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Qingbo",
|
||||||
|
"id": "341",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/4f/56/4f5657bf2ecc733dfd91d246f6586710.jpg",
|
||||||
|
"md5": "41d35bdf5c36ba1c7c3e4b71137c574b",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "327",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/69/c4/69c4c4362eae9d7a75d9ce5b5a1bc845.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "299",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/be/57/be57131435106c9f7bd2d9527e764537.png",
|
||||||
|
"md5": "bfca674740b1e0a8b114576784ec2748",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "271",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/d8/80/d8806b589e1fadfe57362e54b51897e5.png",
|
||||||
|
"md5": "e05b72e902eb4f1ae7f410fa1fdde63e",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "237",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a0/44/a04468c569fc1bcc7f3b4ed0c0efbc19.png",
|
||||||
|
"md5": "a8758bc23cd51baf03ae9f495d7aedd5",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "49",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/3f/52/3f52281953f8e275283bea82b0422870.png",
|
||||||
|
"md5": "5a0111ce8e562f240a48bfd759d01cf9",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "35",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-31T15:00:45.842+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "ru-ru",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/f6/94/f694b85de44573a150547f2119e64db2.jpg",
|
||||||
|
"md5": "58f1b4060c1fcc7baf4b44c70bd78bdd",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "355",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ab/d3/abd310ebf8fd5ab564c6f7e001fb6b5b.png",
|
||||||
|
"md5": "07de30dd75bdf2723f8a0e39e4af0817",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2029132713323603170&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Qingbo",
|
||||||
|
"id": "341",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/4f/56/4f5657bf2ecc733dfd91d246f6586710.jpg",
|
||||||
|
"md5": "41d35bdf5c36ba1c7c3e4b71137c574b",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "327",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/69/c4/69c4c4362eae9d7a75d9ce5b5a1bc845.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "299",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/be/57/be57131435106c9f7bd2d9527e764537.png",
|
||||||
|
"md5": "bfca674740b1e0a8b114576784ec2748",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "271",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a0/44/a04468c569fc1bcc7f3b4ed0c0efbc19.png",
|
||||||
|
"md5": "a8758bc23cd51baf03ae9f495d7aedd5",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "49",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/3f/52/3f52281953f8e275283bea82b0422870.png",
|
||||||
|
"md5": "5a0111ce8e562f240a48bfd759d01cf9",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "35",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-01T15:00:48.427+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "ru-ru",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/f6/94/f694b85de44573a150547f2119e64db2.jpg",
|
||||||
|
"md5": "58f1b4060c1fcc7baf4b44c70bd78bdd",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "355",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/4f/56/4f5657bf2ecc733dfd91d246f6586710.jpg",
|
||||||
|
"md5": "41d35bdf5c36ba1c7c3e4b71137c574b",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "327",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/69/c4/69c4c4362eae9d7a75d9ce5b5a1bc845.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "299",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/be/57/be57131435106c9f7bd2d9527e764537.png",
|
||||||
|
"md5": "bfca674740b1e0a8b114576784ec2748",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "271",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a0/44/a04468c569fc1bcc7f3b4ed0c0efbc19.png",
|
||||||
|
"md5": "a8758bc23cd51baf03ae9f495d7aedd5",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "49",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/3f/52/3f52281953f8e275283bea82b0422870.png",
|
||||||
|
"md5": "5a0111ce8e562f240a48bfd759d01cf9",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "35",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-02T11:00:50.459+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "ru-ru",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/47/6b/476b0ae249d090fcc2c1ee7653b8b467.png",
|
||||||
|
"md5": "b355c8151bf4c252e7f11b75c38d95a9",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038589290462449304&hg_media=launcher&hg_link_campaign=banner&hg_link_name=wash",
|
||||||
|
"id": "383",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/f6/94/f694b85de44573a150547f2119e64db2.jpg",
|
||||||
|
"md5": "58f1b4060c1fcc7baf4b44c70bd78bdd",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "355",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/4f/56/4f5657bf2ecc733dfd91d246f6586710.jpg",
|
||||||
|
"md5": "41d35bdf5c36ba1c7c3e4b71137c574b",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "327",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/69/c4/69c4c4362eae9d7a75d9ce5b5a1bc845.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "299",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/be/57/be57131435106c9f7bd2d9527e764537.png",
|
||||||
|
"md5": "bfca674740b1e0a8b114576784ec2748",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "271",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a0/44/a04468c569fc1bcc7f3b4ed0c0efbc19.png",
|
||||||
|
"md5": "a8758bc23cd51baf03ae9f495d7aedd5",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "49",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/3f/52/3f52281953f8e275283bea82b0422870.png",
|
||||||
|
"md5": "5a0111ce8e562f240a48bfd759d01cf9",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "35",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-03T10:00:42.477+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "ru-ru",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/47/6b/476b0ae249d090fcc2c1ee7653b8b467.png",
|
||||||
|
"md5": "b355c8151bf4c252e7f11b75c38d95a9",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038589290462449304&hg_media=launcher&hg_link_campaign=banner&hg_link_name=wash",
|
||||||
|
"id": "383",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/8c/c5/8cc51917920a64b092e9cf9c1ee64276.png",
|
||||||
|
"md5": "62b914f380d07a8778d64443990f0f99",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "369",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/f6/94/f694b85de44573a150547f2119e64db2.jpg",
|
||||||
|
"md5": "58f1b4060c1fcc7baf4b44c70bd78bdd",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "355",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/4f/56/4f5657bf2ecc733dfd91d246f6586710.jpg",
|
||||||
|
"md5": "41d35bdf5c36ba1c7c3e4b71137c574b",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "327",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/69/c4/69c4c4362eae9d7a75d9ce5b5a1bc845.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "299",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/be/57/be57131435106c9f7bd2d9527e764537.png",
|
||||||
|
"md5": "bfca674740b1e0a8b114576784ec2748",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "271",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a0/44/a04468c569fc1bcc7f3b4ed0c0efbc19.png",
|
||||||
|
"md5": "a8758bc23cd51baf03ae9f495d7aedd5",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "49",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/3f/52/3f52281953f8e275283bea82b0422870.png",
|
||||||
|
"md5": "5a0111ce8e562f240a48bfd759d01cf9",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "35",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-04T03:00:40.789+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "ru-ru",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/47/6b/476b0ae249d090fcc2c1ee7653b8b467.png",
|
||||||
|
"md5": "b355c8151bf4c252e7f11b75c38d95a9",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038589290462449304&hg_media=launcher&hg_link_campaign=banner&hg_link_name=wash",
|
||||||
|
"id": "383",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/d9/60/d96059f0de2e8ca1a450a37504eb769d.png",
|
||||||
|
"md5": "0146bde6fcee34e797cb2115dc075d7b",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038548112145123394&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Rossi",
|
||||||
|
"id": "397",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/8c/c5/8cc51917920a64b092e9cf9c1ee64276.png",
|
||||||
|
"md5": "62b914f380d07a8778d64443990f0f99",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "369",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/f6/94/f694b85de44573a150547f2119e64db2.jpg",
|
||||||
|
"md5": "58f1b4060c1fcc7baf4b44c70bd78bdd",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "355",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/4f/56/4f5657bf2ecc733dfd91d246f6586710.jpg",
|
||||||
|
"md5": "41d35bdf5c36ba1c7c3e4b71137c574b",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "327",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/69/c4/69c4c4362eae9d7a75d9ce5b5a1bc845.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "299",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/be/57/be57131435106c9f7bd2d9527e764537.png",
|
||||||
|
"md5": "bfca674740b1e0a8b114576784ec2748",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "271",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a0/44/a04468c569fc1bcc7f3b4ed0c0efbc19.png",
|
||||||
|
"md5": "a8758bc23cd51baf03ae9f495d7aedd5",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "49",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/3f/52/3f52281953f8e275283bea82b0422870.png",
|
||||||
|
"md5": "5a0111ce8e562f240a48bfd759d01cf9",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "35",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-07T15:00:58.968+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "ru-ru",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/47/6b/476b0ae249d090fcc2c1ee7653b8b467.png",
|
||||||
|
"md5": "b355c8151bf4c252e7f11b75c38d95a9",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038589290462449304&hg_media=launcher&hg_link_campaign=banner&hg_link_name=wash",
|
||||||
|
"id": "383",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/d9/60/d96059f0de2e8ca1a450a37504eb769d.png",
|
||||||
|
"md5": "0146bde6fcee34e797cb2115dc075d7b",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038548112145123394&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Rossi",
|
||||||
|
"id": "397",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/8c/c5/8cc51917920a64b092e9cf9c1ee64276.png",
|
||||||
|
"md5": "62b914f380d07a8778d64443990f0f99",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "369",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/f6/94/f694b85de44573a150547f2119e64db2.jpg",
|
||||||
|
"md5": "58f1b4060c1fcc7baf4b44c70bd78bdd",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "355",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/4f/56/4f5657bf2ecc733dfd91d246f6586710.jpg",
|
||||||
|
"md5": "41d35bdf5c36ba1c7c3e4b71137c574b",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "327",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/be/57/be57131435106c9f7bd2d9527e764537.png",
|
||||||
|
"md5": "bfca674740b1e0a8b114576784ec2748",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "271",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a0/44/a04468c569fc1bcc7f3b4ed0c0efbc19.png",
|
||||||
|
"md5": "a8758bc23cd51baf03ae9f495d7aedd5",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "49",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/3f/52/3f52281953f8e275283bea82b0422870.png",
|
||||||
|
"md5": "5a0111ce8e562f240a48bfd759d01cf9",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "35",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -11,24 +11,38 @@
|
|||||||
"data_version": "",
|
"data_version": "",
|
||||||
"banners": [
|
"banners": [
|
||||||
{
|
{
|
||||||
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/6b/98/6b98c388edbfb1c9edf7d86f4806e71f.jpg",
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/47/6b/476b0ae249d090fcc2c1ee7653b8b467.png",
|
||||||
"md5": "25ee58fcab5ca5913d82582287eb0ddc",
|
"md5": "b355c8151bf4c252e7f11b75c38d95a9",
|
||||||
"jump_url": "https://www.skport.com/article?id=2033450826884044885&hg_media=launcher&hg_link_campaign=banner",
|
"jump_url": "https://www.skport.com/article?id=2038589290462449304&hg_media=launcher&hg_link_campaign=banner&hg_link_name=wash",
|
||||||
"id": "313",
|
"id": "383",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/69/c4/69c4c4362eae9d7a75d9ce5b5a1bc845.png",
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/d9/60/d96059f0de2e8ca1a450a37504eb769d.png",
|
||||||
"md5": "891cc34565de3258110cb0d81a124750",
|
"md5": "0146bde6fcee34e797cb2115dc075d7b",
|
||||||
"jump_url": "https://store.gryphline.com/",
|
"jump_url": "https://www.skport.com/article?id=2038548112145123394&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Rossi",
|
||||||
"id": "299",
|
"id": "397",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a9/63/a9635d8aaa0324422bf9f2e9c8f68a9d.png",
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/8c/c5/8cc51917920a64b092e9cf9c1ee64276.png",
|
||||||
"md5": "5b9e63d7b51d3dad6b472c54d3dbd84a",
|
"md5": "62b914f380d07a8778d64443990f0f99",
|
||||||
"jump_url": "https://www.skport.com/article?id=2028369049304242052&hg_media=launcher&hg_link_campaign=banner",
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
"id": "285",
|
"id": "369",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/f6/94/f694b85de44573a150547f2119e64db2.jpg",
|
||||||
|
"md5": "58f1b4060c1fcc7baf4b44c70bd78bdd",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "355",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/4f/56/4f5657bf2ecc733dfd91d246f6586710.jpg",
|
||||||
|
"md5": "41d35bdf5c36ba1c7c3e4b71137c574b",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "327",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -38,20 +52,6 @@
|
|||||||
"id": "271",
|
"id": "271",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/fd/b5/fdb52f28067be4f1683b6c1fc8497bd5.png",
|
|
||||||
"md5": "b1340cc67882da591eb3e7d0b36ffff9",
|
|
||||||
"jump_url": "https://endfield.gryphline.com/news/1338",
|
|
||||||
"id": "256",
|
|
||||||
"need_token": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/d8/80/d8806b589e1fadfe57362e54b51897e5.png",
|
|
||||||
"md5": "e05b72e902eb4f1ae7f410fa1fdde63e",
|
|
||||||
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
|
||||||
"id": "237",
|
|
||||||
"need_token": false
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a0/44/a04468c569fc1bcc7f3b4ed0c0efbc19.png",
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a0/44/a04468c569fc1bcc7f3b4ed0c0efbc19.png",
|
||||||
"md5": "a8758bc23cd51baf03ae9f495d7aedd5",
|
"md5": "a8758bc23cd51baf03ae9f495d7aedd5",
|
||||||
|
|||||||
@@ -325,5 +325,783 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-19T15:00:48.118+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "th-th",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/05/7c/057cdab23c250546b8aaf726e0ba8c27.jpg",
|
||||||
|
"md5": "2c221703d5a8342617b60da8c2a75cfd",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2033450826884044885&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "318",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/0e/ec/0eecc35fddf0006b4e2171ed56cf0ef3.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "304",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/d0/53/d053e55f5beac3398feb45c99df73e1e.png",
|
||||||
|
"md5": "569c7851831540f2aa1ed01336fab294",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "276",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/dc/c0/dcc021fa7b3b2dfbdfbbfc4ba2bf11e4.png",
|
||||||
|
"md5": "6ba841e550047ea712d27b64c1cc3e0e",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1338",
|
||||||
|
"id": "261",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/3a/21/3a218aca101acaf0ab6d004594f35c52.png",
|
||||||
|
"md5": "c3bcb0ea20406a686c2420697d76e903",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "242",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/df/9f/df9fa64ac9e395af234c7bf5c60f9498.png",
|
||||||
|
"md5": "f7931ef24acab6a869eb5fabec49041e",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "54",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/01/d4/01d4d8eeb2aa3c46f1223c5565884019.png",
|
||||||
|
"md5": "c37ade8fca578e9e00969a7f66b125c7",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "40",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-20T04:00:42.288+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "th-th",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/b3/84/b384f2f37552741efe4d0747de332125.jpg",
|
||||||
|
"md5": "6479fdadb2f9e84ebb94800dd00ed77b",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "332",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/05/7c/057cdab23c250546b8aaf726e0ba8c27.jpg",
|
||||||
|
"md5": "2c221703d5a8342617b60da8c2a75cfd",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2033450826884044885&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "318",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/0e/ec/0eecc35fddf0006b4e2171ed56cf0ef3.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "304",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/d0/53/d053e55f5beac3398feb45c99df73e1e.png",
|
||||||
|
"md5": "569c7851831540f2aa1ed01336fab294",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "276",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/dc/c0/dcc021fa7b3b2dfbdfbbfc4ba2bf11e4.png",
|
||||||
|
"md5": "6ba841e550047ea712d27b64c1cc3e0e",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1338",
|
||||||
|
"id": "261",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/3a/21/3a218aca101acaf0ab6d004594f35c52.png",
|
||||||
|
"md5": "c3bcb0ea20406a686c2420697d76e903",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "242",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/df/9f/df9fa64ac9e395af234c7bf5c60f9498.png",
|
||||||
|
"md5": "f7931ef24acab6a869eb5fabec49041e",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "54",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/01/d4/01d4d8eeb2aa3c46f1223c5565884019.png",
|
||||||
|
"md5": "c37ade8fca578e9e00969a7f66b125c7",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "40",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-21T11:01:27.531+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "th-th",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/cc/cc/ccccb31ad9fd5123f5651103293cfe45.png",
|
||||||
|
"md5": "625ffbd590d8ffe1558de2551b3dd4d6",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2029132713323603170&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Qingbo",
|
||||||
|
"id": "346",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/b3/84/b384f2f37552741efe4d0747de332125.jpg",
|
||||||
|
"md5": "6479fdadb2f9e84ebb94800dd00ed77b",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "332",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/05/7c/057cdab23c250546b8aaf726e0ba8c27.jpg",
|
||||||
|
"md5": "2c221703d5a8342617b60da8c2a75cfd",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2033450826884044885&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "318",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/0e/ec/0eecc35fddf0006b4e2171ed56cf0ef3.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "304",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/d0/53/d053e55f5beac3398feb45c99df73e1e.png",
|
||||||
|
"md5": "569c7851831540f2aa1ed01336fab294",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "276",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/dc/c0/dcc021fa7b3b2dfbdfbbfc4ba2bf11e4.png",
|
||||||
|
"md5": "6ba841e550047ea712d27b64c1cc3e0e",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1338",
|
||||||
|
"id": "261",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/3a/21/3a218aca101acaf0ab6d004594f35c52.png",
|
||||||
|
"md5": "c3bcb0ea20406a686c2420697d76e903",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "242",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/df/9f/df9fa64ac9e395af234c7bf5c60f9498.png",
|
||||||
|
"md5": "f7931ef24acab6a869eb5fabec49041e",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "54",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/01/d4/01d4d8eeb2aa3c46f1223c5565884019.png",
|
||||||
|
"md5": "c37ade8fca578e9e00969a7f66b125c7",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "40",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T04:00:38.821+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "th-th",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/68/cc/68cc6a66fc2ac579387d7f7578d987ba.jpg",
|
||||||
|
"md5": "2b1800d30b0eec3c4ff2ff944a26ac36",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "360",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/cc/cc/ccccb31ad9fd5123f5651103293cfe45.png",
|
||||||
|
"md5": "625ffbd590d8ffe1558de2551b3dd4d6",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2029132713323603170&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Qingbo",
|
||||||
|
"id": "346",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/b3/84/b384f2f37552741efe4d0747de332125.jpg",
|
||||||
|
"md5": "6479fdadb2f9e84ebb94800dd00ed77b",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "332",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/05/7c/057cdab23c250546b8aaf726e0ba8c27.jpg",
|
||||||
|
"md5": "2c221703d5a8342617b60da8c2a75cfd",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2033450826884044885&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "318",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/0e/ec/0eecc35fddf0006b4e2171ed56cf0ef3.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "304",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/d0/53/d053e55f5beac3398feb45c99df73e1e.png",
|
||||||
|
"md5": "569c7851831540f2aa1ed01336fab294",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "276",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/3a/21/3a218aca101acaf0ab6d004594f35c52.png",
|
||||||
|
"md5": "c3bcb0ea20406a686c2420697d76e903",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "242",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/df/9f/df9fa64ac9e395af234c7bf5c60f9498.png",
|
||||||
|
"md5": "f7931ef24acab6a869eb5fabec49041e",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "54",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/01/d4/01d4d8eeb2aa3c46f1223c5565884019.png",
|
||||||
|
"md5": "c37ade8fca578e9e00969a7f66b125c7",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "40",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T16:00:42.551+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "th-th",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/68/cc/68cc6a66fc2ac579387d7f7578d987ba.jpg",
|
||||||
|
"md5": "2b1800d30b0eec3c4ff2ff944a26ac36",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "360",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/cc/cc/ccccb31ad9fd5123f5651103293cfe45.png",
|
||||||
|
"md5": "625ffbd590d8ffe1558de2551b3dd4d6",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2029132713323603170&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Qingbo",
|
||||||
|
"id": "346",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/b3/84/b384f2f37552741efe4d0747de332125.jpg",
|
||||||
|
"md5": "6479fdadb2f9e84ebb94800dd00ed77b",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "332",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/0e/ec/0eecc35fddf0006b4e2171ed56cf0ef3.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "304",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/d0/53/d053e55f5beac3398feb45c99df73e1e.png",
|
||||||
|
"md5": "569c7851831540f2aa1ed01336fab294",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "276",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/3a/21/3a218aca101acaf0ab6d004594f35c52.png",
|
||||||
|
"md5": "c3bcb0ea20406a686c2420697d76e903",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "242",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/df/9f/df9fa64ac9e395af234c7bf5c60f9498.png",
|
||||||
|
"md5": "f7931ef24acab6a869eb5fabec49041e",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "54",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/01/d4/01d4d8eeb2aa3c46f1223c5565884019.png",
|
||||||
|
"md5": "c37ade8fca578e9e00969a7f66b125c7",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "40",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-31T15:00:45.922+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "th-th",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/68/cc/68cc6a66fc2ac579387d7f7578d987ba.jpg",
|
||||||
|
"md5": "2b1800d30b0eec3c4ff2ff944a26ac36",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "360",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/cc/cc/ccccb31ad9fd5123f5651103293cfe45.png",
|
||||||
|
"md5": "625ffbd590d8ffe1558de2551b3dd4d6",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2029132713323603170&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Qingbo",
|
||||||
|
"id": "346",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/b3/84/b384f2f37552741efe4d0747de332125.jpg",
|
||||||
|
"md5": "6479fdadb2f9e84ebb94800dd00ed77b",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "332",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/0e/ec/0eecc35fddf0006b4e2171ed56cf0ef3.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "304",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/d0/53/d053e55f5beac3398feb45c99df73e1e.png",
|
||||||
|
"md5": "569c7851831540f2aa1ed01336fab294",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "276",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/df/9f/df9fa64ac9e395af234c7bf5c60f9498.png",
|
||||||
|
"md5": "f7931ef24acab6a869eb5fabec49041e",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "54",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/01/d4/01d4d8eeb2aa3c46f1223c5565884019.png",
|
||||||
|
"md5": "c37ade8fca578e9e00969a7f66b125c7",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "40",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-01T15:00:48.499+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "th-th",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/68/cc/68cc6a66fc2ac579387d7f7578d987ba.jpg",
|
||||||
|
"md5": "2b1800d30b0eec3c4ff2ff944a26ac36",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "360",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/b3/84/b384f2f37552741efe4d0747de332125.jpg",
|
||||||
|
"md5": "6479fdadb2f9e84ebb94800dd00ed77b",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "332",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/0e/ec/0eecc35fddf0006b4e2171ed56cf0ef3.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "304",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/d0/53/d053e55f5beac3398feb45c99df73e1e.png",
|
||||||
|
"md5": "569c7851831540f2aa1ed01336fab294",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "276",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/df/9f/df9fa64ac9e395af234c7bf5c60f9498.png",
|
||||||
|
"md5": "f7931ef24acab6a869eb5fabec49041e",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "54",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/01/d4/01d4d8eeb2aa3c46f1223c5565884019.png",
|
||||||
|
"md5": "c37ade8fca578e9e00969a7f66b125c7",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "40",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-02T11:00:50.508+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "th-th",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a6/ec/a6ecec35d905339801399daa8c2c126e.png",
|
||||||
|
"md5": "469a1ed044df4874ab28f6f67eeeb7e8",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038589290462449304&hg_media=launcher&hg_link_campaign=banner&hg_link_name=wash",
|
||||||
|
"id": "388",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/68/cc/68cc6a66fc2ac579387d7f7578d987ba.jpg",
|
||||||
|
"md5": "2b1800d30b0eec3c4ff2ff944a26ac36",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "360",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/b3/84/b384f2f37552741efe4d0747de332125.jpg",
|
||||||
|
"md5": "6479fdadb2f9e84ebb94800dd00ed77b",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "332",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/0e/ec/0eecc35fddf0006b4e2171ed56cf0ef3.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "304",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/d0/53/d053e55f5beac3398feb45c99df73e1e.png",
|
||||||
|
"md5": "569c7851831540f2aa1ed01336fab294",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "276",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/df/9f/df9fa64ac9e395af234c7bf5c60f9498.png",
|
||||||
|
"md5": "f7931ef24acab6a869eb5fabec49041e",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "54",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/01/d4/01d4d8eeb2aa3c46f1223c5565884019.png",
|
||||||
|
"md5": "c37ade8fca578e9e00969a7f66b125c7",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "40",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-03T10:00:42.733+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "th-th",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a6/ec/a6ecec35d905339801399daa8c2c126e.png",
|
||||||
|
"md5": "469a1ed044df4874ab28f6f67eeeb7e8",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038589290462449304&hg_media=launcher&hg_link_campaign=banner&hg_link_name=wash",
|
||||||
|
"id": "388",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ce/ca/ceca08e85606df437d0b71aa92ea5f00.png",
|
||||||
|
"md5": "d112fdee98560893826deaf196cfb3ad",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "374",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/68/cc/68cc6a66fc2ac579387d7f7578d987ba.jpg",
|
||||||
|
"md5": "2b1800d30b0eec3c4ff2ff944a26ac36",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "360",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/b3/84/b384f2f37552741efe4d0747de332125.jpg",
|
||||||
|
"md5": "6479fdadb2f9e84ebb94800dd00ed77b",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "332",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/0e/ec/0eecc35fddf0006b4e2171ed56cf0ef3.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "304",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/d0/53/d053e55f5beac3398feb45c99df73e1e.png",
|
||||||
|
"md5": "569c7851831540f2aa1ed01336fab294",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "276",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/df/9f/df9fa64ac9e395af234c7bf5c60f9498.png",
|
||||||
|
"md5": "f7931ef24acab6a869eb5fabec49041e",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "54",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/01/d4/01d4d8eeb2aa3c46f1223c5565884019.png",
|
||||||
|
"md5": "c37ade8fca578e9e00969a7f66b125c7",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "40",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-04T03:00:40.838+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "th-th",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a6/ec/a6ecec35d905339801399daa8c2c126e.png",
|
||||||
|
"md5": "469a1ed044df4874ab28f6f67eeeb7e8",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038589290462449304&hg_media=launcher&hg_link_campaign=banner&hg_link_name=wash",
|
||||||
|
"id": "388",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a0/b4/a0b4610dbb76ec477a3016abc68b529c.png",
|
||||||
|
"md5": "58511aa8474a8c00526f624063a44ed5",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038548112145123394&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Rossi",
|
||||||
|
"id": "402",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ce/ca/ceca08e85606df437d0b71aa92ea5f00.png",
|
||||||
|
"md5": "d112fdee98560893826deaf196cfb3ad",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "374",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/68/cc/68cc6a66fc2ac579387d7f7578d987ba.jpg",
|
||||||
|
"md5": "2b1800d30b0eec3c4ff2ff944a26ac36",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "360",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/b3/84/b384f2f37552741efe4d0747de332125.jpg",
|
||||||
|
"md5": "6479fdadb2f9e84ebb94800dd00ed77b",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "332",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/0e/ec/0eecc35fddf0006b4e2171ed56cf0ef3.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "304",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/d0/53/d053e55f5beac3398feb45c99df73e1e.png",
|
||||||
|
"md5": "569c7851831540f2aa1ed01336fab294",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "276",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/df/9f/df9fa64ac9e395af234c7bf5c60f9498.png",
|
||||||
|
"md5": "f7931ef24acab6a869eb5fabec49041e",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "54",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/01/d4/01d4d8eeb2aa3c46f1223c5565884019.png",
|
||||||
|
"md5": "c37ade8fca578e9e00969a7f66b125c7",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "40",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-07T15:00:59.035+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "th-th",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a6/ec/a6ecec35d905339801399daa8c2c126e.png",
|
||||||
|
"md5": "469a1ed044df4874ab28f6f67eeeb7e8",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038589290462449304&hg_media=launcher&hg_link_campaign=banner&hg_link_name=wash",
|
||||||
|
"id": "388",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a0/b4/a0b4610dbb76ec477a3016abc68b529c.png",
|
||||||
|
"md5": "58511aa8474a8c00526f624063a44ed5",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038548112145123394&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Rossi",
|
||||||
|
"id": "402",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ce/ca/ceca08e85606df437d0b71aa92ea5f00.png",
|
||||||
|
"md5": "d112fdee98560893826deaf196cfb3ad",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "374",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/68/cc/68cc6a66fc2ac579387d7f7578d987ba.jpg",
|
||||||
|
"md5": "2b1800d30b0eec3c4ff2ff944a26ac36",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "360",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/b3/84/b384f2f37552741efe4d0747de332125.jpg",
|
||||||
|
"md5": "6479fdadb2f9e84ebb94800dd00ed77b",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "332",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/d0/53/d053e55f5beac3398feb45c99df73e1e.png",
|
||||||
|
"md5": "569c7851831540f2aa1ed01336fab294",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "276",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/df/9f/df9fa64ac9e395af234c7bf5c60f9498.png",
|
||||||
|
"md5": "f7931ef24acab6a869eb5fabec49041e",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "54",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/01/d4/01d4d8eeb2aa3c46f1223c5565884019.png",
|
||||||
|
"md5": "c37ade8fca578e9e00969a7f66b125c7",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "40",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -11,24 +11,38 @@
|
|||||||
"data_version": "",
|
"data_version": "",
|
||||||
"banners": [
|
"banners": [
|
||||||
{
|
{
|
||||||
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/05/7c/057cdab23c250546b8aaf726e0ba8c27.jpg",
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a6/ec/a6ecec35d905339801399daa8c2c126e.png",
|
||||||
"md5": "2c221703d5a8342617b60da8c2a75cfd",
|
"md5": "469a1ed044df4874ab28f6f67eeeb7e8",
|
||||||
"jump_url": "https://www.skport.com/article?id=2033450826884044885&hg_media=launcher&hg_link_campaign=banner",
|
"jump_url": "https://www.skport.com/article?id=2038589290462449304&hg_media=launcher&hg_link_campaign=banner&hg_link_name=wash",
|
||||||
"id": "318",
|
"id": "388",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/0e/ec/0eecc35fddf0006b4e2171ed56cf0ef3.png",
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a0/b4/a0b4610dbb76ec477a3016abc68b529c.png",
|
||||||
"md5": "891cc34565de3258110cb0d81a124750",
|
"md5": "58511aa8474a8c00526f624063a44ed5",
|
||||||
"jump_url": "https://store.gryphline.com/",
|
"jump_url": "https://www.skport.com/article?id=2038548112145123394&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Rossi",
|
||||||
"id": "304",
|
"id": "402",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a7/eb/a7eb5907b13aa8ab7927561bd12907d3.png",
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ce/ca/ceca08e85606df437d0b71aa92ea5f00.png",
|
||||||
"md5": "09c356148c77cae0379d3eaee163540f",
|
"md5": "d112fdee98560893826deaf196cfb3ad",
|
||||||
"jump_url": "https://www.skport.com/article?id=2028369049304242052&hg_media=launcher&hg_link_campaign=banner",
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
"id": "290",
|
"id": "374",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/68/cc/68cc6a66fc2ac579387d7f7578d987ba.jpg",
|
||||||
|
"md5": "2b1800d30b0eec3c4ff2ff944a26ac36",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "360",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/b3/84/b384f2f37552741efe4d0747de332125.jpg",
|
||||||
|
"md5": "6479fdadb2f9e84ebb94800dd00ed77b",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "332",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -38,20 +52,6 @@
|
|||||||
"id": "276",
|
"id": "276",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/dc/c0/dcc021fa7b3b2dfbdfbbfc4ba2bf11e4.png",
|
|
||||||
"md5": "6ba841e550047ea712d27b64c1cc3e0e",
|
|
||||||
"jump_url": "https://endfield.gryphline.com/news/1338",
|
|
||||||
"id": "261",
|
|
||||||
"need_token": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/3a/21/3a218aca101acaf0ab6d004594f35c52.png",
|
|
||||||
"md5": "c3bcb0ea20406a686c2420697d76e903",
|
|
||||||
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
|
||||||
"id": "242",
|
|
||||||
"need_token": false
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/df/9f/df9fa64ac9e395af234c7bf5c60f9498.png",
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/df/9f/df9fa64ac9e395af234c7bf5c60f9498.png",
|
||||||
"md5": "f7931ef24acab6a869eb5fabec49041e",
|
"md5": "f7931ef24acab6a869eb5fabec49041e",
|
||||||
|
|||||||
@@ -325,5 +325,783 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-19T15:00:48.165+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "vi-vn",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/b1/45/b1452ff9a475d0c0434b527c83a92f7e.jpg",
|
||||||
|
"md5": "4c1e4d8ee875f8d64a512cdfbdb682e6",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2033450826884044885&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "319",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/82/ab/82ab5bc1c580853c9f5abe9f8dcc4b8a.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "305",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/28/6c/286cd184fc03df1a3b392afe3183240d.png",
|
||||||
|
"md5": "b0a62f30a32534369fc83d9c35a2fcc9",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "277",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/1d/5d/1d5d51e77fc1a74028d78f4c8001958d.png",
|
||||||
|
"md5": "40ddd162666868d851be55daa0037138",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1338",
|
||||||
|
"id": "262",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/bc/9f/bc9f18c7de8414f50d5821a3da9265e5.png",
|
||||||
|
"md5": "c55fcaadb6e75b3a495c2f49274deef4",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "243",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ca/b8/cab8a05b8f33511876023a0631de9f6d.png",
|
||||||
|
"md5": "623b7c2c51e101ee7a8a24cf1d0aa62b",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "55",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/b8/13/b8137ae79aeb62d88e33f2fe65361030.png",
|
||||||
|
"md5": "6fc0b20782769182cc4fb6cbafb0415b",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "41",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-20T04:00:42.385+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "vi-vn",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/8d/07/8d07ebc211013d63b214293a2c579973.jpg",
|
||||||
|
"md5": "f1406e35159361d2d57510e0fc5785dd",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "333",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/b1/45/b1452ff9a475d0c0434b527c83a92f7e.jpg",
|
||||||
|
"md5": "4c1e4d8ee875f8d64a512cdfbdb682e6",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2033450826884044885&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "319",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/82/ab/82ab5bc1c580853c9f5abe9f8dcc4b8a.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "305",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/28/6c/286cd184fc03df1a3b392afe3183240d.png",
|
||||||
|
"md5": "b0a62f30a32534369fc83d9c35a2fcc9",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "277",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/1d/5d/1d5d51e77fc1a74028d78f4c8001958d.png",
|
||||||
|
"md5": "40ddd162666868d851be55daa0037138",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1338",
|
||||||
|
"id": "262",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/bc/9f/bc9f18c7de8414f50d5821a3da9265e5.png",
|
||||||
|
"md5": "c55fcaadb6e75b3a495c2f49274deef4",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "243",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ca/b8/cab8a05b8f33511876023a0631de9f6d.png",
|
||||||
|
"md5": "623b7c2c51e101ee7a8a24cf1d0aa62b",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "55",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/b8/13/b8137ae79aeb62d88e33f2fe65361030.png",
|
||||||
|
"md5": "6fc0b20782769182cc4fb6cbafb0415b",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "41",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-21T11:01:27.076+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "vi-vn",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/b5/31/b531236ce51108b621e87f34e4191e01.png",
|
||||||
|
"md5": "91e2931a0a12b384fecbba23b0509552",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2029132713323603170&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Qingbo",
|
||||||
|
"id": "347",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/8d/07/8d07ebc211013d63b214293a2c579973.jpg",
|
||||||
|
"md5": "f1406e35159361d2d57510e0fc5785dd",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "333",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/b1/45/b1452ff9a475d0c0434b527c83a92f7e.jpg",
|
||||||
|
"md5": "4c1e4d8ee875f8d64a512cdfbdb682e6",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2033450826884044885&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "319",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/82/ab/82ab5bc1c580853c9f5abe9f8dcc4b8a.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "305",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/28/6c/286cd184fc03df1a3b392afe3183240d.png",
|
||||||
|
"md5": "b0a62f30a32534369fc83d9c35a2fcc9",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "277",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/1d/5d/1d5d51e77fc1a74028d78f4c8001958d.png",
|
||||||
|
"md5": "40ddd162666868d851be55daa0037138",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1338",
|
||||||
|
"id": "262",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/bc/9f/bc9f18c7de8414f50d5821a3da9265e5.png",
|
||||||
|
"md5": "c55fcaadb6e75b3a495c2f49274deef4",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "243",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ca/b8/cab8a05b8f33511876023a0631de9f6d.png",
|
||||||
|
"md5": "623b7c2c51e101ee7a8a24cf1d0aa62b",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "55",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/b8/13/b8137ae79aeb62d88e33f2fe65361030.png",
|
||||||
|
"md5": "6fc0b20782769182cc4fb6cbafb0415b",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "41",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T04:00:38.816+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "vi-vn",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/5a/66/5a662d8de2d91c1b2fb03e26c491564e.jpg",
|
||||||
|
"md5": "3187e45e756ff3264fc1381889588871",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "361",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/b5/31/b531236ce51108b621e87f34e4191e01.png",
|
||||||
|
"md5": "91e2931a0a12b384fecbba23b0509552",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2029132713323603170&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Qingbo",
|
||||||
|
"id": "347",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/8d/07/8d07ebc211013d63b214293a2c579973.jpg",
|
||||||
|
"md5": "f1406e35159361d2d57510e0fc5785dd",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "333",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/b1/45/b1452ff9a475d0c0434b527c83a92f7e.jpg",
|
||||||
|
"md5": "4c1e4d8ee875f8d64a512cdfbdb682e6",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2033450826884044885&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "319",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/82/ab/82ab5bc1c580853c9f5abe9f8dcc4b8a.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "305",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/28/6c/286cd184fc03df1a3b392afe3183240d.png",
|
||||||
|
"md5": "b0a62f30a32534369fc83d9c35a2fcc9",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "277",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/bc/9f/bc9f18c7de8414f50d5821a3da9265e5.png",
|
||||||
|
"md5": "c55fcaadb6e75b3a495c2f49274deef4",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "243",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ca/b8/cab8a05b8f33511876023a0631de9f6d.png",
|
||||||
|
"md5": "623b7c2c51e101ee7a8a24cf1d0aa62b",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "55",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/b8/13/b8137ae79aeb62d88e33f2fe65361030.png",
|
||||||
|
"md5": "6fc0b20782769182cc4fb6cbafb0415b",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "41",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T16:00:42.578+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "vi-vn",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/5a/66/5a662d8de2d91c1b2fb03e26c491564e.jpg",
|
||||||
|
"md5": "3187e45e756ff3264fc1381889588871",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "361",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/b5/31/b531236ce51108b621e87f34e4191e01.png",
|
||||||
|
"md5": "91e2931a0a12b384fecbba23b0509552",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2029132713323603170&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Qingbo",
|
||||||
|
"id": "347",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/8d/07/8d07ebc211013d63b214293a2c579973.jpg",
|
||||||
|
"md5": "f1406e35159361d2d57510e0fc5785dd",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "333",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/82/ab/82ab5bc1c580853c9f5abe9f8dcc4b8a.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "305",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/28/6c/286cd184fc03df1a3b392afe3183240d.png",
|
||||||
|
"md5": "b0a62f30a32534369fc83d9c35a2fcc9",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "277",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/bc/9f/bc9f18c7de8414f50d5821a3da9265e5.png",
|
||||||
|
"md5": "c55fcaadb6e75b3a495c2f49274deef4",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "243",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ca/b8/cab8a05b8f33511876023a0631de9f6d.png",
|
||||||
|
"md5": "623b7c2c51e101ee7a8a24cf1d0aa62b",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "55",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/b8/13/b8137ae79aeb62d88e33f2fe65361030.png",
|
||||||
|
"md5": "6fc0b20782769182cc4fb6cbafb0415b",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "41",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-31T15:00:45.920+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "vi-vn",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/5a/66/5a662d8de2d91c1b2fb03e26c491564e.jpg",
|
||||||
|
"md5": "3187e45e756ff3264fc1381889588871",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "361",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/b5/31/b531236ce51108b621e87f34e4191e01.png",
|
||||||
|
"md5": "91e2931a0a12b384fecbba23b0509552",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2029132713323603170&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Qingbo",
|
||||||
|
"id": "347",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/8d/07/8d07ebc211013d63b214293a2c579973.jpg",
|
||||||
|
"md5": "f1406e35159361d2d57510e0fc5785dd",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "333",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/82/ab/82ab5bc1c580853c9f5abe9f8dcc4b8a.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "305",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/28/6c/286cd184fc03df1a3b392afe3183240d.png",
|
||||||
|
"md5": "b0a62f30a32534369fc83d9c35a2fcc9",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "277",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ca/b8/cab8a05b8f33511876023a0631de9f6d.png",
|
||||||
|
"md5": "623b7c2c51e101ee7a8a24cf1d0aa62b",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "55",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/b8/13/b8137ae79aeb62d88e33f2fe65361030.png",
|
||||||
|
"md5": "6fc0b20782769182cc4fb6cbafb0415b",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "41",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-01T15:00:48.608+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "vi-vn",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/5a/66/5a662d8de2d91c1b2fb03e26c491564e.jpg",
|
||||||
|
"md5": "3187e45e756ff3264fc1381889588871",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "361",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/8d/07/8d07ebc211013d63b214293a2c579973.jpg",
|
||||||
|
"md5": "f1406e35159361d2d57510e0fc5785dd",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "333",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/82/ab/82ab5bc1c580853c9f5abe9f8dcc4b8a.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "305",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/28/6c/286cd184fc03df1a3b392afe3183240d.png",
|
||||||
|
"md5": "b0a62f30a32534369fc83d9c35a2fcc9",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "277",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ca/b8/cab8a05b8f33511876023a0631de9f6d.png",
|
||||||
|
"md5": "623b7c2c51e101ee7a8a24cf1d0aa62b",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "55",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/b8/13/b8137ae79aeb62d88e33f2fe65361030.png",
|
||||||
|
"md5": "6fc0b20782769182cc4fb6cbafb0415b",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "41",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-02T11:00:50.695+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "vi-vn",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/18/21/1821551d936c1062a2fc6f0d217ed0d7.png",
|
||||||
|
"md5": "997be954d37e35902fef30b6538dc21b",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038589290462449304&hg_media=launcher&hg_link_campaign=banner&hg_link_name=wash",
|
||||||
|
"id": "389",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/5a/66/5a662d8de2d91c1b2fb03e26c491564e.jpg",
|
||||||
|
"md5": "3187e45e756ff3264fc1381889588871",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "361",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/8d/07/8d07ebc211013d63b214293a2c579973.jpg",
|
||||||
|
"md5": "f1406e35159361d2d57510e0fc5785dd",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "333",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/82/ab/82ab5bc1c580853c9f5abe9f8dcc4b8a.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "305",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/28/6c/286cd184fc03df1a3b392afe3183240d.png",
|
||||||
|
"md5": "b0a62f30a32534369fc83d9c35a2fcc9",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "277",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ca/b8/cab8a05b8f33511876023a0631de9f6d.png",
|
||||||
|
"md5": "623b7c2c51e101ee7a8a24cf1d0aa62b",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "55",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/b8/13/b8137ae79aeb62d88e33f2fe65361030.png",
|
||||||
|
"md5": "6fc0b20782769182cc4fb6cbafb0415b",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "41",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-03T10:00:42.518+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "vi-vn",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/18/21/1821551d936c1062a2fc6f0d217ed0d7.png",
|
||||||
|
"md5": "997be954d37e35902fef30b6538dc21b",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038589290462449304&hg_media=launcher&hg_link_campaign=banner&hg_link_name=wash",
|
||||||
|
"id": "389",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/6f/15/6f15b4d479cf63c36ae3f43aed7c5981.png",
|
||||||
|
"md5": "1f35d78d81bfa1ba0a9c5ad15711a061",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "375",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/5a/66/5a662d8de2d91c1b2fb03e26c491564e.jpg",
|
||||||
|
"md5": "3187e45e756ff3264fc1381889588871",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "361",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/8d/07/8d07ebc211013d63b214293a2c579973.jpg",
|
||||||
|
"md5": "f1406e35159361d2d57510e0fc5785dd",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "333",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/82/ab/82ab5bc1c580853c9f5abe9f8dcc4b8a.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "305",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/28/6c/286cd184fc03df1a3b392afe3183240d.png",
|
||||||
|
"md5": "b0a62f30a32534369fc83d9c35a2fcc9",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "277",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ca/b8/cab8a05b8f33511876023a0631de9f6d.png",
|
||||||
|
"md5": "623b7c2c51e101ee7a8a24cf1d0aa62b",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "55",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/b8/13/b8137ae79aeb62d88e33f2fe65361030.png",
|
||||||
|
"md5": "6fc0b20782769182cc4fb6cbafb0415b",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "41",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-04T03:00:41.009+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "vi-vn",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/18/21/1821551d936c1062a2fc6f0d217ed0d7.png",
|
||||||
|
"md5": "997be954d37e35902fef30b6538dc21b",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038589290462449304&hg_media=launcher&hg_link_campaign=banner&hg_link_name=wash",
|
||||||
|
"id": "389",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/10/38/103836e269c0f6256d2aa492a3da2d34.png",
|
||||||
|
"md5": "f27776f72849056393c7a32ec87a8ef5",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038548112145123394&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Rossi",
|
||||||
|
"id": "403",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/6f/15/6f15b4d479cf63c36ae3f43aed7c5981.png",
|
||||||
|
"md5": "1f35d78d81bfa1ba0a9c5ad15711a061",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "375",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/5a/66/5a662d8de2d91c1b2fb03e26c491564e.jpg",
|
||||||
|
"md5": "3187e45e756ff3264fc1381889588871",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "361",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/8d/07/8d07ebc211013d63b214293a2c579973.jpg",
|
||||||
|
"md5": "f1406e35159361d2d57510e0fc5785dd",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "333",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/82/ab/82ab5bc1c580853c9f5abe9f8dcc4b8a.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "305",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/28/6c/286cd184fc03df1a3b392afe3183240d.png",
|
||||||
|
"md5": "b0a62f30a32534369fc83d9c35a2fcc9",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "277",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ca/b8/cab8a05b8f33511876023a0631de9f6d.png",
|
||||||
|
"md5": "623b7c2c51e101ee7a8a24cf1d0aa62b",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "55",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/b8/13/b8137ae79aeb62d88e33f2fe65361030.png",
|
||||||
|
"md5": "6fc0b20782769182cc4fb6cbafb0415b",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "41",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-07T15:00:59.404+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "vi-vn",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/18/21/1821551d936c1062a2fc6f0d217ed0d7.png",
|
||||||
|
"md5": "997be954d37e35902fef30b6538dc21b",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038589290462449304&hg_media=launcher&hg_link_campaign=banner&hg_link_name=wash",
|
||||||
|
"id": "389",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/10/38/103836e269c0f6256d2aa492a3da2d34.png",
|
||||||
|
"md5": "f27776f72849056393c7a32ec87a8ef5",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038548112145123394&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Rossi",
|
||||||
|
"id": "403",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/6f/15/6f15b4d479cf63c36ae3f43aed7c5981.png",
|
||||||
|
"md5": "1f35d78d81bfa1ba0a9c5ad15711a061",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "375",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/5a/66/5a662d8de2d91c1b2fb03e26c491564e.jpg",
|
||||||
|
"md5": "3187e45e756ff3264fc1381889588871",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "361",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/8d/07/8d07ebc211013d63b214293a2c579973.jpg",
|
||||||
|
"md5": "f1406e35159361d2d57510e0fc5785dd",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "333",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/28/6c/286cd184fc03df1a3b392afe3183240d.png",
|
||||||
|
"md5": "b0a62f30a32534369fc83d9c35a2fcc9",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "277",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ca/b8/cab8a05b8f33511876023a0631de9f6d.png",
|
||||||
|
"md5": "623b7c2c51e101ee7a8a24cf1d0aa62b",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "55",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/b8/13/b8137ae79aeb62d88e33f2fe65361030.png",
|
||||||
|
"md5": "6fc0b20782769182cc4fb6cbafb0415b",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "41",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -11,24 +11,38 @@
|
|||||||
"data_version": "",
|
"data_version": "",
|
||||||
"banners": [
|
"banners": [
|
||||||
{
|
{
|
||||||
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/b1/45/b1452ff9a475d0c0434b527c83a92f7e.jpg",
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/18/21/1821551d936c1062a2fc6f0d217ed0d7.png",
|
||||||
"md5": "4c1e4d8ee875f8d64a512cdfbdb682e6",
|
"md5": "997be954d37e35902fef30b6538dc21b",
|
||||||
"jump_url": "https://www.skport.com/article?id=2033450826884044885&hg_media=launcher&hg_link_campaign=banner",
|
"jump_url": "https://www.skport.com/article?id=2038589290462449304&hg_media=launcher&hg_link_campaign=banner&hg_link_name=wash",
|
||||||
"id": "319",
|
"id": "389",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/82/ab/82ab5bc1c580853c9f5abe9f8dcc4b8a.png",
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/10/38/103836e269c0f6256d2aa492a3da2d34.png",
|
||||||
"md5": "891cc34565de3258110cb0d81a124750",
|
"md5": "f27776f72849056393c7a32ec87a8ef5",
|
||||||
"jump_url": "https://store.gryphline.com/",
|
"jump_url": "https://www.skport.com/article?id=2038548112145123394&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Rossi",
|
||||||
"id": "305",
|
"id": "403",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/81/e3/81e34a8333eae8b5283c345ec34dd534.png",
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/6f/15/6f15b4d479cf63c36ae3f43aed7c5981.png",
|
||||||
"md5": "c2e76ebeb9372c7d40104390142d958b",
|
"md5": "1f35d78d81bfa1ba0a9c5ad15711a061",
|
||||||
"jump_url": "https://www.skport.com/article?id=2028369049304242052&hg_media=launcher&hg_link_campaign=banner",
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
"id": "291",
|
"id": "375",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/5a/66/5a662d8de2d91c1b2fb03e26c491564e.jpg",
|
||||||
|
"md5": "3187e45e756ff3264fc1381889588871",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "361",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/8d/07/8d07ebc211013d63b214293a2c579973.jpg",
|
||||||
|
"md5": "f1406e35159361d2d57510e0fc5785dd",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "333",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -38,20 +52,6 @@
|
|||||||
"id": "277",
|
"id": "277",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/1d/5d/1d5d51e77fc1a74028d78f4c8001958d.png",
|
|
||||||
"md5": "40ddd162666868d851be55daa0037138",
|
|
||||||
"jump_url": "https://endfield.gryphline.com/news/1338",
|
|
||||||
"id": "262",
|
|
||||||
"need_token": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/bc/9f/bc9f18c7de8414f50d5821a3da9265e5.png",
|
|
||||||
"md5": "c55fcaadb6e75b3a495c2f49274deef4",
|
|
||||||
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
|
||||||
"id": "243",
|
|
||||||
"need_token": false
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ca/b8/cab8a05b8f33511876023a0631de9f6d.png",
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ca/b8/cab8a05b8f33511876023a0631de9f6d.png",
|
||||||
"md5": "623b7c2c51e101ee7a8a24cf1d0aa62b",
|
"md5": "623b7c2c51e101ee7a8a24cf1d0aa62b",
|
||||||
|
|||||||
@@ -325,5 +325,783 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-19T15:00:48.854+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "zh-cn",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/7c/ad/7cad92ab45f298ddd01218ee69eef855.jpg",
|
||||||
|
"md5": "a484117f3a3f519481034ce183f607e1",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2033450826884044885&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "307",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/b3/ce/b3ce51ad5b054eafda156a75af4a2bb7.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "293",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/64/c8/64c8a4f2b31bae2719835201da187b9c.jpg",
|
||||||
|
"md5": "6e114ae8b8898fb1dd114e8cc6079c03",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "265",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/c6/82/c682be2c723a32a21f8c45d253478315.png",
|
||||||
|
"md5": "8cd7f0e1cdb44b0862b994fc3604dc99",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1338",
|
||||||
|
"id": "264",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ec/a8/eca8133c131e891d0a385349b29a9d04.png",
|
||||||
|
"md5": "ffb15c0b26e899c78cf5699e7594660d",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "231",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a2/8e/a28e45408be9f8b8fd88ca8455478f09.png",
|
||||||
|
"md5": "dc695903d0d1dcb249c87c72503be3ce",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "43",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/cc/fd/ccfd3c11effa448d8cb32d941ac35b94.jpg",
|
||||||
|
"md5": "f0928339630065b821516198fd61af82",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/zh-tw/news/4499",
|
||||||
|
"id": "29",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-20T04:00:42.357+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "zh-cn",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/4d/93/4d9314514a9d6893789b097645415d45.jpg",
|
||||||
|
"md5": "80940d070090ee4f9e6aa0e104e2d1d8",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "321",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/7c/ad/7cad92ab45f298ddd01218ee69eef855.jpg",
|
||||||
|
"md5": "a484117f3a3f519481034ce183f607e1",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2033450826884044885&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "307",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/b3/ce/b3ce51ad5b054eafda156a75af4a2bb7.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "293",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/64/c8/64c8a4f2b31bae2719835201da187b9c.jpg",
|
||||||
|
"md5": "6e114ae8b8898fb1dd114e8cc6079c03",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "265",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/c6/82/c682be2c723a32a21f8c45d253478315.png",
|
||||||
|
"md5": "8cd7f0e1cdb44b0862b994fc3604dc99",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1338",
|
||||||
|
"id": "264",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ec/a8/eca8133c131e891d0a385349b29a9d04.png",
|
||||||
|
"md5": "ffb15c0b26e899c78cf5699e7594660d",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "231",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a2/8e/a28e45408be9f8b8fd88ca8455478f09.png",
|
||||||
|
"md5": "dc695903d0d1dcb249c87c72503be3ce",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "43",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/cc/fd/ccfd3c11effa448d8cb32d941ac35b94.jpg",
|
||||||
|
"md5": "f0928339630065b821516198fd61af82",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/zh-tw/news/4499",
|
||||||
|
"id": "29",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-21T11:01:27.238+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "zh-cn",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/9e/8d/9e8d77e18ed6f57c33a6246373837568.png",
|
||||||
|
"md5": "8987a12fb93115e98ed257882887579c",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2029132713323603170&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Qingbo",
|
||||||
|
"id": "335",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/4d/93/4d9314514a9d6893789b097645415d45.jpg",
|
||||||
|
"md5": "80940d070090ee4f9e6aa0e104e2d1d8",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "321",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/7c/ad/7cad92ab45f298ddd01218ee69eef855.jpg",
|
||||||
|
"md5": "a484117f3a3f519481034ce183f607e1",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2033450826884044885&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "307",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/b3/ce/b3ce51ad5b054eafda156a75af4a2bb7.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "293",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/64/c8/64c8a4f2b31bae2719835201da187b9c.jpg",
|
||||||
|
"md5": "6e114ae8b8898fb1dd114e8cc6079c03",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "265",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/c6/82/c682be2c723a32a21f8c45d253478315.png",
|
||||||
|
"md5": "8cd7f0e1cdb44b0862b994fc3604dc99",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1338",
|
||||||
|
"id": "264",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ec/a8/eca8133c131e891d0a385349b29a9d04.png",
|
||||||
|
"md5": "ffb15c0b26e899c78cf5699e7594660d",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "231",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a2/8e/a28e45408be9f8b8fd88ca8455478f09.png",
|
||||||
|
"md5": "dc695903d0d1dcb249c87c72503be3ce",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "43",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/cc/fd/ccfd3c11effa448d8cb32d941ac35b94.jpg",
|
||||||
|
"md5": "f0928339630065b821516198fd61af82",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/zh-tw/news/4499",
|
||||||
|
"id": "29",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T04:00:39.020+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "zh-cn",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/4f/4f/4f4f483e11777ea310ad4fc4860a5b63.jpg",
|
||||||
|
"md5": "ab1514ec29ea624a0e1c0290026a8f15",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "349",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/9e/8d/9e8d77e18ed6f57c33a6246373837568.png",
|
||||||
|
"md5": "8987a12fb93115e98ed257882887579c",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2029132713323603170&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Qingbo",
|
||||||
|
"id": "335",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/4d/93/4d9314514a9d6893789b097645415d45.jpg",
|
||||||
|
"md5": "80940d070090ee4f9e6aa0e104e2d1d8",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "321",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/7c/ad/7cad92ab45f298ddd01218ee69eef855.jpg",
|
||||||
|
"md5": "a484117f3a3f519481034ce183f607e1",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2033450826884044885&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "307",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/b3/ce/b3ce51ad5b054eafda156a75af4a2bb7.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "293",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/64/c8/64c8a4f2b31bae2719835201da187b9c.jpg",
|
||||||
|
"md5": "6e114ae8b8898fb1dd114e8cc6079c03",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "265",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ec/a8/eca8133c131e891d0a385349b29a9d04.png",
|
||||||
|
"md5": "ffb15c0b26e899c78cf5699e7594660d",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "231",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a2/8e/a28e45408be9f8b8fd88ca8455478f09.png",
|
||||||
|
"md5": "dc695903d0d1dcb249c87c72503be3ce",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "43",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/cc/fd/ccfd3c11effa448d8cb32d941ac35b94.jpg",
|
||||||
|
"md5": "f0928339630065b821516198fd61af82",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/zh-tw/news/4499",
|
||||||
|
"id": "29",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T16:00:42.685+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "zh-cn",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/4f/4f/4f4f483e11777ea310ad4fc4860a5b63.jpg",
|
||||||
|
"md5": "ab1514ec29ea624a0e1c0290026a8f15",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "349",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/9e/8d/9e8d77e18ed6f57c33a6246373837568.png",
|
||||||
|
"md5": "8987a12fb93115e98ed257882887579c",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2029132713323603170&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Qingbo",
|
||||||
|
"id": "335",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/4d/93/4d9314514a9d6893789b097645415d45.jpg",
|
||||||
|
"md5": "80940d070090ee4f9e6aa0e104e2d1d8",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "321",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/b3/ce/b3ce51ad5b054eafda156a75af4a2bb7.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "293",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/64/c8/64c8a4f2b31bae2719835201da187b9c.jpg",
|
||||||
|
"md5": "6e114ae8b8898fb1dd114e8cc6079c03",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "265",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ec/a8/eca8133c131e891d0a385349b29a9d04.png",
|
||||||
|
"md5": "ffb15c0b26e899c78cf5699e7594660d",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "231",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a2/8e/a28e45408be9f8b8fd88ca8455478f09.png",
|
||||||
|
"md5": "dc695903d0d1dcb249c87c72503be3ce",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "43",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/cc/fd/ccfd3c11effa448d8cb32d941ac35b94.jpg",
|
||||||
|
"md5": "f0928339630065b821516198fd61af82",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/zh-tw/news/4499",
|
||||||
|
"id": "29",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-31T15:00:46.098+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "zh-cn",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/4f/4f/4f4f483e11777ea310ad4fc4860a5b63.jpg",
|
||||||
|
"md5": "ab1514ec29ea624a0e1c0290026a8f15",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "349",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/9e/8d/9e8d77e18ed6f57c33a6246373837568.png",
|
||||||
|
"md5": "8987a12fb93115e98ed257882887579c",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2029132713323603170&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Qingbo",
|
||||||
|
"id": "335",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/4d/93/4d9314514a9d6893789b097645415d45.jpg",
|
||||||
|
"md5": "80940d070090ee4f9e6aa0e104e2d1d8",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "321",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/b3/ce/b3ce51ad5b054eafda156a75af4a2bb7.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "293",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/64/c8/64c8a4f2b31bae2719835201da187b9c.jpg",
|
||||||
|
"md5": "6e114ae8b8898fb1dd114e8cc6079c03",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "265",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a2/8e/a28e45408be9f8b8fd88ca8455478f09.png",
|
||||||
|
"md5": "dc695903d0d1dcb249c87c72503be3ce",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "43",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/cc/fd/ccfd3c11effa448d8cb32d941ac35b94.jpg",
|
||||||
|
"md5": "f0928339630065b821516198fd61af82",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/zh-tw/news/4499",
|
||||||
|
"id": "29",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-01T15:00:48.639+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "zh-cn",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/4f/4f/4f4f483e11777ea310ad4fc4860a5b63.jpg",
|
||||||
|
"md5": "ab1514ec29ea624a0e1c0290026a8f15",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "349",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/4d/93/4d9314514a9d6893789b097645415d45.jpg",
|
||||||
|
"md5": "80940d070090ee4f9e6aa0e104e2d1d8",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "321",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/b3/ce/b3ce51ad5b054eafda156a75af4a2bb7.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "293",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/64/c8/64c8a4f2b31bae2719835201da187b9c.jpg",
|
||||||
|
"md5": "6e114ae8b8898fb1dd114e8cc6079c03",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "265",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a2/8e/a28e45408be9f8b8fd88ca8455478f09.png",
|
||||||
|
"md5": "dc695903d0d1dcb249c87c72503be3ce",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "43",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/cc/fd/ccfd3c11effa448d8cb32d941ac35b94.jpg",
|
||||||
|
"md5": "f0928339630065b821516198fd61af82",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/zh-tw/news/4499",
|
||||||
|
"id": "29",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-02T11:00:50.720+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "zh-cn",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/1e/57/1e57143ecbbfede91e8b2f04c247e93e.png",
|
||||||
|
"md5": "0bdfee308219bf8ffbf16d08f7360196",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038589290462449304&hg_media=launcher&hg_link_campaign=banner&hg_link_name=wash",
|
||||||
|
"id": "377",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/4f/4f/4f4f483e11777ea310ad4fc4860a5b63.jpg",
|
||||||
|
"md5": "ab1514ec29ea624a0e1c0290026a8f15",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "349",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/4d/93/4d9314514a9d6893789b097645415d45.jpg",
|
||||||
|
"md5": "80940d070090ee4f9e6aa0e104e2d1d8",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "321",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/b3/ce/b3ce51ad5b054eafda156a75af4a2bb7.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "293",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/64/c8/64c8a4f2b31bae2719835201da187b9c.jpg",
|
||||||
|
"md5": "6e114ae8b8898fb1dd114e8cc6079c03",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "265",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a2/8e/a28e45408be9f8b8fd88ca8455478f09.png",
|
||||||
|
"md5": "dc695903d0d1dcb249c87c72503be3ce",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "43",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/cc/fd/ccfd3c11effa448d8cb32d941ac35b94.jpg",
|
||||||
|
"md5": "f0928339630065b821516198fd61af82",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/zh-tw/news/4499",
|
||||||
|
"id": "29",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-03T10:00:42.686+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "zh-cn",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/1e/57/1e57143ecbbfede91e8b2f04c247e93e.png",
|
||||||
|
"md5": "0bdfee308219bf8ffbf16d08f7360196",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038589290462449304&hg_media=launcher&hg_link_campaign=banner&hg_link_name=wash",
|
||||||
|
"id": "377",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/b2/b0/b2b0c7decde5ecea5ed488807c50b5e6.png",
|
||||||
|
"md5": "f9931d1becb3b083d7c72ab3d74c7f2a",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "363",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/4f/4f/4f4f483e11777ea310ad4fc4860a5b63.jpg",
|
||||||
|
"md5": "ab1514ec29ea624a0e1c0290026a8f15",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "349",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/4d/93/4d9314514a9d6893789b097645415d45.jpg",
|
||||||
|
"md5": "80940d070090ee4f9e6aa0e104e2d1d8",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "321",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/b3/ce/b3ce51ad5b054eafda156a75af4a2bb7.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "293",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/64/c8/64c8a4f2b31bae2719835201da187b9c.jpg",
|
||||||
|
"md5": "6e114ae8b8898fb1dd114e8cc6079c03",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "265",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a2/8e/a28e45408be9f8b8fd88ca8455478f09.png",
|
||||||
|
"md5": "dc695903d0d1dcb249c87c72503be3ce",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "43",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/cc/fd/ccfd3c11effa448d8cb32d941ac35b94.jpg",
|
||||||
|
"md5": "f0928339630065b821516198fd61af82",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/zh-tw/news/4499",
|
||||||
|
"id": "29",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-04T03:00:41.011+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "zh-cn",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/1e/57/1e57143ecbbfede91e8b2f04c247e93e.png",
|
||||||
|
"md5": "0bdfee308219bf8ffbf16d08f7360196",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038589290462449304&hg_media=launcher&hg_link_campaign=banner&hg_link_name=wash",
|
||||||
|
"id": "377",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/36/1c/361c02f3dd953894a4ed0e9452015bee.png",
|
||||||
|
"md5": "cb95a351d5b6c7a1cfad1c870d570263",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038548112145123394&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Rossi",
|
||||||
|
"id": "391",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/b2/b0/b2b0c7decde5ecea5ed488807c50b5e6.png",
|
||||||
|
"md5": "f9931d1becb3b083d7c72ab3d74c7f2a",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "363",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/4f/4f/4f4f483e11777ea310ad4fc4860a5b63.jpg",
|
||||||
|
"md5": "ab1514ec29ea624a0e1c0290026a8f15",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "349",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/4d/93/4d9314514a9d6893789b097645415d45.jpg",
|
||||||
|
"md5": "80940d070090ee4f9e6aa0e104e2d1d8",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "321",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/b3/ce/b3ce51ad5b054eafda156a75af4a2bb7.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "293",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/64/c8/64c8a4f2b31bae2719835201da187b9c.jpg",
|
||||||
|
"md5": "6e114ae8b8898fb1dd114e8cc6079c03",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "265",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a2/8e/a28e45408be9f8b8fd88ca8455478f09.png",
|
||||||
|
"md5": "dc695903d0d1dcb249c87c72503be3ce",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "43",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/cc/fd/ccfd3c11effa448d8cb32d941ac35b94.jpg",
|
||||||
|
"md5": "f0928339630065b821516198fd61af82",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/zh-tw/news/4499",
|
||||||
|
"id": "29",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-07T15:01:00.022+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "zh-cn",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/1e/57/1e57143ecbbfede91e8b2f04c247e93e.png",
|
||||||
|
"md5": "0bdfee308219bf8ffbf16d08f7360196",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038589290462449304&hg_media=launcher&hg_link_campaign=banner&hg_link_name=wash",
|
||||||
|
"id": "377",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/36/1c/361c02f3dd953894a4ed0e9452015bee.png",
|
||||||
|
"md5": "cb95a351d5b6c7a1cfad1c870d570263",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038548112145123394&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Rossi",
|
||||||
|
"id": "391",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/b2/b0/b2b0c7decde5ecea5ed488807c50b5e6.png",
|
||||||
|
"md5": "f9931d1becb3b083d7c72ab3d74c7f2a",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "363",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/4f/4f/4f4f483e11777ea310ad4fc4860a5b63.jpg",
|
||||||
|
"md5": "ab1514ec29ea624a0e1c0290026a8f15",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "349",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/4d/93/4d9314514a9d6893789b097645415d45.jpg",
|
||||||
|
"md5": "80940d070090ee4f9e6aa0e104e2d1d8",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "321",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/64/c8/64c8a4f2b31bae2719835201da187b9c.jpg",
|
||||||
|
"md5": "6e114ae8b8898fb1dd114e8cc6079c03",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "265",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a2/8e/a28e45408be9f8b8fd88ca8455478f09.png",
|
||||||
|
"md5": "dc695903d0d1dcb249c87c72503be3ce",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "43",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/cc/fd/ccfd3c11effa448d8cb32d941ac35b94.jpg",
|
||||||
|
"md5": "f0928339630065b821516198fd61af82",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/zh-tw/news/4499",
|
||||||
|
"id": "29",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -11,24 +11,38 @@
|
|||||||
"data_version": "",
|
"data_version": "",
|
||||||
"banners": [
|
"banners": [
|
||||||
{
|
{
|
||||||
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/7c/ad/7cad92ab45f298ddd01218ee69eef855.jpg",
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/1e/57/1e57143ecbbfede91e8b2f04c247e93e.png",
|
||||||
"md5": "a484117f3a3f519481034ce183f607e1",
|
"md5": "0bdfee308219bf8ffbf16d08f7360196",
|
||||||
"jump_url": "https://www.skport.com/article?id=2033450826884044885&hg_media=launcher&hg_link_campaign=banner",
|
"jump_url": "https://www.skport.com/article?id=2038589290462449304&hg_media=launcher&hg_link_campaign=banner&hg_link_name=wash",
|
||||||
"id": "307",
|
"id": "377",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/b3/ce/b3ce51ad5b054eafda156a75af4a2bb7.png",
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/36/1c/361c02f3dd953894a4ed0e9452015bee.png",
|
||||||
"md5": "891cc34565de3258110cb0d81a124750",
|
"md5": "cb95a351d5b6c7a1cfad1c870d570263",
|
||||||
"jump_url": "https://store.gryphline.com/",
|
"jump_url": "https://www.skport.com/article?id=2038548112145123394&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Rossi",
|
||||||
"id": "293",
|
"id": "391",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/e8/09/e80941e53a2a403f9f609457a5b6843b.png",
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/b2/b0/b2b0c7decde5ecea5ed488807c50b5e6.png",
|
||||||
"md5": "01b04b6a80859b10c0fe92b22d5e8ce1",
|
"md5": "f9931d1becb3b083d7c72ab3d74c7f2a",
|
||||||
"jump_url": "https://www.skport.com/article?id=2028369049304242052&hg_media=launcher&hg_link_campaign=banner",
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
"id": "279",
|
"id": "363",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/4f/4f/4f4f483e11777ea310ad4fc4860a5b63.jpg",
|
||||||
|
"md5": "ab1514ec29ea624a0e1c0290026a8f15",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "349",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/4d/93/4d9314514a9d6893789b097645415d45.jpg",
|
||||||
|
"md5": "80940d070090ee4f9e6aa0e104e2d1d8",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "321",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -38,20 +52,6 @@
|
|||||||
"id": "265",
|
"id": "265",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/c6/82/c682be2c723a32a21f8c45d253478315.png",
|
|
||||||
"md5": "8cd7f0e1cdb44b0862b994fc3604dc99",
|
|
||||||
"jump_url": "https://endfield.gryphline.com/news/1338",
|
|
||||||
"id": "264",
|
|
||||||
"need_token": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ec/a8/eca8133c131e891d0a385349b29a9d04.png",
|
|
||||||
"md5": "ffb15c0b26e899c78cf5699e7594660d",
|
|
||||||
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
|
||||||
"id": "231",
|
|
||||||
"need_token": false
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a2/8e/a28e45408be9f8b8fd88ca8455478f09.png",
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/a2/8e/a28e45408be9f8b8fd88ca8455478f09.png",
|
||||||
"md5": "dc695903d0d1dcb249c87c72503be3ce",
|
"md5": "dc695903d0d1dcb249c87c72503be3ce",
|
||||||
|
|||||||
@@ -418,5 +418,960 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-19T15:00:48.324+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "zh-tw",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/09/b7/09b7ba39d183cd394a148422897628ad.jpg",
|
||||||
|
"md5": "6ca9bac6fe5dc8ee443db41c71319dd7",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2033450826884044885&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "308",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/f3/1e/f31e878094b68fc3ba520568cd102e4d.png",
|
||||||
|
"md5": "d77bc9f31d4e47ba5ebf362716f8d84d",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "296",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/9a/8f/9a8f8895229003c83958c10a204d9d5e.png",
|
||||||
|
"md5": "9d38827f3cbaedde7193316952131779",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "266",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/2c/8b/2c8b9edd6a33536e63b232fb01d70fa6.png",
|
||||||
|
"md5": "5846708217b71676038045c414f43800",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1338",
|
||||||
|
"id": "251",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/16/fa/16fac4922271a038d402f69fe1efa1c6.png",
|
||||||
|
"md5": "181368d495b8a64fa45e646e0fef3307",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "232",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/54/c8/54c8aa54826f90d1678bae0ae104d21b.png",
|
||||||
|
"md5": "fb59697bf5f5dd484d3e58595159e430",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2662",
|
||||||
|
"id": "227",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/f8/ad/f8ad4151cacf91de676f5eca7db6cecc.png",
|
||||||
|
"md5": "f82881cd8a6ad5930b95b26ea0d77dff",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "44",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/8b/86/8b860a8f7ed5ff9fda3b82cc5545f9af.png",
|
||||||
|
"md5": "d98961176d446c7ab41e07846dc58c6d",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/zh-tw/news/4499",
|
||||||
|
"id": "30",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-20T04:00:42.647+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "zh-tw",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/b4/e9/b4e93274fc62a418af762de597f7f0be.jpg",
|
||||||
|
"md5": "c03fd1a627afd1df869519205bd312d0",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "322",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/09/b7/09b7ba39d183cd394a148422897628ad.jpg",
|
||||||
|
"md5": "6ca9bac6fe5dc8ee443db41c71319dd7",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2033450826884044885&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "308",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/f3/1e/f31e878094b68fc3ba520568cd102e4d.png",
|
||||||
|
"md5": "d77bc9f31d4e47ba5ebf362716f8d84d",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "296",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/9a/8f/9a8f8895229003c83958c10a204d9d5e.png",
|
||||||
|
"md5": "9d38827f3cbaedde7193316952131779",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "266",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/2c/8b/2c8b9edd6a33536e63b232fb01d70fa6.png",
|
||||||
|
"md5": "5846708217b71676038045c414f43800",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1338",
|
||||||
|
"id": "251",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/16/fa/16fac4922271a038d402f69fe1efa1c6.png",
|
||||||
|
"md5": "181368d495b8a64fa45e646e0fef3307",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "232",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/54/c8/54c8aa54826f90d1678bae0ae104d21b.png",
|
||||||
|
"md5": "fb59697bf5f5dd484d3e58595159e430",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2662",
|
||||||
|
"id": "227",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/f8/ad/f8ad4151cacf91de676f5eca7db6cecc.png",
|
||||||
|
"md5": "f82881cd8a6ad5930b95b26ea0d77dff",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "44",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/8b/86/8b860a8f7ed5ff9fda3b82cc5545f9af.png",
|
||||||
|
"md5": "d98961176d446c7ab41e07846dc58c6d",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/zh-tw/news/4499",
|
||||||
|
"id": "30",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-21T11:01:27.339+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "zh-tw",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ea/01/ea016e4efd3f1bc135ecd2aac9837661.png",
|
||||||
|
"md5": "2d9bb032739871e2b96266055ab1baed",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2029132713323603170&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Qingbo",
|
||||||
|
"id": "336",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/b4/e9/b4e93274fc62a418af762de597f7f0be.jpg",
|
||||||
|
"md5": "c03fd1a627afd1df869519205bd312d0",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "322",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/09/b7/09b7ba39d183cd394a148422897628ad.jpg",
|
||||||
|
"md5": "6ca9bac6fe5dc8ee443db41c71319dd7",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2033450826884044885&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "308",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/f3/1e/f31e878094b68fc3ba520568cd102e4d.png",
|
||||||
|
"md5": "d77bc9f31d4e47ba5ebf362716f8d84d",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "296",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/9a/8f/9a8f8895229003c83958c10a204d9d5e.png",
|
||||||
|
"md5": "9d38827f3cbaedde7193316952131779",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "266",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/2c/8b/2c8b9edd6a33536e63b232fb01d70fa6.png",
|
||||||
|
"md5": "5846708217b71676038045c414f43800",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1338",
|
||||||
|
"id": "251",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/16/fa/16fac4922271a038d402f69fe1efa1c6.png",
|
||||||
|
"md5": "181368d495b8a64fa45e646e0fef3307",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "232",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/54/c8/54c8aa54826f90d1678bae0ae104d21b.png",
|
||||||
|
"md5": "fb59697bf5f5dd484d3e58595159e430",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2662",
|
||||||
|
"id": "227",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/f8/ad/f8ad4151cacf91de676f5eca7db6cecc.png",
|
||||||
|
"md5": "f82881cd8a6ad5930b95b26ea0d77dff",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "44",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/8b/86/8b860a8f7ed5ff9fda3b82cc5545f9af.png",
|
||||||
|
"md5": "d98961176d446c7ab41e07846dc58c6d",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/zh-tw/news/4499",
|
||||||
|
"id": "30",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T04:00:39.040+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "zh-tw",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/73/c9/73c91d23c2e15e1f1cf7d423d84262b7.jpg",
|
||||||
|
"md5": "6e6eb643ed1e316fdfa38ed15ad0d37c",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "350",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ea/01/ea016e4efd3f1bc135ecd2aac9837661.png",
|
||||||
|
"md5": "2d9bb032739871e2b96266055ab1baed",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2029132713323603170&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Qingbo",
|
||||||
|
"id": "336",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/b4/e9/b4e93274fc62a418af762de597f7f0be.jpg",
|
||||||
|
"md5": "c03fd1a627afd1df869519205bd312d0",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "322",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/09/b7/09b7ba39d183cd394a148422897628ad.jpg",
|
||||||
|
"md5": "6ca9bac6fe5dc8ee443db41c71319dd7",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2033450826884044885&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "308",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/f3/1e/f31e878094b68fc3ba520568cd102e4d.png",
|
||||||
|
"md5": "d77bc9f31d4e47ba5ebf362716f8d84d",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "296",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/9a/8f/9a8f8895229003c83958c10a204d9d5e.png",
|
||||||
|
"md5": "9d38827f3cbaedde7193316952131779",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "266",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/16/fa/16fac4922271a038d402f69fe1efa1c6.png",
|
||||||
|
"md5": "181368d495b8a64fa45e646e0fef3307",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "232",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/54/c8/54c8aa54826f90d1678bae0ae104d21b.png",
|
||||||
|
"md5": "fb59697bf5f5dd484d3e58595159e430",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2662",
|
||||||
|
"id": "227",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/f8/ad/f8ad4151cacf91de676f5eca7db6cecc.png",
|
||||||
|
"md5": "f82881cd8a6ad5930b95b26ea0d77dff",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "44",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/8b/86/8b860a8f7ed5ff9fda3b82cc5545f9af.png",
|
||||||
|
"md5": "d98961176d446c7ab41e07846dc58c6d",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/zh-tw/news/4499",
|
||||||
|
"id": "30",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T16:00:42.728+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "zh-tw",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/73/c9/73c91d23c2e15e1f1cf7d423d84262b7.jpg",
|
||||||
|
"md5": "6e6eb643ed1e316fdfa38ed15ad0d37c",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "350",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ea/01/ea016e4efd3f1bc135ecd2aac9837661.png",
|
||||||
|
"md5": "2d9bb032739871e2b96266055ab1baed",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2029132713323603170&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Qingbo",
|
||||||
|
"id": "336",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/b4/e9/b4e93274fc62a418af762de597f7f0be.jpg",
|
||||||
|
"md5": "c03fd1a627afd1df869519205bd312d0",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "322",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/f3/1e/f31e878094b68fc3ba520568cd102e4d.png",
|
||||||
|
"md5": "d77bc9f31d4e47ba5ebf362716f8d84d",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "296",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/9a/8f/9a8f8895229003c83958c10a204d9d5e.png",
|
||||||
|
"md5": "9d38827f3cbaedde7193316952131779",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "266",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/16/fa/16fac4922271a038d402f69fe1efa1c6.png",
|
||||||
|
"md5": "181368d495b8a64fa45e646e0fef3307",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "232",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/54/c8/54c8aa54826f90d1678bae0ae104d21b.png",
|
||||||
|
"md5": "fb59697bf5f5dd484d3e58595159e430",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2662",
|
||||||
|
"id": "227",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/f8/ad/f8ad4151cacf91de676f5eca7db6cecc.png",
|
||||||
|
"md5": "f82881cd8a6ad5930b95b26ea0d77dff",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "44",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/8b/86/8b860a8f7ed5ff9fda3b82cc5545f9af.png",
|
||||||
|
"md5": "d98961176d446c7ab41e07846dc58c6d",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/zh-tw/news/4499",
|
||||||
|
"id": "30",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-31T15:00:46.139+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "zh-tw",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/73/c9/73c91d23c2e15e1f1cf7d423d84262b7.jpg",
|
||||||
|
"md5": "6e6eb643ed1e316fdfa38ed15ad0d37c",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "350",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/ea/01/ea016e4efd3f1bc135ecd2aac9837661.png",
|
||||||
|
"md5": "2d9bb032739871e2b96266055ab1baed",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2029132713323603170&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Qingbo",
|
||||||
|
"id": "336",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/b4/e9/b4e93274fc62a418af762de597f7f0be.jpg",
|
||||||
|
"md5": "c03fd1a627afd1df869519205bd312d0",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "322",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/f3/1e/f31e878094b68fc3ba520568cd102e4d.png",
|
||||||
|
"md5": "d77bc9f31d4e47ba5ebf362716f8d84d",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "296",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/9a/8f/9a8f8895229003c83958c10a204d9d5e.png",
|
||||||
|
"md5": "9d38827f3cbaedde7193316952131779",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "266",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/54/c8/54c8aa54826f90d1678bae0ae104d21b.png",
|
||||||
|
"md5": "fb59697bf5f5dd484d3e58595159e430",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2662",
|
||||||
|
"id": "227",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/f8/ad/f8ad4151cacf91de676f5eca7db6cecc.png",
|
||||||
|
"md5": "f82881cd8a6ad5930b95b26ea0d77dff",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "44",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/8b/86/8b860a8f7ed5ff9fda3b82cc5545f9af.png",
|
||||||
|
"md5": "d98961176d446c7ab41e07846dc58c6d",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/zh-tw/news/4499",
|
||||||
|
"id": "30",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-01T15:00:48.706+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "zh-tw",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/73/c9/73c91d23c2e15e1f1cf7d423d84262b7.jpg",
|
||||||
|
"md5": "6e6eb643ed1e316fdfa38ed15ad0d37c",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "350",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/b4/e9/b4e93274fc62a418af762de597f7f0be.jpg",
|
||||||
|
"md5": "c03fd1a627afd1df869519205bd312d0",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "322",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/f3/1e/f31e878094b68fc3ba520568cd102e4d.png",
|
||||||
|
"md5": "d77bc9f31d4e47ba5ebf362716f8d84d",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "296",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/9a/8f/9a8f8895229003c83958c10a204d9d5e.png",
|
||||||
|
"md5": "9d38827f3cbaedde7193316952131779",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "266",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/54/c8/54c8aa54826f90d1678bae0ae104d21b.png",
|
||||||
|
"md5": "fb59697bf5f5dd484d3e58595159e430",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2662",
|
||||||
|
"id": "227",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/f8/ad/f8ad4151cacf91de676f5eca7db6cecc.png",
|
||||||
|
"md5": "f82881cd8a6ad5930b95b26ea0d77dff",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "44",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/8b/86/8b860a8f7ed5ff9fda3b82cc5545f9af.png",
|
||||||
|
"md5": "d98961176d446c7ab41e07846dc58c6d",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/zh-tw/news/4499",
|
||||||
|
"id": "30",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-02T11:00:50.903+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "zh-tw",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/95/2e/952e235cb0cf2a3203dee294090a2a20.png",
|
||||||
|
"md5": "293027e5b21c52ba27f79ccfc265570d",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038589290462449304&hg_media=launcher&hg_link_campaign=banner&hg_link_name=wash",
|
||||||
|
"id": "378",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/73/c9/73c91d23c2e15e1f1cf7d423d84262b7.jpg",
|
||||||
|
"md5": "6e6eb643ed1e316fdfa38ed15ad0d37c",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "350",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/b4/e9/b4e93274fc62a418af762de597f7f0be.jpg",
|
||||||
|
"md5": "c03fd1a627afd1df869519205bd312d0",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "322",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/f3/1e/f31e878094b68fc3ba520568cd102e4d.png",
|
||||||
|
"md5": "d77bc9f31d4e47ba5ebf362716f8d84d",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "296",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/9a/8f/9a8f8895229003c83958c10a204d9d5e.png",
|
||||||
|
"md5": "9d38827f3cbaedde7193316952131779",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "266",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/54/c8/54c8aa54826f90d1678bae0ae104d21b.png",
|
||||||
|
"md5": "fb59697bf5f5dd484d3e58595159e430",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2662",
|
||||||
|
"id": "227",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/f8/ad/f8ad4151cacf91de676f5eca7db6cecc.png",
|
||||||
|
"md5": "f82881cd8a6ad5930b95b26ea0d77dff",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "44",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/8b/86/8b860a8f7ed5ff9fda3b82cc5545f9af.png",
|
||||||
|
"md5": "d98961176d446c7ab41e07846dc58c6d",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/zh-tw/news/4499",
|
||||||
|
"id": "30",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-03T10:00:42.756+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "zh-tw",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/95/2e/952e235cb0cf2a3203dee294090a2a20.png",
|
||||||
|
"md5": "293027e5b21c52ba27f79ccfc265570d",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038589290462449304&hg_media=launcher&hg_link_campaign=banner&hg_link_name=wash",
|
||||||
|
"id": "378",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/e9/ac/e9acb6e1642d7b2cfaccb700fe8b0a80.png",
|
||||||
|
"md5": "a94a0997d0ae6d768c5eff8e25f70ac5",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "364",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/73/c9/73c91d23c2e15e1f1cf7d423d84262b7.jpg",
|
||||||
|
"md5": "6e6eb643ed1e316fdfa38ed15ad0d37c",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "350",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/b4/e9/b4e93274fc62a418af762de597f7f0be.jpg",
|
||||||
|
"md5": "c03fd1a627afd1df869519205bd312d0",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "322",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/f3/1e/f31e878094b68fc3ba520568cd102e4d.png",
|
||||||
|
"md5": "d77bc9f31d4e47ba5ebf362716f8d84d",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "296",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/9a/8f/9a8f8895229003c83958c10a204d9d5e.png",
|
||||||
|
"md5": "9d38827f3cbaedde7193316952131779",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "266",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/54/c8/54c8aa54826f90d1678bae0ae104d21b.png",
|
||||||
|
"md5": "fb59697bf5f5dd484d3e58595159e430",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2662",
|
||||||
|
"id": "227",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/f8/ad/f8ad4151cacf91de676f5eca7db6cecc.png",
|
||||||
|
"md5": "f82881cd8a6ad5930b95b26ea0d77dff",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "44",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/8b/86/8b860a8f7ed5ff9fda3b82cc5545f9af.png",
|
||||||
|
"md5": "d98961176d446c7ab41e07846dc58c6d",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/zh-tw/news/4499",
|
||||||
|
"id": "30",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-04T03:00:41.210+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "zh-tw",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/95/2e/952e235cb0cf2a3203dee294090a2a20.png",
|
||||||
|
"md5": "293027e5b21c52ba27f79ccfc265570d",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038589290462449304&hg_media=launcher&hg_link_campaign=banner&hg_link_name=wash",
|
||||||
|
"id": "378",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/72/94/7294d32f59329997de84b75fa925b2c1.png",
|
||||||
|
"md5": "4ae211c1e651ac0175c3bb6b5c707c62",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038548112145123394&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Rossi",
|
||||||
|
"id": "392",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/e9/ac/e9acb6e1642d7b2cfaccb700fe8b0a80.png",
|
||||||
|
"md5": "a94a0997d0ae6d768c5eff8e25f70ac5",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "364",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/73/c9/73c91d23c2e15e1f1cf7d423d84262b7.jpg",
|
||||||
|
"md5": "6e6eb643ed1e316fdfa38ed15ad0d37c",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "350",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/b4/e9/b4e93274fc62a418af762de597f7f0be.jpg",
|
||||||
|
"md5": "c03fd1a627afd1df869519205bd312d0",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "322",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/f3/1e/f31e878094b68fc3ba520568cd102e4d.png",
|
||||||
|
"md5": "d77bc9f31d4e47ba5ebf362716f8d84d",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "296",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/9a/8f/9a8f8895229003c83958c10a204d9d5e.png",
|
||||||
|
"md5": "9d38827f3cbaedde7193316952131779",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "266",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/54/c8/54c8aa54826f90d1678bae0ae104d21b.png",
|
||||||
|
"md5": "fb59697bf5f5dd484d3e58595159e430",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2662",
|
||||||
|
"id": "227",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/f8/ad/f8ad4151cacf91de676f5eca7db6cecc.png",
|
||||||
|
"md5": "f82881cd8a6ad5930b95b26ea0d77dff",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "44",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/8b/86/8b860a8f7ed5ff9fda3b82cc5545f9af.png",
|
||||||
|
"md5": "d98961176d446c7ab41e07846dc58c6d",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/zh-tw/news/4499",
|
||||||
|
"id": "30",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-04T06:15:34.104+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "zh-tw",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/9a/44/9a441d8a1c38890138a2b4540832a828.jpg",
|
||||||
|
"md5": "37ec7773bad300538df2cf0ae6abdcfe",
|
||||||
|
"jump_url": "https://x.com/akendfieldzht/status/2040278189310628071?s=46",
|
||||||
|
"id": "405",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/95/2e/952e235cb0cf2a3203dee294090a2a20.png",
|
||||||
|
"md5": "293027e5b21c52ba27f79ccfc265570d",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038589290462449304&hg_media=launcher&hg_link_campaign=banner&hg_link_name=wash",
|
||||||
|
"id": "378",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/72/94/7294d32f59329997de84b75fa925b2c1.png",
|
||||||
|
"md5": "4ae211c1e651ac0175c3bb6b5c707c62",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038548112145123394&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Rossi",
|
||||||
|
"id": "392",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/e9/ac/e9acb6e1642d7b2cfaccb700fe8b0a80.png",
|
||||||
|
"md5": "a94a0997d0ae6d768c5eff8e25f70ac5",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "364",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/73/c9/73c91d23c2e15e1f1cf7d423d84262b7.jpg",
|
||||||
|
"md5": "6e6eb643ed1e316fdfa38ed15ad0d37c",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "350",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/b4/e9/b4e93274fc62a418af762de597f7f0be.jpg",
|
||||||
|
"md5": "c03fd1a627afd1df869519205bd312d0",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "322",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/f3/1e/f31e878094b68fc3ba520568cd102e4d.png",
|
||||||
|
"md5": "d77bc9f31d4e47ba5ebf362716f8d84d",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "296",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/9a/8f/9a8f8895229003c83958c10a204d9d5e.png",
|
||||||
|
"md5": "9d38827f3cbaedde7193316952131779",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "266",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/54/c8/54c8aa54826f90d1678bae0ae104d21b.png",
|
||||||
|
"md5": "fb59697bf5f5dd484d3e58595159e430",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2662",
|
||||||
|
"id": "227",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/f8/ad/f8ad4151cacf91de676f5eca7db6cecc.png",
|
||||||
|
"md5": "f82881cd8a6ad5930b95b26ea0d77dff",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "44",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/8b/86/8b860a8f7ed5ff9fda3b82cc5545f9af.png",
|
||||||
|
"md5": "d98961176d446c7ab41e07846dc58c6d",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/zh-tw/news/4499",
|
||||||
|
"id": "30",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-07T15:00:59.435+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "zh-tw",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/9a/44/9a441d8a1c38890138a2b4540832a828.jpg",
|
||||||
|
"md5": "37ec7773bad300538df2cf0ae6abdcfe",
|
||||||
|
"jump_url": "https://x.com/akendfieldzht/status/2040278189310628071?s=46",
|
||||||
|
"id": "405",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/95/2e/952e235cb0cf2a3203dee294090a2a20.png",
|
||||||
|
"md5": "293027e5b21c52ba27f79ccfc265570d",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038589290462449304&hg_media=launcher&hg_link_campaign=banner&hg_link_name=wash",
|
||||||
|
"id": "378",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/72/94/7294d32f59329997de84b75fa925b2c1.png",
|
||||||
|
"md5": "4ae211c1e651ac0175c3bb6b5c707c62",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038548112145123394&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Rossi",
|
||||||
|
"id": "392",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/e9/ac/e9acb6e1642d7b2cfaccb700fe8b0a80.png",
|
||||||
|
"md5": "a94a0997d0ae6d768c5eff8e25f70ac5",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "364",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/73/c9/73c91d23c2e15e1f1cf7d423d84262b7.jpg",
|
||||||
|
"md5": "6e6eb643ed1e316fdfa38ed15ad0d37c",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "350",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/b4/e9/b4e93274fc62a418af762de597f7f0be.jpg",
|
||||||
|
"md5": "c03fd1a627afd1df869519205bd312d0",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "322",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/9a/8f/9a8f8895229003c83958c10a204d9d5e.png",
|
||||||
|
"md5": "9d38827f3cbaedde7193316952131779",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "266",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/54/c8/54c8aa54826f90d1678bae0ae104d21b.png",
|
||||||
|
"md5": "fb59697bf5f5dd484d3e58595159e430",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2662",
|
||||||
|
"id": "227",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/f8/ad/f8ad4151cacf91de676f5eca7db6cecc.png",
|
||||||
|
"md5": "f82881cd8a6ad5930b95b26ea0d77dff",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "44",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/8b/86/8b860a8f7ed5ff9fda3b82cc5545f9af.png",
|
||||||
|
"md5": "d98961176d446c7ab41e07846dc58c6d",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/zh-tw/news/4499",
|
||||||
|
"id": "30",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -11,24 +11,45 @@
|
|||||||
"data_version": "",
|
"data_version": "",
|
||||||
"banners": [
|
"banners": [
|
||||||
{
|
{
|
||||||
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/09/b7/09b7ba39d183cd394a148422897628ad.jpg",
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/9a/44/9a441d8a1c38890138a2b4540832a828.jpg",
|
||||||
"md5": "6ca9bac6fe5dc8ee443db41c71319dd7",
|
"md5": "37ec7773bad300538df2cf0ae6abdcfe",
|
||||||
"jump_url": "https://www.skport.com/article?id=2033450826884044885&hg_media=launcher&hg_link_campaign=banner",
|
"jump_url": "https://x.com/akendfieldzht/status/2040278189310628071?s=46",
|
||||||
"id": "308",
|
"id": "405",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/f3/1e/f31e878094b68fc3ba520568cd102e4d.png",
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/95/2e/952e235cb0cf2a3203dee294090a2a20.png",
|
||||||
"md5": "d77bc9f31d4e47ba5ebf362716f8d84d",
|
"md5": "293027e5b21c52ba27f79ccfc265570d",
|
||||||
"jump_url": "https://store.gryphline.com/",
|
"jump_url": "https://www.skport.com/article?id=2038589290462449304&hg_media=launcher&hg_link_campaign=banner&hg_link_name=wash",
|
||||||
"id": "296",
|
"id": "378",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/cc/63/cc63edc7e3d51beaadbbd3a053c22778.png",
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/72/94/7294d32f59329997de84b75fa925b2c1.png",
|
||||||
"md5": "7ab1af3a5f8c8a25dcd4723fb2f6dbdf",
|
"md5": "4ae211c1e651ac0175c3bb6b5c707c62",
|
||||||
"jump_url": "https://www.skport.com/article?id=2028369049304242052&hg_media=launcher&hg_link_campaign=banner",
|
"jump_url": "https://www.skport.com/article?id=2038548112145123394&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Rossi",
|
||||||
"id": "280",
|
"id": "392",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/e9/ac/e9acb6e1642d7b2cfaccb700fe8b0a80.png",
|
||||||
|
"md5": "a94a0997d0ae6d768c5eff8e25f70ac5",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "364",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/73/c9/73c91d23c2e15e1f1cf7d423d84262b7.jpg",
|
||||||
|
"md5": "6e6eb643ed1e316fdfa38ed15ad0d37c",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "350",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/b4/e9/b4e93274fc62a418af762de597f7f0be.jpg",
|
||||||
|
"md5": "c03fd1a627afd1df869519205bd312d0",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "322",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -38,20 +59,6 @@
|
|||||||
"id": "266",
|
"id": "266",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/2c/8b/2c8b9edd6a33536e63b232fb01d70fa6.png",
|
|
||||||
"md5": "5846708217b71676038045c414f43800",
|
|
||||||
"jump_url": "https://endfield.gryphline.com/news/1338",
|
|
||||||
"id": "251",
|
|
||||||
"need_token": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/16/fa/16fac4922271a038d402f69fe1efa1c6.png",
|
|
||||||
"md5": "181368d495b8a64fa45e646e0fef3307",
|
|
||||||
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
|
||||||
"id": "232",
|
|
||||||
"need_token": false
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/54/c8/54c8aa54826f90d1678bae0ae104d21b.png",
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/54/c8/54c8aa54826f90d1678bae0ae104d21b.png",
|
||||||
"md5": "fb59697bf5f5dd484d3e58595159e430",
|
"md5": "fb59697bf5f5dd484d3e58595159e430",
|
||||||
|
|||||||
@@ -446,5 +446,278 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T04:00:39.134+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 801,
|
||||||
|
"lang": "de-de",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "Hinweise",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "[Wolfsperle] Details zur Rekrutierung: Priorisiert",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "445",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Hinweis zu Problemen im Spiel durch NVIDIA Treiber-Updates",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "416",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "[Wogen der Flut tragen Tränen zum Quell] – Hinweise zum Versions-Update",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "388",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "[„Erneutes Aufblühen“-Ausgabe] Details zu zeitlich begrenztem Angebot",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "360",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield – Anleitung für Spielwerkzeuge",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "143",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield – Erklärung zu Fairness im Spiel",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "99",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Sicherheitswarnung bei Verwendung inoffizieller Tools",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "402",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "72"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "Neuigkeiten",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield [Official Release Preview] DEV Comm",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "71",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "74"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T04:30:34.888+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 801,
|
||||||
|
"lang": "de-de",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "Hinweise",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "[Scharlachperle-Ausgabe] – KZO-Details",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "431",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "[Wolfsperle] Details zur Rekrutierung: Priorisiert",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "445",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Hinweis zu Problemen im Spiel durch NVIDIA Treiber-Updates",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "416",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "[Wogen der Flut tragen Tränen zum Quell] – Hinweise zum Versions-Update",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "388",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "[„Erneutes Aufblühen“-Ausgabe] Details zu zeitlich begrenztem Angebot",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "360",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield – Anleitung für Spielwerkzeuge",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "143",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield – Erklärung zu Fairness im Spiel",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "99",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Sicherheitswarnung bei Verwendung inoffizieller Tools",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "402",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "72"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "Neuigkeiten",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield [Official Release Preview] DEV Comm",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "71",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "74"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-01T02:00:43.432+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 801,
|
||||||
|
"lang": "de-de",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "Hinweise",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "[Die Reise des Langohrs]-Festtag-Event – Details",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1337",
|
||||||
|
"start_ts": "1775008800000",
|
||||||
|
"id": "459",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "[Scharlachperle-Ausgabe] – KZO-Details",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "431",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "[Wolfsperle] Details zur Rekrutierung: Priorisiert",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "445",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Hinweis zu Problemen im Spiel durch NVIDIA Treiber-Updates",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "416",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "[Wogen der Flut tragen Tränen zum Quell] – Hinweise zum Versions-Update",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "388",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "[„Erneutes Aufblühen“-Ausgabe] Details zu zeitlich begrenztem Angebot",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "360",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield – Anleitung für Spielwerkzeuge",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "143",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield – Erklärung zu Fairness im Spiel",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "99",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Sicherheitswarnung bei Verwendung inoffizieller Tools",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "402",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "72"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "Neuigkeiten",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield [Official Release Preview] DEV Comm",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "71",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "74"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -13,6 +13,20 @@
|
|||||||
{
|
{
|
||||||
"tabName": "Hinweise",
|
"tabName": "Hinweise",
|
||||||
"announcements": [
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "[Scharlachperle-Ausgabe] – KZO-Details",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "431",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "[Wolfsperle] Details zur Rekrutierung: Priorisiert",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "445",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"content": "Hinweis zu Problemen im Spiel durch NVIDIA Treiber-Updates",
|
"content": "Hinweis zu Problemen im Spiel durch NVIDIA Treiber-Updates",
|
||||||
"jump_url": "https://endfield.gryphline.com/news/3844",
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
@@ -34,13 +48,6 @@
|
|||||||
"id": "360",
|
"id": "360",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"content": "Details zu [Tochter des Flusses] Rekrutierung: Priorisiert",
|
|
||||||
"jump_url": "https://endfield.gryphline.com/news/1338",
|
|
||||||
"start_ts": "1773203400000",
|
|
||||||
"id": "346",
|
|
||||||
"need_token": false
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"content": "Arknights: Endfield – Anleitung für Spielwerkzeuge",
|
"content": "Arknights: Endfield – Anleitung für Spielwerkzeuge",
|
||||||
"jump_url": "https://endfield.gryphline.com/news/0755",
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
|||||||
@@ -488,5 +488,299 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T04:00:39.268+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 801,
|
||||||
|
"lang": "en-us",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "Notices",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "[Wolf Pearl] Chartered Headhunting Details",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "440",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Notice Regarding Game Issues Caused by NVIDIA Driver Updates",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "411",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "[Old Deep Water Dies, by Rising Tide It is Denied] Version Update Notes",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "383",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "[Budding Anew Issue] LTO Details",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "355",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield Game Tools Guide",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "138",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield Fair Play Statement",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "94",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Security Risk Warning for Using Unofficial Tools",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "397",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "48"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "News",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "[Old Deep Water Dies, by Rising Tide It is Denied] DEV Comm",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2662",
|
||||||
|
"start_ts": "1772445600000",
|
||||||
|
"id": "321",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield [Official Release Preview] DEV Comm",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "65",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "50"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T04:30:35.146+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 801,
|
||||||
|
"lang": "en-us",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "Notices",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "[Scarlet Pearl Issue] LTO Details",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "426",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "[Wolf Pearl] Chartered Headhunting Details",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "440",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Notice Regarding Game Issues Caused by NVIDIA Driver Updates",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "411",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "[Old Deep Water Dies, by Rising Tide It is Denied] Version Update Notes",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "383",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "[Budding Anew Issue] LTO Details",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "355",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield Game Tools Guide",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "138",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield Fair Play Statement",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "94",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Security Risk Warning for Using Unofficial Tools",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "397",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "48"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "News",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "[Old Deep Water Dies, by Rising Tide It is Denied] DEV Comm",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2662",
|
||||||
|
"start_ts": "1772445600000",
|
||||||
|
"id": "321",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield [Official Release Preview] DEV Comm",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "65",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "50"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-01T02:00:43.498+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 801,
|
||||||
|
"lang": "en-us",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "Notices",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "[Journey of the Long-Ear] Celebration Event Details",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1337",
|
||||||
|
"start_ts": "1775008800000",
|
||||||
|
"id": "454",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "[Scarlet Pearl Issue] LTO Details",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "426",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "[Wolf Pearl] Chartered Headhunting Details",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "440",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Notice Regarding Game Issues Caused by NVIDIA Driver Updates",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "411",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "[Old Deep Water Dies, by Rising Tide It is Denied] Version Update Notes",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "383",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "[Budding Anew Issue] LTO Details",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "355",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield Game Tools Guide",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "138",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield Fair Play Statement",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "94",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Security Risk Warning for Using Unofficial Tools",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "397",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "48"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "News",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "[Old Deep Water Dies, by Rising Tide It is Denied] DEV Comm",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2662",
|
||||||
|
"start_ts": "1772445600000",
|
||||||
|
"id": "321",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield [Official Release Preview] DEV Comm",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "65",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "50"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -13,6 +13,20 @@
|
|||||||
{
|
{
|
||||||
"tabName": "Notices",
|
"tabName": "Notices",
|
||||||
"announcements": [
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "[Scarlet Pearl Issue] LTO Details",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "426",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "[Wolf Pearl] Chartered Headhunting Details",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "440",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"content": "Notice Regarding Game Issues Caused by NVIDIA Driver Updates",
|
"content": "Notice Regarding Game Issues Caused by NVIDIA Driver Updates",
|
||||||
"jump_url": "https://endfield.gryphline.com/news/3844",
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
@@ -34,13 +48,6 @@
|
|||||||
"id": "355",
|
"id": "355",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"content": "[River's Daughter] Chartered Headhunting Details",
|
|
||||||
"jump_url": "https://endfield.gryphline.com/news/1338",
|
|
||||||
"start_ts": "1773203400000",
|
|
||||||
"id": "341",
|
|
||||||
"need_token": false
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"content": "Arknights: Endfield Game Tools Guide",
|
"content": "Arknights: Endfield Game Tools Guide",
|
||||||
"jump_url": "https://endfield.gryphline.com/news/0755",
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
|||||||
@@ -446,5 +446,278 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T04:00:39.304+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 801,
|
||||||
|
"lang": "es-mx",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "Noticias",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Detalles de la caza de reclutas certificada [Perla del lobo]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "443",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Aviso sobre problemas del juego causados por las actualizaciones de los drivers de NVIDIA",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "414",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Notas sobre la actualización de versión de [Perecen las aguas profundas de antaño, borradas por la marea creciente]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "386",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Detalles OTL de la [Solicitud de Brotar de nuevo]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "358",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Guía de herramientas del juego de Arknights: Endfield",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "141",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Juego limpio de Arknights: Endfield",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "97",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Riesgo de seguridad: herramientas no oficiales",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "400",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "63"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "Novedades",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield [Official Release Preview] DEV Comm",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "69",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "65"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T04:30:35.107+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 801,
|
||||||
|
"lang": "es-mx",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "Noticias",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Detalles OTL de la [Solicitud de Perla escarlata]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "429",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Detalles de la caza de reclutas certificada [Perla del lobo]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "443",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Aviso sobre problemas del juego causados por las actualizaciones de los drivers de NVIDIA",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "414",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Notas sobre la actualización de versión de [Perecen las aguas profundas de antaño, borradas por la marea creciente]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "386",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Detalles OTL de la [Solicitud de Brotar de nuevo]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "358",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Guía de herramientas del juego de Arknights: Endfield",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "141",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Juego limpio de Arknights: Endfield",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "97",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Riesgo de seguridad: herramientas no oficiales",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "400",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "63"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "Novedades",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield [Official Release Preview] DEV Comm",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "69",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "65"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-01T02:00:43.608+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 801,
|
||||||
|
"lang": "es-mx",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "Noticias",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Detalles del evento de celebración [Viaje del orejilarga]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1337",
|
||||||
|
"start_ts": "1775008800000",
|
||||||
|
"id": "457",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Detalles OTL de la [Solicitud de Perla escarlata]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "429",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Detalles de la caza de reclutas certificada [Perla del lobo]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "443",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Aviso sobre problemas del juego causados por las actualizaciones de los drivers de NVIDIA",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "414",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Notas sobre la actualización de versión de [Perecen las aguas profundas de antaño, borradas por la marea creciente]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "386",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Detalles OTL de la [Solicitud de Brotar de nuevo]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "358",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Guía de herramientas del juego de Arknights: Endfield",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "141",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Juego limpio de Arknights: Endfield",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "97",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Riesgo de seguridad: herramientas no oficiales",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "400",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "63"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "Novedades",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield [Official Release Preview] DEV Comm",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "69",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "65"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -13,6 +13,20 @@
|
|||||||
{
|
{
|
||||||
"tabName": "Noticias",
|
"tabName": "Noticias",
|
||||||
"announcements": [
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Detalles OTL de la [Solicitud de Perla escarlata]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "429",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Detalles de la caza de reclutas certificada [Perla del lobo]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "443",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"content": "Aviso sobre problemas del juego causados por las actualizaciones de los drivers de NVIDIA",
|
"content": "Aviso sobre problemas del juego causados por las actualizaciones de los drivers de NVIDIA",
|
||||||
"jump_url": "https://endfield.gryphline.com/news/3844",
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
@@ -34,13 +48,6 @@
|
|||||||
"id": "358",
|
"id": "358",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"content": "Detalles de Caza de reclutas certificada [Hija del río]",
|
|
||||||
"jump_url": "https://endfield.gryphline.com/news/1338",
|
|
||||||
"start_ts": "1773203400000",
|
|
||||||
"id": "344",
|
|
||||||
"need_token": false
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"content": "Guía de herramientas del juego de Arknights: Endfield",
|
"content": "Guía de herramientas del juego de Arknights: Endfield",
|
||||||
"jump_url": "https://endfield.gryphline.com/news/0755",
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user