Contact Us

Get in touch with us — we'd love to hear from you!

Send us a Message

Have a question or want to book a session? Fill out the form below and we'll respond as soon as possible.

Please enter your full name
We'll use this to respond to your message
Include country code if calling internationally
This helps us direct your message to the right team
Please provide as much detail as possible
/** * Global Organization Schema */ add_action('wp_head', function() { // Don't output global schema if location-specific schema is used if (get_query_var('is_location_page') === true) { return; } $schema = [ "@context" => "https://schema.org", "@type" => "Organization", "@id" => home_url('/#organization'), "name" => "Jus Jumpin", "legalName" => "Jus Jumpin Kids Entertainment Private Limited", "url" => home_url('/'), "logo" => "https://www.jusjumpin.com/wp-content/uploads/2025/06/Jus-Jumpin-Logo-2-1024x209.png", "description" => "Jus Jumpin is a national brand of indoor trampoline parks and kids entertainment zones across India.", "contactPoint" => [ [ "@type" => "ContactPoint", "telephone" => "+919836229922", "contactType" => "Customer Service", "areaServed" => "IN", "availableLanguage" => ["English", "Hindi", "Bengali", "Marathi"] ] ], "sameAs" => [ "https://www.facebook.com/jusjumpin", "https://www.instagram.com/jusjumpin/", "https://www.youtube.com/@jusjumpin" ] ]; echo ''; });