list_dimension_values
Discover the actual values a metric's dimension can take over a date range, so you can build precise filters or interpret breakdown results.
Instructions
Discover the actual values a dimension takes for a metric in a universe over a date range, e.g. which Country codes, Platform names, FunnelName values, CustomEventName values, or Place IDs have data. Use the returned values in query_metrics filters or to understand breakdown results. Returns { values: [{ dimension, values: [{ value }] }] }.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max values to return per dimension. | |
| filter | No | Restrict results to rows matching every filter. The dimension must be supported by the metric. Use list_dimension_values to discover valid values. | |
| metric | Yes | Metric name, case-sensitive, e.g. DailyActiveUsers, DailyRevenue, ForwardD1Retention, ClientCrashRate15m. Call list_metrics to see all names, their supported granularities, and their supported dimensions. | |
| endTime | Yes | Range end, exclusive, RFC 3339 UTC, e.g. 2026-02-01T00:00:00Z. | |
| startTime | Yes | Range start, inclusive, RFC 3339 UTC, e.g. 2026-01-01T00:00:00Z. | |
| dimensions | Yes | Dimension names to look up, e.g. ['Country'] or ['FunnelName', 'FunnelStep']. | |
| universeId | Yes | The Roblox universe (experience) ID. Found on the Creator Dashboard overview page. | |
| granularity | No | Optional bucket size. | |
| pollTimeoutSeconds | No | How long to wait for a slow query before returning the pending operation (default 60). If the result comes back with done: false, pass its 'path' to get_operation later. |