Back to Integrations
    AL

    Voice Capture for Alchemer

    Add voice responses to your Alchemer surveys in 2 simple steps. Works with all Alchemer plans that support JavaScript Actions.

    Available

    Setup Guide

    1

    Add the script to your survey

    Go to Style > HTML/CSS Editor > Custom HEAD and paste this script tag. This only needs to be done once per survey.

    Step 1
    <script src="https://api.voicecapture.ai/voice.js" defer></script>
    2

    Add a JavaScript Action to your question

    Add an Action > JavaScript on the question page and paste this code. Change the QID variable to your Alchemer question ID number and replace proj_XXXXXXXX with your project key from the dashboard.

    Step 2
    (function() {
      var QID = '24'; // Change to your Alchemer question ID number
      if (document.getElementById('genius-voice-q' + QID)) return;
      var box = document.querySelector('[id*="-' + QID + '-box"]');
      if (!box) { console.warn('[GeniusVoice] No Alchemer box found for question ' + QID); return; }
      var c = document.createElement('div');
      c.id = 'genius-voice-q' + QID;
      c.className = 'genius-voice-capture';
      c.setAttribute('data-project', 'proj_XXXXXXXX');
      c.setAttribute('data-question', QID);
      c.setAttribute('data-lang', 'es');
      var sid = '[survey("session id")]';
      if (sid.indexOf('[') === -1) c.setAttribute('data-session', sid);
      var opts = box.querySelector('.sg-question-options');
      if (opts) box.insertBefore(c, opts);
      else box.appendChild(c);
      if (window.GeniusVoice) GeniusVoice.init(c);
    })();

    Session ID

    [survey("session id")]

    Alchemer's built-in merge code that uniquely identifies each respondent session.

    Need help?

    Our AI assistant can walk you through the setup step by step.

    Open AI Chat

    Your next study deserves better insights

    Set up Voice Capture in under 5 minutes. No credit card. No commitment.

    Get Started Free
    © 2026 Voice Capture. All rights reserved.

    We use cookies to improve your experience and analyze site traffic. Learn more