provider dashboards GET /api/environments/{environment_id}/dashboards/
@utdk/posthog /api/environments/{environment_id}/dashboards/
environments_dashboards_list
environment_id path required
Deprecated. Use /api/projects/{project_id}/ instead.
string
folder query
Optional. Return only dashboards filed directly in this project-tree folder, e.g. 'Unfiled/Dashboards'. An empty string matches dashboards at the project root. Nested sub-folders are not included.
string
format query
enum: json, txt
limit query
Number of results to return per page.
integer
offset query
The initial index from which to return the results.
integer
search query
Optional. Match against dashboard `name`, `description`, and tag names. Returns exact (case-insensitive substring) matches only; if no exact match exists, returns similar (fuzzy trigram — typos, transpositions, prefix-as-you-type) matches instead. Results are then ordered by relevance, then pinned status, then name; each result's `search_match_type` is `exact` or `similar`. When omitted, dashboards are ordered by pinned status then alphabetical name. Capped at 200 characters; longer queries return a 400 error.
string

Try it

Authentication
Configure credentials for PostHog API
environmentsDashboardsList
GET/api/environments/{environment_id}/dashboards/

Parameters

required

Deprecated. Use /api/projects/{project_id}/ instead.

Optional. Return only dashboards filed directly in this project-tree folder, e.g. 'Unfiled/Dashboards'. An empty string matches dashboards at the project root. Nested sub-folders are not included.

Number of results to return per page.

The initial index from which to return the results.

Optional. Match against dashboard `name`, `description`, and tag names. Returns exact (case-insensitive substring) matches only; if no exact match exists, returns similar (fuzzy trigram — typos, transpositions, prefix-as-you-type) matches instead. Results are then ordered by relevance, then pinned status, then name; each result's `search_match_type` is `exact` or `similar`. When omitted, dashboards are ordered by pinned status then alphabetical name. Capped at 200 characters; longer queries return a 400 error.

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.environmentsDashboardsList()