Website

Guides

Audyo Snippet

Once you are set up on Wordpress/Ghost/Custom, you can add the Audyo snippet to the <head> tag of your website to automatically load Audyo.

Instructions

Replace AUDYO_ORG_ID with your organization ID.

<script>
    window.addEventListener("DOMContentLoaded", () => {
        const u = "https://cdn.audyo.ai/audyo.js";
        const i ="audyo.js"
        const s = document.createElement("script");
        const d = document.createElement("div");
        s.src = u;
        d.id = i;
        document.body.append(d, s);
        s.onload = (_) => {
            Audyo.init({ userId: "AUDYO_USER_ID" });
        };
    });
</script>
Previous
WordPress Integration