provider vision GET /api/projects/{project_id}/vision/observations/{id}/
@utdk/posthog /api/projects/{project_id}/vision/observations/{id}/
vision_observations_retrieve
Retrieve one observation. Any list filters passed along (status, tags, order_by, …) scope the `previous_observation_id`/`next_observation_id` navigation to the matching, identically-ordered set — so prev/next from a filtered table stays within that filtered list.
id path required
A UUID string identifying this replay observation.
string
labeled query
When true, return only observations that have a shared label (thumbs up or down); when false, only unlabeled observations.
string
order_by query
Sort observations. Plain keys: created_at, started_at, completed_at, status, recording_subject_email. JSONB keys: result_score (scorer), result_verdict (monitor), result_confidence, scanner_version. Prefix with `-` for descending; nullable keys sort nulls last either way.
enum: -completed_at, -created_at, -label, -recording_subject_email…
project_id path required
Project ID of the project you're trying to access. To find the ID of the project, make a call to /api/projects/.
string
recording_subject query
Filter to observations whose recording subject email contains this value (case-insensitive).
string
session_id query
Filter to observations of one or more session recordings. Accepts a comma-separated list.
string
status query
Filter by observation status. Accepts a comma-separated list.
string
tags query
Filter classifier observations whose fixed or freeform tags include any of the given values (comma-separated). Matches if the tag appears in either `tags` or `tags_freeform`.
string
triggered_by query
Filter by trigger source (schedule, on_demand, or retry). Accepts a comma-separated list.
string
verdict query
Filter monitor observations by verdict. Accepts a comma-separated list (e.g. `yes,inconclusive`).
string

Try it

Authentication
Configure credentials for PostHog API
visionObservationsRetrieve
GET/api/projects/{project_id}/vision/observations/{id}/
Retrieve one observation. Any list filters passed along (status, tags, order_by, …) scope the `previous_observation_id`/`next_observation_id` navigation to the matching, identically-ordered set — so prev/next from a filtered table stays within that filtered list.

Parameters

required

A UUID string identifying this replay observation.

required

Project ID of the project you're trying to access. To find the ID of the project, make a call to /api/projects/.

When true, return only observations that have a shared label (thumbs up or down); when false, only unlabeled observations.

Sort observations. Plain keys: created_at, started_at, completed_at, status, recording_subject_email. JSONB keys: result_score (scorer), result_verdict (monitor), result_confidence, scanner_version. Prefix with `-` for descending; nullable keys sort nulls last either way.

Filter to observations whose recording subject email contains this value (case-insensitive).

Filter to observations of one or more session recordings. Accepts a comma-separated list.

Filter by observation status. Accepts a comma-separated list.

Filter classifier observations whose fixed or freeform tags include any of the given values (comma-separated). Matches if the tag appears in either `tags` or `tags_freeform`.

Filter by trigger source (schedule, on_demand, or retry). Accepts a comma-separated list.

Filter monitor observations by verdict. Accepts a comma-separated list (e.g. `yes,inconclusive`).

Configure credentials above to enable sending.

Code snippet
Updates live as you fill in the form above.

TypeScript

import posthog from '@utdk/posthog';

await posthog.visionObservationsRetrieve()