为了更好的跟企业数据产品打通,更好的发挥数据价值,DataFinder通过开放openapi的方式,提供基于本产品进行二次开发的能力,您可以通过调用openapi获取指标数据,以便集成在其他数据产品中。
API | 说明 |
---|---|
查询分析(SaaS) | |
查询分析(私有化) | |
查询分析-获取result查询结果(私有化) | |
批量查询分析 |
先打开浏览器的开发者工具(快捷键F12),然后配置好查询条件,查看页面的 datafinder/api/v1/analysis
请求,该请求的body即为该查询的DSL,可以直接拷贝使用。
具体参考各语言版本的 OpenAPI SDK。
{ "version": 3, # 版本号 "app_ids": [164***], # 查询应用唯一标识 "use_app_cloud_id": True, # 使用应用云唯一标识 "resources": [ # 项目信息,在项目以及多应用下使用该字段,该字段优先级高于app_ids { "project_ids": [2xxxx], # 项目id "subject_ids": [1], # 主体id,默认是1,需要分析的主体id "app_ids": [], # 项目下具体应用,为空表示分析项目下所有应用 } ], "periods": [ # 查询时间范围定义 { "granularity": "day", # 时间粒度,分钟/小时/天/周/月 "type": "last", # 时间规则 最近x天或者范围 "last": { # 最近x天定义 "amount": 5, # 查询数量 "unit": "day" # 查询单位 }, "timezone": "Asia/Shanghai" # 时区 } ], "content": { "query_type": "event", # 查询类型 "profile_groups_v2": [], # 公共属性分组 "profile_filters": [], # 公共属性过滤 "queries": [ # 查询定义 [ { "event_type": "origin", # 事件类型,原始事件,虚拟事件,圈选事件 "show_name": "活跃用户数", # 查询名称 "event_name": "app_launch", # 事件名称 "groups_v2": [], # 事件分组 "filters": [], # 事件过滤 "show_label": "active_user", # 结果标识 "event_indicator": "event_users" # 指标名称 } ] ], "option": { # 查询可选参数 "skip_cache": False # 不跳过缓存 } } }
DSL(Domain Specific Language) 简单来讲就是一个json格式的文本,来灵活的定义复杂的查询需求。
{ "version": 3, # DSL的版本,本文档中全部为3 "app_ids": [], # 目标app,支持多个 "use_app_cloud_id": true, # app_ids参数中是否为app_cloud_id。请设置为true,false仅供内部使用 "resources": [{}], # 项目信息,在项目以及多应用下使用该字段,该字段优先级高于app_ids "periods": [{}], # 查询时间段,支持多个 "content": {}, # 具体的查询内容字段,与contents传一个,结构相同 "contents": [{},{}], "option": {}, # json格式数据,请求相关的选项参数,不同的查询各不相同 "show_option": {} # json格式数据,在结果中原样返回 }
字段 | 类型 | 取值与含义 | 是否必须 |
---|---|---|---|
version | int | DSL的版本,本文档中全部为3。 | 是 |
app_ids | int数组 | 目标app,支持多个。 | app_ids和resources二选1 |
use_app_cloud_id | boolean | 指定app_ids参数中是否为app_cloud_id。请设置为true,false仅供内部使用。 | 否 |
resources | json的数组 | 指定需要分析的项目信息,在项目以及多应用下使用该字段,该字段优先级高于app_ids | app_ids和resources二选1 |
periods | json的数组 | 表示查询的时间区间,是一个数组,支持多个时间区间查询。periods的取值字段及格式要求请参见下文的4.2.2 periods字段部分内容。 | 是 |
content | json | 具体的查询内容字段,仅一个查询内容json时,使用content;有多个查询内容json时,使用contents。格式要求及字段说明详情请参见下文的4.2.3 contene字段部分内容。 | 是 |
contents | json数组 | 是 | |
option | json | 请求相关的选项参数,不同的查询各不相同。 | 否 |
show_option | json | 在结果中原样返回,前端展示使用,不影响查询结果。 | 是 |
resources 表示查询项目信息,在项目以及多应用下需要:
[ { "project_ids": [2xxxx], "subject_ids": [1], "app_ids": [], } ]
字段说明:
字段 | 类型 | 取值与含义 | 是否必须 |
---|---|---|---|
project_ids | int数组 | 项目id,当前只支持一个 | 是 |
subject_ids | int数组 | 分析的主体id,支持多个,一般项目的主体id默认是1 | 是 |
app_ids | int数组 | 需要分析的项目下的具体应用,为空时,表示分析项目下所有应用 | 否 |
period是字段表示查询的时间区间,是一个数组,并支持多个时间区间查询,以事件分析查询为例,periods字段对应在产品控制台的操作界面如下。
periods字段格式和字段说明、取值示例如下。
字段格式
[{ "type": "", "last": { "unit":"", "amount":int }, "range": [int,int] "granularity": "", "timezone": "Asia/Shanghai", "interval": int, "real_time": boolean, "week_start": int }]
字段说明
时间范围相关参数
字段 | 取值与含义 | 是否必须 | 例子 |
---|---|---|---|
type | 时间范围类型。枚举值为:
| 否 | 默认range |
range | type为range时有效。表示时间范围为具体的某一段时间,是一个绝对时间范围。长度为2的整形数组,数组取值分别表示开始与截止时间,取值为距离1970年1月1日0点0分的时间差值,单位为秒。 注意 "granularity": “month” 时,会自动补齐当月的数据,此时设置的range会失效,例如,时间范围设置为2024-01-01到2024-03-05,"granularity": “month” 时的返回结果为2024-01-01到2024-03-31的数据。 | type为range时为必填参数 |
|
last | type为last时有效。表示时间范围为最近几天,是一个相对时间的时间范围。取值为json格式,包含以下字段:
| type为last时为必填参数 |
|
spans | type为past_range时有效,表示时间范围为过去的几天。取值是一个list类型数值,list中包含2个list值,第一个代表开始时间,第二个代表结束时间。每一个list的结构为:
取值说明如下:
| type为past_range时为必填参数 |
|
时间切分粒度相关参数,表示以什么时间粒度汇总展示查询结果,与产品控制台界面分析图表的X轴效果类似。
字段 | 取值与含义 | 是否必须 | 例子 |
---|---|---|---|
granularity | 时间粒度。对指定的时间范围按照时间粒度进行拆分。枚举值:
注意 "granularity": “month” 时,会自动补齐当月的数据,此时设置的range会失效,例如,时间范围设置为2024-01-01到2024-03-05,"granularity": “month” 时的返回结果为2024-01-01到2024-03-31的数据。 | 否 | 默认all |
week_start | granularity为周时,可以指定周的起始日期,比如5表示周五~周四。 | 否 | 默认1,周一到周日。 |
interval | 时间粒度。以自定义的时间粒度进行拆分,时间单位秒,比如130秒。 | 否 | |
align_unit | 对齐单元(时间范围校准单元),缺省时与granularity的取值一致,枚举值:
| 否 |
其他参数
字段 | 取值与含义 | 是否必须 | 例子 |
---|---|---|---|
timezone | 时间范围的时区 | 否 | 默认Asia/Shanghai |
real_time | 是否是实时查询,如果为true,只会查询实时的库。此参数已废弃使用无需关注。 | 否 |
取值示例
示例1
{ "granularity":"day", "type":"range", "range":[1586102400, 1588780799], "timezone": "Asia/Shanghai" }
示例2
{ "granularity":"day", "type":"last", "last":{"amount":7,"unit":'day'}, "timezone": "Asia/Shanghai" }
示例3
{ "granularity":"day", "type":"today", "timezone": "Asia/Shanghai" }
示例4
{ "granularity": "all", "align_unit":"day", "type": "past_range", "spans":[ { "type": "timestamp", "timestamp": "1619798400", "offset":3600 }, { "type": "past", "past": { "amount": 1, "unit": "day" }, "offset":7199 } ] "timezone": "Asia/Shanghai" }
具体的查询内容字段,以事件分析查询为例与产品控制台界面的以下配置功能类似。
content字段的各参数及说明如下。
{ "profile_filters": [{}], #过滤条件,详情见下文的profile_filters "profile_groups_v2": [], #分组条件,只支持公共属性,详情见下文的profile_groups_v2。 "orders": [], #排序规则,此参数暂时无用,无需关注 "query_type": "", #查询类型,详情见下文的query_type "queries": [[],[]], #查询,二维数组。不同的查询类型需要设置不同的queries数组,详情见下文的queries "option": {}, #查询选项 "page": {}, #查询分页,limit相关配置 }
表示查询时的过滤条件,与以下界面配置功能效果类似。
[{ "show_name": "1", "show_label": 1, "expression": { "logic": "and", "conditions": [{ "property_name": "custom_server_gender", "property_type": "profile", "property_operation": "=", "property_values": ["1"] }] } }]
说明
私有化里面 "property_type" : "profile" 需要修改为 "property_type": "user_profile"
字段 | 类型 | 取值与含义 | 是否必须 |
---|---|---|---|
show_name | string | 前端参数,不影响查询结果,无需关注 | 否 |
show_label | string | 前端参数,不影响查询结果,无需关注 | 否 |
expression | json | 查询过滤条件的过滤表达式,包含过滤条件(conditions)和多个过滤条件间的逻辑关系(logic)。 | 是 |
logic | string | 多个过滤条件conditions间的逻辑关系,支持:and/or。 | 是 |
conditions | json数组 | 具体的查询过滤条件,支持多个过滤条件,每个查询过滤条件的格式和字段要求如下文的condition所示。 | 是 |
查询过滤条件中,单个过滤条件的格式要求与字段说明。
{ "property_name": "custom_server_gender", "property_type": "profile/user_profile", "property_operation": "=", "property_values": ["1"] }
字段 | 类型 | 取值与含义 | 是否必须 |
---|---|---|---|
property_name | string | 属性名称 | 否 |
property_type | string | 属性类型,枚举值:
| 否 |
property_operation | string | 计算表达式,不同的property_type支持的property_operation不一样,所有枚举值如下:
| 使用了过滤属性时必填 |
property_values | string/int/float数组 | 属性的表达式的值 | 使用了过滤属性时必填 |
表示查询时的分组条件,只支持公共属性。
"profile_groups_v2": [ { "property_type":"profile", "property_name":"user_is_new" }, { "property_type":"profile", "property_name":"os_name" } ]
字段 | 类型 | 取值与含义 | 是否必须 |
---|---|---|---|
profile_groups_v2 | json数组 | 表示查询时的分组条件,为一个JSON数组,包含以下字段:
| 否 |
字段 | 类型 | 字段描述 | 是否必须 |
---|---|---|---|
query_type | string | 查询的分析数据类型,枚举值:
| 是 |
查询条件,二维数组,不同的查询类型,需要组织对应的query数组。具体参考案例:
{ "event_name": "any_event", "event_id":1, "event_type": "origin", "show_name": "总次数", "groups_v2": [], "filters": [], "show_label": "A", "event_indicator": "events", "measure_info": {} }
字段 | 类型 | 取值与含义 | 是否必须 |
---|---|---|---|
event_name | string | 事件名称 | event_name和event_id必须有一个 |
event_id | int | 事件id | |
event_type | string | 事件类型,目前支持三种类型
| 是 |
groups_v2 | string数组 | 同profile_groups_v2,取事件属性、事件公共属性、用户属性 | 否 |
filter | 数组 | 同profile_filters。 | 否 |
event_indicator | string | 计算指标:
| 是 |
measure_info | json | 计算指标补充,在 event_indicator 为 measure 时使用,格式和详情如下。
| event_indicator 为 measure 时必填。 |
show_label | string | 前端参数,不影响查询结果,无需关注 | 否 |
存放跟查询相关的特定的配置,用来设置是否使用缓存,以及其他参数。
{ "refresh_cache": false, "fusion": false }
字段 | 取值与含义 |
---|---|
所有查询通用字段 | |
skip_cache | 是否跳过缓存。true表示不走缓存,默认是false |
refresh_cache | 是否刷新缓存。查询默认会走缓存,当希望跳过缓存并且更新缓存数据的时候,可以设置refresh_cache为true |
product | 产品名称,默认是bytefinder。如果您使用的是tracer,则设置为bytetracer |
转换查询/用户路径查询 | |
window_period_type | 窗口时间单位,取值同granularity |
window_period | 窗口时间 |
生命周期查询 | |
lifecycle_query_type | 取值枚举值:
|
lifecycle_period | 取值为一个json对象,属性固定为granularity、period:
|
留存分析 | |
retention_type | 窗口时间单位,取值同granularity |
retention_n_days | 时间窗口大小 |
web分析 | |
web_session_params | web查询设置的参数。
|
option | 是否同时融合查询实时数据和离线数据,true表示融合,默认是false。 |
存放跟查询分页相关的信息。
"page": { "limit": 50, # 指定最大返回维度的条数 "offset": 0 }
字段 | 类型 | 取值与含义 | 是否必须 |
---|---|---|---|
limit | int | 指定要返回的最大维度数据条数。默认为 1000,最大支持50000。 | 否 |
offset | int |
| 否 |
{ "use_app_cloud_id": true, "app_ids": [ 164*** ], "periods": [ { "granularity": "day", "type": "last", "last": { "amount": 7, "unit": "day" }, "timezone": "Asia/Shanghai" } ], "version": 3, "content": { "profile_groups_v2": [], "profile_filters": [], "orders": [], "query_type": "event", "queries": [ [ { "event_name": "app_launch", "event_type": "origin", "show_name": "应用启动", "groups_v2": [], "filters": [], "show_label": "A", "event_indicator": "events", "measure_info": {}, "indicator_show_name": "总次数" } ] ], "option": { "refresh_cache": false, "fusion": false } } }
{ "app_ids": [ 164*** ], "periods": [ { "granularity": "day", "type": "last", "last": { "amount": 7, "unit": "day" }, "timezone": "Asia/Shanghai" } ], "version": 3, "content": { "query_type": "retention", "profile_groups_v2": [], "profile_filters": [], "orders": [], "queries": [ [ { "show_label": "A", "event_name": "app_launch", "event_type": "origin", "groups_v2": [], "filters": [] }, { "show_label": "", "event_name": "any_active_event", "event_type": "origin", "groups_v2": [], "filters": [] } ] ], "page": { "limit": 50, "offset": 0 }, "option": { "refresh_cache": false, "fusion": false } }, "use_app_cloud_id": true }
{ "app_ids": [ 164*** ], "periods": [ { "granularity": "day", "type": "last", "last": { "amount": 7, "unit": "day" }, "timezone": "Asia/Shanghai" } ], "version": 3, "content": { "query_type": "funnel", "profile_groups_v2": [], "profile_filters": [], "orders": [], "page": { "limit": 50, "offset": 0 }, "queries": [ [ { "show_label": "1", "event_id": 234***, "event_name": "app_launch", "event_type": "origin", "show_name": "", "groups_v2": [], "filters": [] }, { "show_label": "2", "event_id": 234***, "event_name": "app_launch", "event_type": "origin", "show_name": "", "groups_v2": [], "filters": [] } ] ], "option": { "window_period": 10, "window_period_type": "minute", "fusion": false, "refresh_cache": false } }, "use_app_cloud_id": true }
{ "app_ids": [ 164*** ], "periods": [ { "type": "last", "last": { "amount": 7, "unit": "day" }, "timezone": "Asia/Shanghai", "interval": "604800" } ], "version": 3, "content": { "profile_groups_v2": [], "profile_filters": [], "orders": [], "query_type": "path_find", "queries": [ [ { "event_type": "origin", "show_label": "A", "groups_v2": [], "filters": [] }, { "event_type": "origin", "show_label": "B", "groups_v2": [], "filters": [] } ] ], "option": { "refresh_cache": false, "hide_unselected": true, "window_period_type": "minute", "window_period": 10 } }, "use_app_cloud_id": true }
{ "app_ids": [ 164*** ], "periods": [ { "granularity": "day", "type": "last", "last": { "amount": 7, "unit": "day" }, "timezone": "Asia/Shanghai" } ], "version": 3, "content": { "query_type": "life_cycle", "queries": [ [ { "event_id": 516***, "event_name": "any_active_event", "event_type": "origin", "groups_v2": [], "filters": [] } ] ], "profile_filters": [ ], "profile_groups_v2": [], "option": { "lifecycle_period": { "granularity": "day", "period": 1 }, "lifecycle_query_type": "active" } }, "use_app_cloud_id": true }
{ "app_ids": [ 164*** ], "periods": [ { "granularity": "day", "type": "last", "last": { "amount": 7, "unit": "day" }, "timezone": "Asia/Shanghai" } ], "version": 3, "contents": [ { "profile_groups_v2": [], "profile_filters": [], "orders": [], "query_type": "web_session", "queries": [ [ { "event_type": "none", "show_name": "访客数", "groups_v2": [], "filters": [ { "expression": { "logic": "and", "conditions": [ { "property_values": [ null ], "property_type": "event_param", "property_name": "referer_type", "property_operation": "is not null" } ] } } ], "show_label": "uv", "event_indicator": "uv" } ] ], "option": { "refresh_cache": false, "fusion": true } } ], "use_app_cloud_id": true }
{ "app_ids": [ "164***" ], "use_app_cloud_id": true, "version": "3.0", "periods": [ { "granularity": "day", "align_unit": "day", "timezone": "Asia/Shanghai", "type": "last", "last": { "amount": 7, "unit": "day" } } ], "content": { "show_option": {}, "profile_groups_v2": [], "profile_filters": [], "orders": [], "query_type": "event_topk", "queries": [ [ { "event_type": "none", "event_indicator": "pv", "show_name": "", "show_label": "", "event_name": null, "groups_v2": [], "filters": [] } ] ], "option": { } } }
{ "app_ids": [ 164*** ], "periods": [ { "granularity": "day", "type": "last", "last": { "amount": 60, "unit": "day" }, "timezone": "Asia/Shanghai" } ], "version": 3, "content": { "query_type": "ltv", "profile_groups_v2": [], "profile_filters": [], "orders": [], "queries": [ [ { "show_label": "", "event_name": "purchase", "event_type": "origin", "groups_v2": [], "filters": [], "event_indicator": "measure", "measure_info": { "measure_type": "plain", "property_name": "currency_amount" } }, { "show_label": "", "event_name": "any_event", "event_type": "origin", "groups_v2": [], "filters": [] } ] ], "page": { "limit": 10, "offset": 2 }, "option": {} }, "use_app_cloud_id": true }
{ "use_app_cloud_id": true, "app_ids": [ 164*** ], "periods": [ { "granularity": "all", "type": "last", "last": { "amount": 7, "unit": "day" }, "timezone": "Asia/Shanghai", "interval": "604800" } ], "version": 3, "content": { "profile_groups_v2": [], "profile_filters": [], "orders": [], "query_type": "behavior_attribution", "queries": [ [ { "event_name": "purchase", "event_type": "origin", "show_name": "支付", "groups_v2": [], "event_indicator": "events", "show_label": "A", "measure_info": {}, "filters": [] } ], [], [ { "event_name": "app_launch", "event_type": "origin", "show_name": "应用启动", "groups_v2": [], "event_indicator": "events", "show_label": "A", "measure_info": {}, "filters": [] } ] ], "option": { "refresh_cache": false, "attribution_type": "last", "window_period": 0, "window_period_type": "day", "is_other_contact": false }, "page": { "limit": 50, "offset": 0 } } }
{ "app_ids": [ 164*** ], "periods": [ { "type": "last", "last": { "amount": 30, "unit": "day" }, "timezone": "Asia/Shanghai", "align_unit": "day", "granularity": "all" } ], "version": 3, "content": { "query_type": "composition", "profile_groups_v2": [ { "property_type" : "profile", "property_name": "age" } ], "profile_filters": [], "orders": [], "queries": [ [ { "event_type": "none" } ] ], "option": { "refresh_cache": false } }, "use_app_cloud_id": true }
说明
私有化里面 "property_type" : "profile" 需要修改为 "property_type": "user_profile"
{ "use_app_cloud_id": true, "app_ids": [ 164*** ], "periods": [ { //只支持all粒度,不支持按时间粒度分组 "granularity": "all", "type": "past_range", "spans": [ { "type": "past", "past": { "amount": 7, "unit": "day" } }, { "type": "past", "past": { "amount": 1, "unit": "day" } } ], "timezone": "Asia/Shanghai", "week_start": 1, "align_unit": "day" } ], "version": 3, "content": { "profile_groups_v2": [], "profile_filters": [], //自定义排序字段 "orders": [ { //field形式为{property_type}#{property_name}的形式,direction为desc(降序)或者asc(升序) "field": "profile#loc_city_id", "direction": "desc" } ], //自定义分页字段,limit最大为10000,超过10000按10000处理 "page": { "limit": 50, "offset": 0 }, //查询类型,仅支持openApi "query_type": "attribute", "queries": [ [ { "indicator_show_name": "", "measure_info": {}, "show_name": "", "show_label": "A", "event_name": "any_event", "event_type": "origin", "event_indicator": "None", "filters": [], //需要查询的属性 "groups_v2": [ { "property_compose_type": "origin", "property_name": "$event_name", "property_type": "common_param" }, { "property_compose_type": "origin", "property_name": "loc_city_id", "property_type": "profile" }, { "property_compose_type": "virtual", "property_name": "$_vp_zylvirtual", "property_type": "common_param" } ], "extra": {} } ] ], "option": { //是否分页(必传true) "is_paginate": true } }, "option": {} }
该DSL特用于多个属性分组,且分组值数量较大的查询场景,在此特定场景下支持分页。
查询限制:
说明