Dime.Scheduler Logo

TETRIS

GAME STATS

SCORE:0
LINES:0

HOW IT WORKS

This Tetris game is controlled by the API. Each API invocation adds 1 block to the queue. Pieces automatically appear on the board from the queue, colored based on the category color. Use arrow keys to move pieces (←→↓) and rotate (↑). Click PLAY NEXT MOVE to drop the current piece immediately.

NEXT PIECES

NO BLOCKS IN QUEUE

START PLAYING

USING CURL:
curl -X POST https://tetris.dimescheduler.com/api/webhook \
  -H "Content-Type: application/json" \
  -d @test-data.json
USING POWERSHELL:
Invoke-RestMethod -Uri "https://tetris.dimescheduler.com/api/webhook" \
  -Method POST -ContentType "application/json" \
  -Body '{"message": "Hello Tetris!"}'