Skip to main content
GET
/
api
/
v1
/
sessions
List sessions
curl --request GET \
  --url https://api.getdecipher.com/api/v1/sessions \
  --header 'Authorization: Bearer <token>'
{
  "object": "list",
  "data": [
    {
      "object": "session",
      "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
      "url": "https://app.getdecipher.com/sessions/a1b2c3d4-e5f6-7890-abcd-ef1234567890",
      "createdAt": "<string>",
      "duration": 123,
      "userEmail": "<string>",
      "userId": "<string>",
      "userAccount": "<string>",
      "browser": "<string>",
      "device": "<string>",
      "countryCode": "<string>",
      "hasTimeline": true
    }
  ],
  "hasMore": true,
  "nextCursor": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.getdecipher.com/llms.txt

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

Authorizations

Authorization
string
header
required

API key authentication. Use your Decipher API key as the bearer token.

Query Parameters

limit
integer
default:20
Required range: 1 <= x <= 100
cursor
string
since
string
until
string
userEmail
string
userId
string
url
string

Response

Paginated list of sessions

object
enum<string>
required
Available options:
list
data
object[]
required
hasMore
boolean
required
nextCursor
string | null
required