Amplitude
Server-side event tracking to Amplitude via the HTTP V2 API for product analytics, user behavior, and conversion analysis.
Configuration
| Field | Type | Required | Description |
|---|---|---|---|
api_key | secret | Yes | Your Amplitude project API key. Found in Settings > Projects > select your project. |
secret_key | secret | Yes | Your Amplitude project secret key. Used for server-side API authentication. Found alongside the API key in project settings. |
min_id_length | number | No | Minimum allowed length for user_id and device_id fields. Amplitude defaults to 5. Set lower if your identifiers are shorter. |
Quick Setup
- Navigate to Integrations in the sidebar.
- Open the Integration Library tab.
- Find Amplitude or filter by Analytics.
- Click Install, select a variant if available, and fill in the required fields.
- Click Install Integration to create the integration with a ready-to-use default configuration.
API Setup
curl -X POST http://localhost:8084/v1/admin/integration-catalog/amplitude/install \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"name": "Amplitude",
"variant": "default",
"config": {
"api_key": "your_api_key",
"secret_key": "your_secret_key"
},
"delivery_mode": "server_side"
}'Variants
Amplitude is available in multiple pre-configured variants to match your industry:
| Variant | Description |
|---|---|
| Default | Standard Amplitude server-side event delivery with user and event property mapping. |
| Retail & Ecommerce | Ecommerce-optimized configuration with revenue tracking, product properties, and purchase funnel events pre-mapped. |
| Media & Entertainment | Media-focused configuration with content engagement events, session replay grouping, and playback tracking properties. |
Each variant provides a tuned default configuration. You can customise any setting after installation.
Delivery
Events are delivered server-side from your Datafly Signal infrastructure directly to the Amplitude API. No client-side scripts are loaded for this integration.
Visit Amplitude documentation for full API documentation and credential setup instructions.