Integrate Amplitude into your workflow to track events, identify users and groups, search for users, query analytics, analyze funnels and retention, and retrieve revenue data.
Track an event in Amplitude using the HTTP V2 API.
| Parameter | Type | Required | Description |
|---|
apiKey | string | Yes | Amplitude API Key |
userId | string | No | User ID (required if no device_id) |
deviceId | string | No | Device ID (required if no user_id) |
eventType | string | Yes | Name of the event (e.g., "page_view", "purchase") |
eventProperties | string | No | JSON object of custom event properties |
userProperties | string | No | JSON object of user properties to set (supports $set, $setOnce, $add, $append, $unset) |
time | string | No | Event timestamp in milliseconds since epoch |
sessionId | string | No | Session start time in milliseconds since epoch |
insertId | string | No | Unique ID for deduplication (within 7-day window) |
appVersion | string | No | Application version string |
platform | string | No | Platform (e.g., "Web", "iOS", "Android") |
country | string | No | Two-letter country code |
language | string | No | Language code (e.g., "en") |
ip | string | No | IP address for geo-location |
price | string | No | Price of the item purchased |
quantity | string | No | Quantity of items purchased |
revenue | string | No | Revenue amount |
productId | string | No | Product identifier |
revenueType | string | No | Revenue type (e.g., "purchase", "refund") |
dataResidency | string | No | Data residency region: "us" (default) or "eu" |
| Parameter | Type | Description |
|---|
code | number | Response code (200 for success) |
eventsIngested | number | Number of events ingested |
payloadSizeBytes | number | Size of the payload in bytes |
serverUploadTime | number | Server upload timestamp |
Set user properties in Amplitude using the Identify API. Supports $set, $setOnce, $add, $append, $unset operations.
| Parameter | Type | Required | Description |
|---|
apiKey | string | Yes | Amplitude API Key |
userId | string | No | User ID (required if no device_id) |
deviceId | string | No | Device ID (required if no user_id) |
userProperties | string | Yes | JSON object of user properties. Use operations like $set, $setOnce, $add, $append, $unset. |
dataResidency | string | No | Data residency region: "us" (default) or "eu" |
| Parameter | Type | Description |
|---|
code | number | HTTP response status code |
message | string | Response message |
Set group-level properties in Amplitude. Supports $set, $setOnce, $add, $append, $unset operations.
| Parameter | Type | Required | Description |
|---|
apiKey | string | Yes | Amplitude API Key |
groupType | string | Yes | Group classification (e.g., "company", "org_id") |
groupValue | string | Yes | Specific group identifier (e.g., "Acme Corp") |
groupProperties | string | Yes | JSON object of group properties. Use operations like $set, $setOnce, $add, $append, $unset. |
dataResidency | string | No | Data residency region: "us" (default) or "eu" |
| Parameter | Type | Description |
|---|
code | number | HTTP response status code |
message | string | Response message |
Search for a user by User ID, Device ID, or Amplitude ID using the Dashboard REST API.
| Parameter | Type | Required | Description |
|---|
apiKey | string | Yes | Amplitude API Key |
secretKey | string | Yes | Amplitude Secret Key |
user | string | Yes | User ID, Device ID, or Amplitude ID to search for |
dataResidency | string | No | Data residency region: "us" (default) or "eu" |
| Parameter | Type | Description |
|---|
matches | array | List of matching users |
type | string | Match type (e.g., match_user_or_device_id) |
Get the event stream for a specific user by their Amplitude ID.
| Parameter | Type | Required | Description |
|---|
apiKey | string | Yes | Amplitude API Key |
secretKey | string | Yes | Amplitude Secret Key |
amplitudeId | string | Yes | Amplitude internal user ID |
offset | string | No | Offset for pagination (default 0) |
limit | string | No | Maximum number of events to return (default 1000, max 1000) |
direction | string | No | Sort direction: "latest" or "earliest" (default: latest) |
dataResidency | string | No | Data residency region: "us" (default) or "eu" |
| Parameter | Type | Description |
|---|
events | array | List of user events |
userData | json | User metadata |
Get a user profile including properties, cohort memberships, and computed properties. Not available for EU data-residency projects.
| Parameter | Type | Required | Description |
|---|
secretKey | string | Yes | Amplitude Secret Key |
userId | string | No | External user ID (required if no device_id) |
deviceId | string | No | Device ID (required if no user_id) |
getAmpProps | string | No | Include Amplitude user properties (true/false, default: false) |
getCohortIds | string | No | Include cohort IDs the user belongs to (true/false, default: false) |
getComputations | string | No | Include computed user properties (true/false, default: false) |
| Parameter | Type | Description |
|---|
userId | string | External user ID |
deviceId | string | Device ID |
ampProps | json | Amplitude user properties (library, first_used, last_used, custom properties) |
cohortIds | array | List of cohort IDs the user belongs to |
computations | json | Computed user properties |
Query event analytics data with segmentation. Get event counts, uniques, averages, and more.
| Parameter | Type | Required | Description |
|---|
apiKey | string | Yes | Amplitude API Key |
secretKey | string | Yes | Amplitude Secret Key |
eventType | string | Yes | Event type name to analyze |
start | string | Yes | Start date in YYYYMMDD format |
end | string | Yes | End date in YYYYMMDD format |
metric | string | No | Metric type: uniques, totals, pct_dau, average, histogram, sums, value_avg, or formula (default: uniques) |
interval | string | No | Time interval: 1 (daily), 7 (weekly), or 30 (monthly) |
groupBy | string | No | Property name to group by (prefix custom user properties with "gp:") |
groupBy2 | string | No | Second property name to group by (prefix custom user properties with "gp:") |
limit | string | No | Maximum number of group-by values (max 1000) |
filters | string | No | JSON array of filter objects applied to the event, e.g. [{"subprop_type":"event","subprop_key":"city","subprop_op":"is","subprop_value":["San Francisco"]}] |
formula | string | No | Required when metric is "formula", e.g. "UNIQUES(A)/UNIQUES(B)" |
segment | string | No | JSON segment definition(s) applied to the query |
dataResidency | string | No | Data residency region: "us" (default) or "eu" |
| Parameter | Type | Description |
|---|
series | json | Time-series data arrays indexed by series |
seriesLabels | array | Labels for each data series |
seriesCollapsed | json | Collapsed aggregate totals per series |
xValues | array | Date values for the x-axis |
Get active or new user counts over a date range from the Dashboard REST API.
| Parameter | Type | Required | Description |
|---|
apiKey | string | Yes | Amplitude API Key |
secretKey | string | Yes | Amplitude Secret Key |
start | string | Yes | Start date in YYYYMMDD format |
end | string | Yes | End date in YYYYMMDD format |
metric | string | No | Metric type: "active" or "new" (default: active) |
interval | string | No | Time interval: 1 (daily), 7 (weekly), or 30 (monthly) |
groupBy | string | No | Property name to group by |
segment | string | No | JSON segment definition(s) applied to the query |
dataResidency | string | No | Data residency region: "us" (default) or "eu" |
| Parameter | Type | Description |
|---|
series | json | Array of data series with user counts per time interval |
seriesMeta | array | Metadata labels for each data series (e.g., segment names) |
xValues | array | Date values for the x-axis |
Get real-time active user counts at 5-minute granularity for the last 2 days.
| Parameter | Type | Required | Description |
|---|
apiKey | string | Yes | Amplitude API Key |
secretKey | string | Yes | Amplitude Secret Key |
dataResidency | string | No | Data residency region: "us" (default) or "eu" |
| Parameter | Type | Description |
|---|
series | json | Array of data series with active user counts at 5-minute intervals |
seriesLabels | array | Labels for each series (e.g., "Today", "Yesterday") |
xValues | array | Time values for the x-axis (e.g., "15:00", "15:05") |
List all event types in the Amplitude project with their weekly totals and unique counts.
| Parameter | Type | Required | Description |
|---|
apiKey | string | Yes | Amplitude API Key |
secretKey | string | Yes | Amplitude Secret Key |
dataResidency | string | No | Data residency region: "us" (default) or "eu" |
| Parameter | Type | Description |
|---|
events | array | List of event types in the project |
Get revenue LTV data including ARPU, ARPPU, total revenue, and paying user counts.
| Parameter | Type | Required | Description |
|---|
apiKey | string | Yes | Amplitude API Key |
secretKey | string | Yes | Amplitude Secret Key |
start | string | Yes | Start date in YYYYMMDD format |
end | string | Yes | End date in YYYYMMDD format |
metric | string | No | Metric: 0 (ARPU), 1 (ARPPU), 2 (Total Revenue), 3 (Paying Users) |
interval | string | No | Time interval: 1 (daily), 7 (weekly), or 30 (monthly) |
groupBy | string | No | Property name to group by (limit: one) |
segment | string | No | JSON segment definition(s) applied to the query |
dataResidency | string | No | Data residency region: "us" (default) or "eu" |
| Parameter | Type | Description |
|---|
series | array | Revenue data series [{dates: [YYYY-MM-DD], values: {<date>: {r1d..r90d, count, paid, total_amount}}}] |
seriesLabels | array | Labels for each data series |
Analyze conversion rates and drop-off between a sequence of events.
| Parameter | Type | Required | Description |
|---|
apiKey | string | Yes | Amplitude API Key |
secretKey | string | Yes | Amplitude Secret Key |
events | string | Yes | JSON array of event objects, one per funnel step in order, e.g. [{"event_type":"signup"},{"event_type":"purchase"}] |
start | string | Yes | Start date in YYYYMMDD format |
end | string | Yes | End date in YYYYMMDD format |
mode | string | No | Funnel ordering: "ordered", "unordered", or "sequential" (default: ordered) |
userType | string | No | User type: "new" or "active" (default: active) |
interval | string | No | Time interval: -300000 (real-time), -3600000 (hourly), 1 (daily), 7 (weekly), or 30 (monthly) |
conversionWindowSeconds | string | No | Conversion window in seconds (default: 2592000, i.e. 30 days) |
groupBy | string | No | Property to group by (limit: one; prefix custom properties with "gp:") |
limit | string | No | Maximum number of group-by values (default: 100, max: 1000) |
segment | string | No | JSON segment definition(s) applied to the query |
dataResidency | string | No | Data residency region: "us" (default) or "eu" |
| Parameter | Type | Description |
|---|
funnels | array | Funnel results, one entry per segment |
Measure how many users return to perform an action after a starting action.
| Parameter | Type | Required | Description |
|---|
apiKey | string | Yes | Amplitude API Key |
secretKey | string | Yes | Amplitude Secret Key |
startEvent | string | Yes | JSON starting event object, e.g. {"event_type":"_new"} or {"event_type":"_active"} |
returnEvent | string | Yes | JSON returning event object, e.g. {"event_type":"_all"} or {"event_type":"_active"} |
start | string | Yes | Start date in YYYYMMDD format |
end | string | Yes | End date in YYYYMMDD format |
retentionMode | string | No | Retention type: "bracket", "rolling", or "n-day" (default: n-day) |
retentionBrackets | string | No | Required when Retention Mode is "bracket". Day ranges, e.g. [[0,4]] |
interval | string | No | Time interval: 1 (daily), 7 (weekly), or 30 (monthly) |
groupBy | string | No | Property to group by (limit: one; prefix custom properties with "gp:") |
segment | string | No | JSON segment definition(s) applied to the query |
dataResidency | string | No | Data residency region: "us" (default) or "eu" |
| Parameter | Type | Description |
|---|
series | array | Retention data series [{dates, values: {<date>: [{count, outof, incomplete}]}, combined: [{count, outof, incomplete}]}] |
seriesMeta | array | Segment/event index metadata for each series entry |
- Category:
tools
- Type:
amplitude