Skip to main content
GET
/
history
/
sessions
Retrieve session history
curl --request GET \
  --url https://api.simli.ai/history/sessions \
  --header 'x-simli-api-key: <api-key>'
{
  "sessions": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "sessionTotalTime": 123,
      "startTime": 123,
      "endTime": 123,
      "userId": "<string>",
      "endUserAggregator": "<string>",
      "apiKeyName": "<string>"
    }
  ]
}

Authorizations

x-simli-api-key
string
header
required

Query Parameters

start
integer

Filter records from this Unix timestamp

Example:

1745750387

end
integer

Filter records until this Unix timestamp

Example:

1745750408

Response

A list of session history records

sessions
object[]