amplitude
Track events and analyze product usage via Amplitude API. Query user behavior, cohorts, and funnels.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/mrgoodb/amplitudeAmplitude
Product analytics platform.
Environment
export AMPLITUDE_API_KEY="xxxxxxxxxx"
export AMPLITUDE_SECRET_KEY="xxxxxxxxxx"
Track Event (HTTP API)
curl -X POST "https://api2.amplitude.com/2/httpapi" \
-H "Content-Type: application/json" \
-d '{
"api_key": "'$AMPLITUDE_API_KEY'",
"events": [{
"user_id": "user123",
"event_type": "Button Clicked",
"event_properties": {"button_name": "signup"}
}]
}'
Batch Track Events
curl -X POST "https://api2.amplitude.com/batch" \
-H "Content-Type: application/json" \
-d '{
"api_key": "'$AMPLITUDE_API_KEY'",
"events": [
{"user_id": "user1", "event_type": "Page View"},
{"user_id": "user2", "event_type": "Page View"}
]
}'
Export Events (Dashboard API)
curl -u "$AMPLITUDE_API_KEY:$AMPLITUDE_SECRET_KEY" \
"https://amplitude.com/api/2/export?start=20240101T00&end=20240102T00"
Get User Activity
curl -u "$AMPLITUDE_API_KEY:$AMPLITUDE_SECRET_KEY" \
"https://amplitude.com/api/2/useractivity?user=user123"
Get Active Users
curl -u "$AMPLITUDE_API_KEY:$AMPLITUDE_SECRET_KEY" \
"https://amplitude.com/api/2/users/list?start=20240101&end=20240131"
Links
- Dashboard: https://analytics.amplitude.com
- Docs: https://www.docs.developers.amplitude.com
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-mrgoodb-amplitude": {
"enabled": true,
"auto_update": true
}
}
}Related Skills
smartsheet
Manage sheets, rows, and columns via Smartsheet API. Automate spreadsheet workflows.
onelogin
Manage users and apps via OneLogin API. Handle SSO and identity management.
google-sheets
Read and write Google Sheets data. Create spreadsheets, update cells, and manage worksheets via Sheets API.
postmark
Send transactional emails with high deliverability via Postmark API. Manage templates, track bounces, and view analytics.
loom
Manage Loom video recordings - list, share, and get analytics via Loom API.