Data Export API
You can use Browsee's data export API to get and store data collected by Browsee.
Browsee automatically collects data about all the sessions that happen on your site. In case you have any of the following requirements, you can utilize our data export API
Saving data beyond Browsee's data retention limit
Creating or generating reports beyond the scope of Browsee's analytics.
Augment your own data with data collected from Browsee.
In order to get started, please generate a secret key and read about the data export APIs below.
Generate Your Secret API Key
Go to Your Accounts or Settings Page in Browsee and generate a secret key.
Exporting Data
Session Export API
export/sessions
POST
https://api.browsee.io/api/v1/export/sessions
An API to export a list of sessions
Request Body
Using the session export API
Session export API gives you all the details related to users and sessions either without any constraint or based on an existing circle in your account. Please note the following points.
It only supports
POST
methodThis is a pagination based API. The page size by default is 100 sessions.
In your first request, you will get the total number of results and the offset index up to which sessions have been exported. You can send more requests with changing the offset parameter (
from
) to get subsequent sessions.As an example, the first request will return documents starting from 0 upto 100. In the next request you can send
from
to be 100 and this time you will get documents from 100 to 200 and so on.Its rate limited to one open request. You must wait for the response from one request before initiating another request.
Getting the sessions for a Segment
You can send an optional parameter: segmentId
to get the sessions for that segment. To get the segment Id, you can go to the list of Segments and click on View Analytics for the desired segment.
This segment's ID is the ID in the URL of the analytics page as shown
Getting only a subset of fields
To limit the number of fields and data provided, you can provide additional parameters like below to give the list of fields that you need.
Here is a list of fields that you can provide in select:
userId
: User ID, as provided byidentify
callduration
: Duration in milliseconds of the session.inactiveTime
: Duration during which user was inactive during the session (milliseconds).activeTime
: Difference between duration and inactiveTime (milliseconds).urls
: URL's visited in the sessiontimestamp
: Unix timestamp in milliseconds since the epoch of the start of the sessionpageCount
: Number of pages visitedeventCount
: Number of events foundname
: Name if provided inidentify
callemail
: Email if provided inidentify
calltags
: Tags if provided inidentify
calllandingPage
: Landing Page of sessionutm_source/utm_medium/utm_campaign/utm_term/utm_content
: UTM Parametersbrowser
: User's Browseros
: Operating Systemdevice
: User's deviceisMobile
: If the device is considered to be Mobileip
: IP from which session originatedcity
: City detected (based on IP)country
: Country detected (based on IP)domain
: Domain from which session was recordedreferrer
: Referrer of the session (only the domain)
Examples
Please write to us at contact@heroteck.com in case you need more examples.
Last updated