Integration Guides

Carrd

Add Rybbit analytics to your Carrd site

Carrd builds one-page sites, and the snippet goes into the Head embed code field in the site settings.

Custom head code requires a Carrd Pro subscription (Pro Standard or Pro Plus). The Embed Code feature is not included on Pro Lite.

Get your tracking snippet

In your Rybbit dashboard, open Site Settings → Tracking Script and copy your snippet. It looks like this:

<script src="https://app.rybbit.io/api/script.js?siteId=YOUR_SITE_ID" defer></script>

YOUR_SITE_ID is the numeric ID of your site. If you self-host Rybbit, app.rybbit.io is the domain of your own instance.

Add the snippet to Carrd

  1. Open your site in the Carrd editor and click the Settings gear in the top right.
  2. Open the Settings tab and scroll to Embed Code.
  3. Paste the following into the Head field:
<script>
  (function () {
    var s = document.createElement("script");
    s.src = "https://app.rybbit.io/api/script.js?siteId=YOUR_SITE_ID";
    s.defer = true;
    document.head.appendChild(s);
  })();
</script>

This wraps the snippet in a small loader so Carrd's embed processing cannot rewrite the tag.

  1. Click Save, then Publish. Changes are not live until you publish.

If your site has multiple pages (a Pro Plus feature), the head code loads on all of them.

Verify installation

Open your live site in a new tab and click through a few pages. Within a few seconds the pageviews appear in the Rybbit dashboard.

If nothing shows up:

  • View the page source and search for script.js?siteId= to confirm the snippet is on the page.
  • Open the browser Network tab and check that script.js returns 200 and that POST requests go to /api/track.
  • Disable ad blockers, or set up a proxy so the script loads from your own domain.
  • See the script troubleshooting guide for other common causes.

Troubleshooting

  • The Head field is missing: the site is on Pro Lite or the free plan. Upgrade to Pro Standard or Pro Plus.
  • Snippet not in the page source: the site was saved but not published. Publish again from the editor.

Next steps

On this page