Returns a paginated list of events for the caller’s tenant with optional filters by session, category, type, and source. Requires read scope.
curl --request POST \
--url https://api.svantic.com/telemetry/get_events \
--header 'Content-Type: application/json' \
--data '
{
"page": 1,
"page_size": 25,
"session_id": "string",
"category": "string",
"type": "string",
"source": "string"
}
'{
"ok": true,
"count": 0,
"page": 0,
"page_size": 0,
"events": [
{
"example_key": "example_value"
}
]
}Documentation Index
Fetch the complete documentation index at: https://docs.svantic.com/llms.txt
Use this file to discover all available pages before exploring further.
curl --request POST \
--url https://api.svantic.com/telemetry/get_events \
--header 'Content-Type: application/json' \
--data '
{
"page": 1,
"page_size": 25,
"session_id": "string",
"category": "string",
"type": "string",
"source": "string"
}
'{
"ok": true,
"count": 0,
"page": 0,
"page_size": 0,
"events": [
{
"example_key": "example_value"
}
]
}