如何通过 API 获取新用户的 Amplitude 指标?

How can I get Amplitude metrics for New Users via the API?

对于 Amplitude REST API,系统事件“[Amplitude] Any Event”的 'event_type' 是“_active”,如下所述: https://amplitude.zendesk.com/hc/en-us/articles/205469748-Dashboard-Rest-API-Export-Amplitude-Dashboard-Data#query-parameters

我用它来吸引我的活跃用户:

curl -u KEY:SECRET 'https://amplitude.com/api/2/events/segmentation?e=\{"event_type":"_active"\}start=20170301&end=20170321'

系统事件“[Amplitude] 新用户”的 'event_type' 是什么?

我认为 Amplitude 文档不正确,或者充其量是模棱两可的,这导致了混乱。 "event_type":“_active”指的是 "active events" 而不是 "active users"。因此,您的查询将返回在指定日期范围内执行过任何活动事件的用户。这与您实际想要的略有不同——您实际想要的是执行过任何事件的新(或活跃)用户。您对新用户的属性感兴趣。正确的?否则它有点没有意义。用户被定义为新用户是因为他们是第一次记录事件。即没有新用户的历史事件数据。

考虑一下:

Amplitude screenshot

Amplitude 文档(如果我是正确的话)应该说:

对于“[Amplitude] 任何 Active 事件”,使用“_active”。

我怀疑你真正想要的是这个:

curl -u KEY:SECRET 'https://amplitude.com/api/2/users?m=new&start=20170301&end=20170321'

如此处所述...

https://amplitude.zendesk.com/hc/en-us/articles/205469748-Dashboard-Rest-API-Export-Amplitude-Dashboard-Data#active-and-new-user-counts

希望对您有所帮助!