CYZΞD

Analyze your game like never before

Qiuyuan
Qiuyuan

Codex

Qiuyuan

CYZΞD is regularly updated so you can always find the latest game changes.

Performance

Coming 2026 Q1

Size up your progress

Improve timings with a personalized plan.

1.03s

Library

Combo Cycles

Save your gameplay and analyze your skills.

Leaderboard

Coming 2026 Q1

Compete to Win

Submit your top cycles and advance to higher ranks through a fair voting system.

Data

Coming 2026 Q2

Powerful APIs

Create your own services using the same data powering CYZΞD. Unlock advanced dashboards, clear documentation and access to premium support for bespoke integration.

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)