Agent skill
hotjar
Access Hotjar recordings and heatmaps via API. Understand user behavior on your site.
Stars
163
Forks
31
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/hotjar
Metadata
Additional technical details for this skill
- clawdbot
-
{ "emoji": "\ud83d\udd25", "requires": { "env": [ "HOTJAR_API_KEY", "HOTJAR_SITE_ID" ] } }
SKILL.md
Hotjar
Behavior analytics.
Environment
bash
export HOTJAR_API_KEY="xxxxxxxxxx"
export HOTJAR_SITE_ID="xxxxxxxxxx"
List Recordings
bash
curl "https://api.hotjar.com/v1/sites/$HOTJAR_SITE_ID/recordings" \
-H "Authorization: Bearer $HOTJAR_API_KEY"
Get Recording
bash
curl "https://api.hotjar.com/v1/sites/$HOTJAR_SITE_ID/recordings/{recordingId}" \
-H "Authorization: Bearer $HOTJAR_API_KEY"
List Heatmaps
bash
curl "https://api.hotjar.com/v1/sites/$HOTJAR_SITE_ID/heatmaps" \
-H "Authorization: Bearer $HOTJAR_API_KEY"
List Surveys
bash
curl "https://api.hotjar.com/v1/sites/$HOTJAR_SITE_ID/surveys" \
-H "Authorization: Bearer $HOTJAR_API_KEY"
Links
Didn't find tool you were looking for?