provider vision GET
/api/environments/{environment_id}/vision/scanners/{scanner_id}/observations/ @utdk/posthog
/api/environments/{environment_id}/vision/scanners/{scanner_id}/observations/ environments_vision_scanners_observations_list
Read-only access to observations produced by a scanner.
- environment_id path required
- Deprecated. Use /api/projects/{project_id}/ instead.
- string
- labeled query
- When true, return only observations that have a shared label (thumbs up or down); when false, only unlabeled observations.
- boolean
- limit query
- Number of results to return per page.
- integer
- offset query
- The initial index from which to return the results.
- integer
- 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…
- recording_subject query
- Filter to observations whose recording subject email contains this value (case-insensitive).
- string
- scanner_id path required
- 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
Code snippet
Updates live as you fill in the form above.
TypeScript
import posthog from '@utdk/posthog';
await posthog.environmentsVisionScannersObservationsList()