Send your Branch data to the system of your choice with Data Feeds, Branch’s powerful suite of exporting tools.
Data Integrations
Easily send data to your partners with pre-built integrations
Webhooks
Send Branch events to the endpoint of your choice with fully customizable webhooks
Export API
Access all of your most recent Branch data with various export APIs
Query API
Programmatically query pre-aggregated analytics
curl -X POST -H "Content-Type: application/json" -d '{
"branch_key": "<YOUR_BRANCH_KEY>",
"branch_secret": "<YOUR_BRANCH_SECRET>",
"start_date": "2017-11-29",
"end_date": "2017-12-05",
"data_source": "eo_install",
"granularity": "day",
"dimensions": [
"timestamp"
],
"filters": {
"!user_data_platform": [
"ROBOT"
],
"!days_from_last_attributed_touch_to_event": [
"null"
]
},
"aggregation": "total_count"
}' "http://api2.branch.io/v1/query/analytics?limit=100"
{
"results" : [ {
"timestamp" : "2017-12-05T08:00:00.000Z",
"result" : {
"total_count" : 248.0
}
}, {
"timestamp" : "2017-12-04T08:00:00.000Z",
"result" : {
"total_count" : 296.0
}
}, {
"timestamp" : "2017-12-03T08:00:00.000Z",
"result" : {
"total_count" : 284.0
}
}, {
"timestamp" : "2017-12-02T08:00:00.000Z",
"result" : {
"total_count" : 291.0
}
}, {
"timestamp" : "2017-12-01T08:00:00.000Z",
"result" : {
"total_count" : 263.0
}
}, {
"timestamp" : "2017-11-30T08:00:00.000Z",
"result" : {
"total_count" : 214.0
}
}, {
"timestamp" : "2017-11-29T08:00:00.000Z",
"result" : {
"total_count" : 227.0
}
} ],
"paging" : {
"total_count" : 7
}
}
See our Query Recipe Book for more sample queries.