Access Hotjar recordings and heatmaps via API. Understand user behavior on your site.
Scanned 2/12/2026
Install via CLI
openskills install openclaw/skills---
name: hotjar
description: Access Hotjar recordings and heatmaps via API. Understand user behavior on your site.
metadata: {"clawdbot":{"emoji":"🔥","requires":{"env":["HOTJAR_API_KEY","HOTJAR_SITE_ID"]}}}
---
# 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
- Dashboard: https://www.hotjar.com
- Docs: https://help.hotjar.com/hc/en-us/articles/360033640653-Hotjar-API
No comments yet. Be the first to comment!
Find and analyze YouTube competitor channels using YouTube Data API v3. Discover competitors through keyword search, category matching, content similarity, and related channel discovery. Compare metrics, content strategies, and market positioning. Use when users want to (1) Find competitors for their YouTube channel, (2) Analyze competitor performance metrics, (3) Compare their channel against competitors, (4) Identify content gaps and opportunities, (5) Benchmark against similar creators, (6...