Skip to main content
cURL
curl --request POST \
  --url https://api.litlyx.com/api/v1/events \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "rows": [
    "<string>"
  ],
  "limit": 100,
  "from": "`2024-01-01T00:00:00+0000`",
  "to": "`current date as ISO`"
}
'
[
  {}
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
rows
string[]
required

Array of strings selecting the rows you want the API to return. Possible values: name,metadata,created_at,session.

limit
number
default:100

How many element the API should return.

from
string
default:`2024-01-01T00:00:00+0000`

From what day the API will return the data. Format: ISO.

to
string
default:`current date as ISO`

To what day the API will return the data. Format: ISO.

Response

API response