Skip to content

Latest commit

History

History
39 lines (26 loc) 路 2.75 KB

File metadata and controls

39 lines (26 loc) 路 2.75 KB
title nav
Overview
3.61

Analytics APIs

Analytics APIs can be utilized to retrieve events via an HTTP request. By using these APIs, you can retrieve track events.

Event data can be queried up to last 30 days.

What can I build?

  • You can use track events to get a better understanding of user activity and build tools around it as explained in use cases

Response Object

Attribute Description
limit Number of events in current response
total Total number of events
next Used to fetch next set of results, to be specified in the start query parameter in subsequent request. Next has non empty value only when there are more events to be queried.
events List of events, refer individual event page for details (Eg: Track event object)

Pagination

  • Results are paginated with default events count 10, extendable up to 100 by specifying it in limit query parameter.
  • If there are more events available then next will have a string value. This should be specified in the subsequent call as start query parameter to get further events.
  • Results are snapshot when query is executed for the first time, newer events (after first query) won鈥檛 appear while iterating results
  • Next results will expire after 24 hours from the first query time.

Postman collection

You can use our Postman collection to start exploring 100ms APIs.

Run in Postman

Refer to the Postman guide to get started with 100ms API collection.