Upcoming experiences
Get a list of upcoming experiences.
You can find an older version of the list further down the page, but you should use the wizard for the latest version.
-
Get the data
Clicking the button opens a new tab with a lot of gibberish (aka JSON). Copy all of it and paste it in step 2.
-
Analyze data
Paste the data from step 1 into the following field and hit analyze.
-
Result
Upcoming experiences will appear after hitting the Analyze button
Release Date | Experience |
---|
The List
Section titled “The List”Last updated: 2025-10-17 09:49:43. You can get the latest version with the wizard above.
Release Date | Experience |
---|---|
2025-09-24 | Cirque du Soleil LUZIA |
2025-09-24 | Jurassic World: Dinosaur Preserve |
2025-09-24 | G-SHOCK CITY |
2025-09-24 | Season 6 Hub |
2025-09-26 | Club XYZ feat. Steve Aoki |
2025-09-29 | Steve Aoki Neon Hiroquest |
2025-10-01 | Honey Moon |
2025-10-03 | Cheech & Chong: The Joint Gathering |
2025-10-06 | Charles & Keith Playtest |
2025-10-08 | Terminator: Timefracture |
2025-10-10 | SpookTonaut |
2025-10-13 | Liminal Multiplex |
2025-10-15 | King Kong of Skull Island |
2025-10-17 | Krishna's Leela: Path to Kamsa |
2025-10-20 | Eduverse - The Legend of Aphai |
2025-10-22 | Black Mirror : San Junipero |
2025-10-24 | Attack on Titan: The Deadly Chase |
2025-10-27 | Jamiroquai - Escape The Insanity |
2025-10-29 | SSC Napoli - Azzurri Dreams |
? (ETA: 2025-10-31) | 😶🌫️ Unknown (exp: Cirque du Soleil Mad Apple) |
2025-11-03 | SABOTAJ |
2025-11-05 | Peaky Blinders: Garrison Lane |
2025-11-07 | Love Island 2 |
2025-11-10 | Extraordinary Attorney Woo Dream Land |
2025-11-12 | The Smurfs: Alchemist Chaos |
2025-11-14 | Genbu's Travel |
2025-11-17 | Bond Voyage |
2025-11-19 | The Atari Club |
2025-11-21 | Drop' it |
2025-11-24 | Arcade Manager |
Console snippet
Section titled “Console snippet”I sometimes just prefer to use the browser’s console. You too? No problem. Don’t like it? Just use the wizard above.
Open your browser’s console with F12 and paste the following code. Only works when you’re on the Sandbox website. Please make sure to understand what you do. Pasting and executing unknown code can be dangerous.
await fetch('https://api.sandbox.game/experiences/social-event/515').then(e=>e.json()).then(e=>e.map(e=>`${e.publishDate?new Date(e.publishDate).toISOString().split('T')[0]:'????-??-??'} ${e.name??'😶🌫️ unknown'}`));
await fetch('https://api.sandbox.game/experiences/social-event/515') .then(response => response.json()) .then(data => data.map(experience => `${experience.publishDate ? new Date(experience.publishDate).toISOString().split('T')[0] : '????-??-??'} ${experience.name ?? '😶🌫️ unknown'}` ))