Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.koulis.ai/llms.txt

Use this file to discover all available pages before exploring further.

La Krème gives you three ways to let guests reach your booking page: a direct link you can paste anywhere, an iframe you drop into your website’s HTML, and a web component for more advanced integrations. Choose whichever fits your setup — all three point to the same live availability data.
For Instagram bios, Google Maps listings, and email signatures, the direct link is the easiest option. Use the iframe or web component when you want the reservation form to appear inline on your own website.

Finding your token

All three methods use your public token (YOUR_TOKEN). To find it, go to Dashboard → Ma page de reservation. Your booking URL is displayed in the Votre page de reservation card — your token is the last part of that URL.
The simplest option. Copy your booking URL and put it wherever guests can click it. No code, no embedding. Works great for: Instagram bio, Google Maps “Book a table” link, email signatures, and text links on your website.
<a href="https://app.lakreme.fr/reserve/YOUR_TOKEN" target="_blank">
  Book a table
</a>
Replace YOUR_TOKEN with your actual public token. The link opens the full booking page in a new tab.

Option 2: Iframe

Embed the booking widget inline on any web page. The widget loads inside a frame on your site, so guests never leave.
<iframe
  src="https://app.lakreme.fr/widget/YOUR_TOKEN?lang=fr"
  width="100%"
  height="600"
  frameborder="0"
  style="border-radius: 12px;"
></iframe>
Set height to at least 600 pixels to avoid scrolling inside the frame. Use width="100%" to make the widget responsive. The border-radius is optional but gives the widget a softer look.

Option 3: Web component

For advanced users who want a custom HTML element. Load the widget script once, then use the <lk-reservation-widget> element anywhere on the page.
<script src="https://app.lakreme.fr/widget.js"></script>

<lk-reservation-widget
  restaurant-id="YOUR_TOKEN"
  lang="fr"
></lk-reservation-widget>
The web component renders the same booking flow as the iframe but integrates directly into your page’s DOM, which can be useful if you need to control styling or react to events with JavaScript.

Language parameter

All three embed options support a lang parameter that sets the language of the widget interface.
ValueLanguage
lang=frFrench (default)
lang=enEnglish
For the direct link and iframe, append ?lang=en to the URL. For the web component, set lang="en" as an attribute.