List saved goals, funnels, journeys, or retention reports
umami_list_saved_reportsList saved reports for a chosen type (goal, funnel, journey, retention) on a website. Retrieve report IDs, names, and parameters to review or manage saved analytics views.
Instructions
List the saved reports of one type for a website, as they appear in the Umami UI sidebar (Goals, Funnels, Journeys, Retention). For Segments or Cohorts, use umami_list_segments_cohorts instead — they live on a different endpoint.
Args:
website (string, optional): Website ID, name, or domain.
type (string, required): One of 'goal', 'funnel', 'journey', 'retention'.
response_format ('markdown' | 'json'): Output format (default: 'markdown').
Returns: JSON shape: { "reports": [ { "id": string, "name": string, "type": string, "parameters": object, "created_at": string } ] }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| type | Yes | Report type, matching the sidebar section it appears under in the Umami UI. For segments or cohorts, use umami_list_segments_cohorts instead. | |
| website | No | Website ID (UUID), name, or domain. Optional if UMAMI_DEFAULT_WEBSITE is set. Use umami_list_websites to discover values. | |
| response_format | No | Output format: 'markdown' for a readable summary, 'json' for raw structured data. | markdown |