Session

For instructions on how to authenticate to use this endpoint, see API overview.

List all session recordings

Path Parameters

  • project_id
    string

Query Parameters

  • limit
    integer
  • offset
    integer

Response


Request

GET /api/projects/:project_id/session_recordings
export POSTHOG_PERSONAL_API_KEY=[your personal api key]
curl \
-H "Authorization: Bearer $POSTHOG_PERSONAL_API_KEY" \
https://app.posthog.com/api/projects/:project_id/session_recordings/

Response

RESPONSE
{
"count": 123,
"next": "http://api.example.org/accounts/?offset=400&limit=100",
"previous": "http://api.example.org/accounts/?offset=200&limit=100",
"results": [
{
"id": "string",
"distinct_id": "string",
"viewed": "string",
"recording_duration": 0,
"start_time": "2019-08-24T14:15:22Z",
"end_time": "2019-08-24T14:15:22Z",
"click_count": 0,
"keypress_count": 0,
"start_url": "string",
"matching_events": "string",
"person": {
"id": 0,
"name": "string",
"distinct_ids": [
"string"
],
"properties": {
"property1": null,
"property2": null
},
"created_at": "2019-08-24T14:15:22Z",
"uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f"
},
"storage": "string",
"pinned_count": "string"
}
]
}

Retrieve session recordings

Path Parameters

  • id
    string
  • project_id
    string

Response


Request

GET /api/projects/:project_id/session_recordings/:id
export POSTHOG_PERSONAL_API_KEY=[your personal api key]
curl \
-H "Authorization: Bearer $POSTHOG_PERSONAL_API_KEY" \
https://app.posthog.com/api/projects/:project_id/session_recordings/:id/

Response

RESPONSE
{
"id": "string",
"distinct_id": "string",
"viewed": "string",
"recording_duration": 0,
"start_time": "2019-08-24T14:15:22Z",
"end_time": "2019-08-24T14:15:22Z",
"click_count": 0,
"keypress_count": 0,
"start_url": "string",
"matching_events": "string",
"person": {
"id": 0,
"name": "string",
"distinct_ids": [
"string"
],
"properties": {
"property1": null,
"property2": null
},
"created_at": "2019-08-24T14:15:22Z",
"uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f"
},
"storage": "string",
"pinned_count": "string"
}

Delete session recordings

Path Parameters

  • id
    string
  • project_id
    string

Request

DELETE /api/projects/:project_id/session_recordings/:id
export POSTHOG_PERSONAL_API_KEY=[your personal api key]
curl -X DELETE \
-H "Authorization: Bearer $POSTHOG_PERSONAL_API_KEY" \
https://app.posthog.com/api/projects/:project_id/session_recordings/:id/

Response

No response

Retrieve session recordings snapshot file

Path Parameters

  • id
    string
  • project_id
    string

Response


Request

GET /api/projects/:project_id/session_recordings/:id/snapshot_file
export POSTHOG_PERSONAL_API_KEY=[your personal api key]
curl \
-H "Authorization: Bearer $POSTHOG_PERSONAL_API_KEY" \
https://app.posthog.com/api/projects/:project_id/session_recordings/:id/snapshot_file/

Response

RESPONSE
{
"id": "string",
"distinct_id": "string",
"viewed": "string",
"recording_duration": 0,
"start_time": "2019-08-24T14:15:22Z",
"end_time": "2019-08-24T14:15:22Z",
"click_count": 0,
"keypress_count": 0,
"start_url": "string",
"matching_events": "string",
"person": {
"id": 0,
"name": "string",
"distinct_ids": [
"string"
],
"properties": {
"property1": null,
"property2": null
},
"created_at": "2019-08-24T14:15:22Z",
"uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f"
},
"storage": "string",
"pinned_count": "string"
}

Retrieve session recordings snapshots

Path Parameters

  • id
    string
  • project_id
    string

Response


Request

GET /api/projects/:project_id/session_recordings/:id/snapshots
export POSTHOG_PERSONAL_API_KEY=[your personal api key]
curl \
-H "Authorization: Bearer $POSTHOG_PERSONAL_API_KEY" \
https://app.posthog.com/api/projects/:project_id/session_recordings/:id/snapshots/

Response

RESPONSE
{
"id": "string",
"distinct_id": "string",
"viewed": "string",
"recording_duration": 0,
"start_time": "2019-08-24T14:15:22Z",
"end_time": "2019-08-24T14:15:22Z",
"click_count": 0,
"keypress_count": 0,
"start_url": "string",
"matching_events": "string",
"person": {
"id": 0,
"name": "string",
"distinct_ids": [
"string"
],
"properties": {
"property1": null,
"property2": null
},
"created_at": "2019-08-24T14:15:22Z",
"uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f"
},
"storage": "string",
"pinned_count": "string"
}

Retrieve session recordings properties

Path Parameters

  • project_id
    string

Response


Request

GET /api/projects/:project_id/session_recordings/properties
export POSTHOG_PERSONAL_API_KEY=[your personal api key]
curl \
-H "Authorization: Bearer $POSTHOG_PERSONAL_API_KEY" \
https://app.posthog.com/api/projects/:project_id/session_recordings/properties/

Response

RESPONSE
{
"id": "string",
"distinct_id": "string",
"viewed": "string",
"recording_duration": 0,
"start_time": "2019-08-24T14:15:22Z",
"end_time": "2019-08-24T14:15:22Z",
"click_count": 0,
"keypress_count": 0,
"start_url": "string",
"matching_events": "string",
"person": {
"id": 0,
"name": "string",
"distinct_ids": [
"string"
],
"properties": {
"property1": null,
"property2": null
},
"created_at": "2019-08-24T14:15:22Z",
"uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f"
},
"storage": "string",
"pinned_count": "string"
}

Questions?

Was this page useful?