Access Hotjar recordings and heatmaps via API. Understand user behavior on your site.
Behavior analytics.
```bash
export HOTJAR_API_KEY="xxxxxxxxxx"
export HOTJAR_SITE_ID="xxxxxxxxxx"
```
```bash
curl "https://api.hotjar.com/v1/sites/$HOTJAR_SITE_ID/recordings" \
-H "Authorization: Bearer $HOTJAR_API_KEY"
```
```bash
curl "https://api.hotjar.com/v1/sites/$HOTJAR_SITE_ID/recordings/{recordingId}" \
-H "Authorization: Bearer $HOTJAR_API_KEY"
```
```bash
curl "https://api.hotjar.com/v1/sites/$HOTJAR_SITE_ID/heatmaps" \
-H "Authorization: Bearer $HOTJAR_API_KEY"
```
```bash
curl "https://api.hotjar.com/v1/sites/$HOTJAR_SITE_ID/surveys" \
-H "Authorization: Bearer $HOTJAR_API_KEY"
```
Leave a review
No reviews yet. Be the first to review this skill!