Integration documentation

Build a verified dealer-selection step.

Use a private server key for backend workflows, an origin-bound browser key for the widget, or install the maintained WooCommerce plugin.

Server integration

Call the authenticated search API.

  1. 1. Create an account and verify your email.
    The onboarding screen shows the first server key once.
  2. 2. Keep the ffl_live_ key on your server.
    Never place a server key in browser JavaScript or public source.
  3. 3. Search the verified checkout network.
curl "https://www.fflbridge.com/api/v1/search?zip=32174&radius=25" \
  -H "Authorization: Bearer ffl_live_YOUR_SERVER_KEY"

Browser integration

Create a public key for your storefront.

In the dashboard, choose Browser key and add the exact storefront domain. Browser keys begin with ffl_pub_ and can only perform dealer search.

<script
  src="https://www.fflbridge.com/widget.js"
  data-api-key="ffl_pub_YOUR_BROWSER_KEY"
  data-theme="dark">
</script>
<div id="ffl-bridge"></div>