Quick Start Guide
Get Rehearsals up and running on your website in 90 seconds.
Prerequisites
Before you begin, you'll need:
- A Rehearsals account (sign up here)
- Access to your website's code
- Your API credentials from the Rehearsals dashboard
Step 1: Get Your Credentials
After signing up for Rehearsals, you'll receive:
- API Key - Format:
dp_proj_xxxxx
- Organization ID - Format:
dp_org_xxxxx
You can find these in your Rehearsals Home under Settings → Project.
Step 2: Add the Script
Add the following code to your website's <head>
tag, before any other scripts:
<script>
// Configure Rehearsals
window.deepPredictionSettings = {
apiKey: 'dp_proj_xxxxx', // Required: Your project API key
organizationId: 'dp_org_xxxxx' // Required: Your organization ID
};
</script>
<script src="https://app.runrehearsals.com/recorder.js" async></script>
Replace dp_proj_xxxxx
and dp_org_xxxxx
with your actual credentials.
Step 3: Verify Installation
- Save and deploy your changes
- Visit your website in a browser
- Check your Rehearsals Home - you should see your session appear instantly
What's Next?
✅ Technical Installation Complete! Rehearsals is now recording customers on your website.
Next, you should log into Rehearsals and set up what's important:
- Configure what you want to track in Radar. We have a ton of inspiration.
- Set up any custom user attributes you want to extract in Data → Sessions
- Upload any documents we can learn from about your KPIs or what's important to you in Settings → Memory
Troubleshooting
Not seeing sessions?
- Check that your API key and Organization ID are correct
- Make sure the script is in the
<head>
section - Clear your browser cache and try again
- Check for JavaScript errors in the console
- Contact support@runrehearsals.com if issues persist