55 South

San Jose
Bar - Cocktail Bar Downtown Downtown San Jose Founding member

Reviews

No reviews yet

Location & Contact

55 S 1st St, San Jose, CA 95113

Location

Explore by Area

Seven neighborhoods, one downtown. Start with the areas below — more neighborhood guides are on the way.

Downtown 87 listings → San Pedro Square 11 listings →
The Alameda Coming soon
Willow Glen Coming soon
Santana Row Coming soon
Little Italy Coming soon
Japantown Coming soon
// Restrained reveal-on-scroll for San Jose homepage (echoes Webflow's intentional motion language) // Lightweight vanilla JS: IntersectionObserver, no libraries. Respects prefers-reduced-motion. (function() { if (window.location.pathname !== '/') return; if (window.matchMedia('(prefers-reduced-motion: reduce)').matches) return; var sections = document.querySelectorAll('main section'); if (!sections.length || !('IntersectionObserver' in window)) return; var io = new IntersectionObserver(function(entries) { entries.forEach(function(en) { if (en.isIntersecting) { en.target.classList.add('is-visible'); io.unobserve(en.target); } }); }, { threshold: 0.1, rootMargin: '0px 0px -6% 0px' }); sections.forEach(function(el) { el.classList.add('gn-reveal'); io.observe(el); }); })();