以前所未有的方式分析你的游戏
法典
仇远
CYZΞD 定期更新,因此您始终可以找到最新的游戏变化。
表现
Coming 2026 Q1
评估你的进步
通过个性化计划改善时间安排。
1.03s
图书馆
组合循环
保存您的游戏玩法并分析您的技能。


排行榜
Coming 2026 Q1
竞争取胜
提交您的顶级周期并通过公平的投票系统晋升到更高的排名。
数据
Coming 2026 Q2
强大的 API
使用与 CYZΞD 相同的数据,创建您自己的服务。解锁高级仪表板、清晰的文档,并获得定制集成的高级支持。
api.data.ts
App.tsx
import { Elysia, t } from 'elysia'
const app = new Elysia()
.get('/WTW0G/weapon/:id', async ({ params, set })=> {
try {
const response = await fetch(
`https://cyzed.com/api/WTW0G/weapon/${params.id}`
)
if (!response.ok) {
set.status = 404
return { error: 'Weapon not found' }
}
const weapon = await response.json()
return weapon
} catch (error) {
set.status = 500
return { error: error.message }
}
})
.listen(3000)
const app = new Elysia()
.get('/WTW0G/weapon/:id', async ({ params, set })=> {
try {
const response = await fetch(
`https://cyzed.com/api/WTW0G/weapon/${params.id}`
)
if (!response.ok) {
set.status = 404
return { error: 'Weapon not found' }
}
const weapon = await response.json()
return weapon
} catch (error) {
set.status = 500
return { error: error.message }
}
})
.listen(3000)