CYZΞD

Analyze your game like never before

Caitlyn
Caitlyn

Codex

Caitlyn

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

Performance

Size up your progress

Improve timings with a personalized plan.

0.94s

Library

Combo Cycles

Save your gameplay and analyze your skills.

Leaderboard

Compete to Win

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

Data

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('/2XK0F/fuse/:id', async ({ params, set })=> {
    try {
      const response = await fetch(
        `https://cyzed.com/api/2XK0F/fuse/${params.id}`
      )

      if (!response.ok) {
        set.status = 404
        return { error: 'Fuse not found' }
      }

      const fuse = await response.json()
      return fuse
    } catch (error) {
      set.status = 500
      return { error: error.message }
    }
  })
  .listen(3000)