Analyze user behavior via Heap API. Query events, users, and funnels.
Scanned 2/10/2026
Install to Claude Code
npx -y skills add majiayu000/claude-skill-registry --skill heap --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Heap?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/majiayu000-heap)More formats (shields.io, HTML) on the badges page.
---
name: heap
description: Analyze user behavior via Heap API. Query events, users, and funnels.
metadata: {"clawdbot":{"emoji":"📈","requires":{"env":["HEAP_APP_ID","HEAP_API_KEY"]}}}
---
# Heap
Product analytics.
## Environment
```bash
export HEAP_APP_ID="xxxxxxxxxx"
export HEAP_API_KEY="xxxxxxxxxx"
```
## Track Event (Server-side)
```bash
curl -X POST "https://heapanalytics.com/api/track" \
-H "Content-Type: application/json" \
-d '{"app_id": "'$HEAP_APP_ID'", "identity": "user@example.com", "event": "Purchase", "properties": {"amount": 99}}'
```
## Add User Properties
```bash
curl -X POST "https://heapanalytics.com/api/add_user_properties" \
-H "Content-Type: application/json" \
-d '{"app_id": "'$HEAP_APP_ID'", "identity": "user@example.com", "properties": {"plan": "premium"}}'
```
## Query API
```bash
curl "https://heapanalytics.com/api/partner/v1/events?app_id=$HEAP_APP_ID" \
-H "Authorization: Bearer $HEAP_API_KEY"
```
## Links
- Dashboard: https://heapanalytics.com
- Docs: https://developers.heap.io
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!
Use this skill when developing or maintaining browser extension code in the `browser/` directory, including Chrome/Firefox/Edge compatibility, content scripts, background scripts, or i18n updates.