Skip to main content
GET
/
events
Python (SDK)
from latitudesh_python_sdk import Latitudesh
import os


with Latitudesh(
    bearer=os.getenv("LATITUDESH_BEARER", ""),
) as latitudesh:

    res = latitudesh.events.list(page_size=20, page_number=1)

    while res is not None:
        # Handle items

        res = res.next()
{ "data": [ { "id": "evt_r0MK4O4kDa95w", "type": "events", "attributes": { "created_at": "2026-01-14T15:56:32+00:00", "action": "user_data.create", "target": { "id": "ud_QraYDPm5OpjwW", "name": "user_data" }, "project": { "id": "proj_Av9BVDavORm1W", "name": "Enormous Rubber Car", "slug": "enormous-rubber-car" }, "team": { "id": "team_5EkwwB3BV5Uzo9EpPom8T6Zk6MjG", "name": "55 Team" }, "author": { "id": "user_1P7kNv94QNtKXLZWMe42hNJ5x6V", "name": "Julian Kuvalis", "email": "aleshia@stiedemann.test" } } } ], "meta": {} }

Documentation Index

Fetch the complete documentation index at: https://www.latitude.sh/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Query Parameters

filter[author]
string

The author ID or email to filter by

filter[project]
string

The project ID to filter by

filter[target_name]
string[]

The target type(s) of the event to filter by

filter[target_id]
string

The target id of the event to filter by

filter[action]
string

The action performed in event to filter by

filter[created_at][gte]
string

The created at greater than equal date to filter by, in ISO formatting (yyyy-MM-dd'T'HH:mm:ss)

filter[created_at][lte]
string

The created at less than equal date to filter by, in ISO formatting (yyyy-MM-dd'T'HH:mm:ss)

filter[created_at]
string[]

The created at between date range date1, date2 (inclusive) to filter by, in ISO formatting (yyyy-MM-dd'T'HH:mm:ss)

page[size]
integer
default:20

Number of items to return per page

Required range: x >= 1
page[number]
integer
default:1

Page number to return (starts at 1)

Required range: x >= 1

Response

200 - application/vnd.api+json

Success

data
object[]