Empire State Building Bar Hop Test
Public Product Datasheet
Cannonical Website Url
https://www.amazingco.me/us/experiences/empire-state-bar-hop-test
Experience Location
New York, USA
What is the experience?
<style> .esb-block { --line: #dddddd; --pink: #d1517a; max-width: none; margin: 0; /* centred in the column */ text-align: left; } /* Intro description */ .esb-intro { margin: 0 0 36px; } .esb-intro p { font-size: 16px; line-height: 1.6; text-align: left; margin: 0 0 16px; padding: 0; } .esb-intro p:last-child { margin-bottom: 0; } /* Timeline */ .esb-itinerary h2 { font-size: 26px; font-weight: 700; /* bold */ margin: 0 0 28px; letter-spacing: -0.2px; } .esb-steps { list-style: none; margin: 0; padding: 0; position: relative; } .esb-step { position: relative; display: flex; gap: 20px; padding-bottom: 28px; } /* connecting line runs down from below each arch */ .esb-step::before { content: ""; position: absolute; left: 29px; top: 66px; bottom: 0; width: 1px; background: var(--line); } .esb-step:last-child::before { display: none; } /* AmazingCo arch: rounded crown, straight sides, flat bottom */ .esb-thumb { flex: 0 0 58px; width: 58px; height: 64px; border-radius: 27px 27px 0 0; object-fit: cover; background: #f0f0f0; z-index: 1; cursor: pointer; transition: transform 0.15s ease; } .esb-thumb:hover { transform: scale(1.04); } /* copy vertically centred against the arch */ .esb-copy { display: flex; flex-direction: column; justify-content: center; } .esb-copy h3 { font-size: 16px; font-weight: 600; margin: 0 0 4px; color: var(--pink); /* brand pink headings */ } .esb-copy p { font-size: 15px; line-height: 1.5; margin: 0; } @media (max-width: 480px) { .esb-intro p { font-size: 15px; } .esb-itinerary h2 { font-size: 22px; } .esb-step::before { left: 25px; top: 58px; } .esb-thumb { flex-basis: 50px; width: 50px; height: 56px; border-radius: 24px 24px 0 0; } } /* Lightbox pop-out */ .esb-lightbox { position: fixed; inset: 0; background: rgba(0, 0, 0, 0.8); display: none; align-items: center; justify-content: center; z-index: 9999; cursor: zoom-out; padding: 24px; } .esb-lightbox.is-open { display: flex; } .esb-lightbox img { max-width: min(90vw, 560px); max-height: 90vh; border-radius: 120px 120px 12px 12px; /* arch echo on the pop-out */ object-fit: cover; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5); } </style> <section class="esb-block"> <div class="esb-intro"> <p>Midtown is full of people rushing past the Empire State Building. This time, you're slowing down, looking up, and letting the city reveal a few secrets between drinks.</p> <p>Follow clues on your phone through Midtown, unlocking three bar stops and a visit to the Empire State Building Observation Deck. Expect cocktails, tacos and a few surprises across the night.</p> <p>We map the route and line up the stops, so the night unfolds without anyone playing organizer. You just follow the clues, raise a glass, and take in the city from above.</p> </div> <div class="esb-itinerary"> <h2>How the night unfolds</h2> <ul class="esb-steps"> <li class="esb-step"> <img class="esb-thumb" src="https://product-ui-static-media.s3.ap-southeast-2.amazonaws.com/empire_state_bar_hop_timeline_1_200x200.jpg" alt="The four friends heading into Midtown"> <div class="esb-copy"> <h3>Let the first clue lead</h3> <p>Receive your clues and unlock your first location. Follow them into Midtown and the night begins.</p> </div> </li> <li class="esb-step"> <img class="esb-thumb" src="https://product-ui-static-media.s3.ap-southeast-2.amazonaws.com/empire_state_bar_hop_timeline_2_200x200.jpg" alt="A cocktail at the first stop"> <div class="esb-copy"> <h3>First stop, first round</h3> <p>Your first bar stop of the night, with a cocktail inspired by the Empire State to kick things off.</p> </div> </li> <li class="esb-step"> <img class="esb-thumb" src="https://product-ui-static-media.s3.ap-southeast-2.amazonaws.com/empire_state_bar_hop_timeline_3_200x200.jpg" alt="Tacos and a drink along the route"> <div class="esb-copy"> <h3>Tacos, sorted</h3> <p>Your next clue leads to somewhere delicious. Two tacos each and a drink to match.</p> </div> </li> <li class="esb-step"> <img class="esb-thumb" src="https://product-ui-static-media.s3.ap-southeast-2.amazonaws.com/empire_state_bar_hop_timeline_4_200x200.jpg" alt="The Empire State Building Observation Deck"> <div class="esb-copy"> <h3>Straight to the top</h3> <p>Your entry to the Empire State Building Observation Deck is included. Eighty-six floors up, with the whole city below.</p> </div> </li> <li class="esb-step"> <img class="esb-thumb" src="https://product-ui-static-media.s3.ap-southeast-2.amazonaws.com/empire_state_bar_hop_timeline_5_200x200.jpg" alt="A game on your phone at the top"> <div class="esb-copy"> <h3>Game on</h3> <p>Play a game on your phone while you take in the view.</p> </div> </li> <li class="esb-step"> <img class="esb-thumb" src="https://product-ui-static-media.s3.ap-southeast-2.amazonaws.com/empire_state_bar_hop_timeline_6_200x200.jpg" alt="A final cocktail with the city lit up behind"> <div class="esb-copy"> <h3>One last look up</h3> <p>The last stop, and a final cocktail with the Empire State Building lit up behind you.</p> </div> </li> </ul> </div> <!-- Pop-out viewer --> <div class="esb-lightbox" id="esbLightbox"> <img src="" alt=""> </div> </section> <script> (function () { var lb = document.getElementById('esbLightbox'); if (!lb) return; var lbImg = lb.querySelector('img'); document.querySelectorAll('.esb-thumb').forEach(function (thumb) { thumb.addEventListener('click', function () { lbImg.src = thumb.src; lbImg.alt = thumb.alt; lb.classList.add('is-open'); }); }); lb.addEventListener('click', function () { lb.classList.remove('is-open'); }); document.addEventListener('keydown', function (e) { if (e.key === 'Escape') lb.classList.remove('is-open'); }); })(); </script>
Included in your experience
location_on
Self-guided Mystery Bar Hop through Midtown Manhattan
apartment
Entry to the Empire State Building Observation Deck
extension
Clues, games and trivia delivered to your phone
store
Three Midtown bar stops woven into the Empire State Building story
wine_bar
One cocktail included at each bar stop
local_dining
Two tacos per person at one stop
Experience Details
Duration
Around 4 hours.
Start time
5:40pm
Transport & accessibility
Walkable route through Midtown Manhattan.
Group Size
Minimum 2 adults, maximum 6 adults.
Good To Know
Your digital instructions will be emailed 24 hours before your booking and will include your starting location.
How Does The Experience Run?
Self-guided. Your phone leads you between each stop with clues, timing guidance, games and trivia along the way.
Age Restriction
21+ only. Alcohol is included.
What To Bring
Your phone, comfortable walking shoes, and valid ID.
Prices
-
Adult Price: 155 USD
Minimum Price: 310 USD
Quantity Range: 2 to 6 adults
Frequently Asked Questions
Availabilities
[
{
"endDate": null,
"startDate": "2026-06-05",
"daysAvailable": {
"FRI": 1,
"MON": 1,
"SAT": 1,
"SUN": 1,
"THU": 1,
"TUE": 1,
"WED": 1
}
}
]