> ## Documentation Index
> Fetch the complete documentation index at: https://help.revenuehero.io/llms.txt
> Use this file to discover all available pages before exploring further.

# How to integrate RevenueHero with Unbounce forms?

> Integrate RevenueHero's scheduler with your Unbounce form in 4 simple steps

RevenueHero works easily with your Unbounce forms on your landing pages. These steps will show you how to set up RevenueHero widget with your form to convert demos quickly with the Inbound Router!

1. Identify the [unique form identifier](https://documentation.unbounce.com/hc/en-us/articles/203799174-Adding-and-Editing-Forms-in-the-Classic-Builder#content10) for your Unbounce Form which will be something like `#lp-pom-form-27`
   <Note>
     **Note**
     If Unbounce forms do not have an ID property, one can use `form` as the identifier as long as it's the only form on your landing page. But it's **recommended** to set up a form with ID and use that in RevenueHero script.
   </Note>
2. Set up an [Inbound Router](/routers/inbound/create-inbound-router) in RevenueHero with the form identifier in your form mapping
3. Copy the [installation script](/routers/inbound/create-inbound-router#install-the-script) from the final step of the router set up.
   ```javascript Sample installation script theme={null}
   <script type="text/javascript" src="https://assets.revenuehero.io/scheduler.min.js"></script>
   <script type="text/javascript">
      window.hero = new RevenueHero({ routerId: '123' }); // Replace 123 with Router ID
      hero.schedule('#lp-pom-form-27'); // Unbounce form ID
   </script>
   ```
4. In Unbounce, in your [Script Manager](https://documentation.unbounce.com/hc/en-us/articles/360035250491-Adding-Your-Custom-Scripts-Using-Script-Manager#content2), add a custom script, choose placement as **Before Body end tag**, paste the RevenueHero widget script and save.

That's it. You're ready to start converting your Demo Meetings from your landing page 🎉🎉
