我刚开始玩API,我的第一次尝试是使用facebook ads api。我正在查看文档,可以看到如何提取所有每个操作的成本数据。现在,我真的对15分钟间隔内特定广告系列,广告集和广告的CPI(每次安装费用)数据感兴趣。
有没有人知道目前的API是否可以实现这一目标?
答案 0 :(得分:1)
您可以通过Ads Insights Api获取报告统计信息: https://developers.facebook.com/docs/marketing-api/insights/v2.5
正如您所提到的,您可以通过请求请求中的cost_per_action_type
字段来获取每次安装费用数据。
例如,拨打v2.5/<AD_SET_ID>/insights?fields=['cost_per_action_type']
将移动应用的成本安装为响应的一部分
{
"data": [
{
"cost_per_action_type": [
{
"action_type": "mobile_app_install",
"value": ...
}
],
"date_start": ...,
"date_stop": ...
}
}
只要您符合API速率限制,您就可以自行决定拨打电话:https://developers.facebook.com/docs/marketing-api/api-rate-limiting