Mixpanel

Server-side event and profile delivery to Mixpanel via the Ingestion API for product analytics and user segmentation.

Configuration

FieldTypeRequiredDescription
project_tokenstringYesYour Mixpanel project token. Found in Project Settings > Access Keys > Project Token.
api_secretsecretYesYour Mixpanel project API secret for server-side authentication. Found in Project Settings > Access Keys.
eu_data_residencybooleanNoEnable to send data to Mixpanel’s EU data center (api-eu.mixpanel.com). Required for projects configured with EU data residency.

Quick Setup

  1. Navigate to Integrations in the sidebar.
  2. Open the Integration Library tab.
  3. Find Mixpanel or filter by Analytics.
  4. Click Install, select a variant if available, and fill in the required fields.
  5. 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/mixpanel/install \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "Mixpanel",
    "variant": "default",
    "config": {
      "project_token": "abc123def456789",
      "api_secret": "your_api_secret"
    },
    "delivery_mode": "server_side"
  }'

Variants

Mixpanel is available in multiple pre-configured variants to match your industry:

VariantDescription
DefaultStandard Mixpanel server-side event and profile delivery with identity management and property mapping.
Retail & EcommerceEcommerce-optimized configuration with purchase event mapping, revenue properties, and product catalog integration.

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 Mixpanel API. No client-side scripts are loaded for this integration.

Visit Mixpanel documentation for full API documentation and credential setup instructions.