Get session timeline
curl --request GET \
--url https://api.getdecipher.com/api/v1/sessions/{sessionId}/timeline \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.getdecipher.com/api/v1/sessions/{sessionId}/timeline"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.getdecipher.com/api/v1/sessions/{sessionId}/timeline', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.getdecipher.com/api/v1/sessions/{sessionId}/timeline",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.getdecipher.com/api/v1/sessions/{sessionId}/timeline"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.getdecipher.com/api/v1/sessions/{sessionId}/timeline")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.getdecipher.com/api/v1/sessions/{sessionId}/timeline")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"object": "sessionTimeline",
"sessionId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"overview": "<string>",
"tags": [
{
"tag": "<string>",
"reasoning": "<string>"
}
],
"pages": [
{
"page": "<string>",
"startTime": 123,
"endTime": 123,
"clickCount": 123,
"featuresUsed": [
"<string>"
],
"activities": [
{
"startTime": "<string>",
"endTime": "<string>",
"summary": "<string>",
"userAction": "<string>",
"userBehavior": "<string>"
}
]
}
],
"loadingIssues": [
{
"description": "<string>",
"longDescription": "<string>",
"durationInSeconds": 123,
"timestamp": 123
}
]
}{
"error": {
"code": "<string>",
"message": "<string>",
"field": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"field": "<string>"
}
}Monitoring
Get session timeline
Retrieve the full AI-generated timeline of what happened in a session, broken down by page with detailed activity summaries, behavior tags, and loading issue analysis.
GET
/
api
/
v1
/
sessions
/
{sessionId}
/
timeline
Get session timeline
curl --request GET \
--url https://api.getdecipher.com/api/v1/sessions/{sessionId}/timeline \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.getdecipher.com/api/v1/sessions/{sessionId}/timeline"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.getdecipher.com/api/v1/sessions/{sessionId}/timeline', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.getdecipher.com/api/v1/sessions/{sessionId}/timeline",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.getdecipher.com/api/v1/sessions/{sessionId}/timeline"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.getdecipher.com/api/v1/sessions/{sessionId}/timeline")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.getdecipher.com/api/v1/sessions/{sessionId}/timeline")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"object": "sessionTimeline",
"sessionId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"overview": "<string>",
"tags": [
{
"tag": "<string>",
"reasoning": "<string>"
}
],
"pages": [
{
"page": "<string>",
"startTime": 123,
"endTime": 123,
"clickCount": 123,
"featuresUsed": [
"<string>"
],
"activities": [
{
"startTime": "<string>",
"endTime": "<string>",
"summary": "<string>",
"userAction": "<string>",
"userBehavior": "<string>"
}
]
}
],
"loadingIssues": [
{
"description": "<string>",
"longDescription": "<string>",
"durationInSeconds": 123,
"timestamp": 123
}
]
}{
"error": {
"code": "<string>",
"message": "<string>",
"field": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"field": "<string>"
}
}Authorizations
API key authentication. Use your Decipher API key as the bearer token.
Path Parameters
The UUID of the session
Example:
"a1b2c3d4-e5f6-7890-abcd-ef1234567890"
⌘I