Supported products
Supported products
Requires one of the following products or higher.
Scope requirements
Scope requirements
Retrieve event types
To request all types of events, make aGET request to /events/v3/events/event-types. The response will include all event types, including custom events and app events.
The returned list is exhaustive and includes event types regardless of whether an account uses the associated features. This means an event type will be returned even if the account doesn’t or can’t receive occurrences for it. For example, an event type only available to Enterprise subscriptions is returned for an account with a Professional subscription.
Retrieve event occurrences
To retrieve event occurrences, make aGET request to /events/v3/events. Use the following query parameters to retrieve specific occurrences. You can use multiple query parameters to retrieve occurrences that meet specific criteria.
| Parameter | Description |
|---|---|
eventType | Retrieve occurrences for a specific type of event, using the event type’s fully qualified name. The fully qualified name is returned when retrieving event types. |
objectType | Retrieve occurrences linked to records of a specific object, using the objectTypeId. |
objectId | Retrieve occurrences linked to a specific object record. Specify the type of object with the objectType parameter and use the record ID as the objectId (e.g., 0-1 for events linked to contact records). Refer to this list of objectTypeId values. |
{eventProperty} | Retrieve occurrences filtered by event occurrence property values. Include the internal name of the property and the value by which to filter. |
occurredAfter or occurredBefore | Retrieve occurrences filtered by when they occurred, after or before a given date and time, inputted as an ISO 8601 string or UNIX-formatted timestamp. |
id | Retrieve an individual occurrence by its unique ID. Each event occurrence’s id value is returned when retrieving events. |
| Goal | GET Request URL |
|---|---|
Retrieve all event occurrences of the event type e_visited_page | /events/v3/events/?eventType=e_visited_page |
| Retrieve all event occurrences linked to contacts | /events/v3/events/?objectType=contact |
| Retrieve event occurrences linked to a specific contact record | /events/v3/events/?objectType=contact&objectId=224834 |
Retrieve event occurrences of e_visited_page linked to a specific contact record | /events/v3/events/?objectType=contact&objectId=224834 |
Retrieve occurrences of e_visited_page from Chrome linked to a specific contact | /events/v3/events/?eventType=e_visited_page&objectType=contact&objectId=224834 |
Retrieve occurrences of e_visited_page after January 5, 2026 at 11:00 am EST | /events/v3/events/?eventType=e_visited_page&occurredAfter=2026-01-05T11:00:00-05:00 |
| Retrieve an individual event occurrence | /events/v3/events/?id=1234 |
GET /events/v3/events/?eventType=e_visited_page&occurredAfter=2026-01-05T11:00:00-05:00 would look similar to: