List dynamic endpoint runs
list_dynamic_endpoint_runsList a dynamic endpoint's recent EXECUTIONS, newest-first — the place to look when a live page is broken. Each item carries the outcome (status + the failure message the public URL hides behind a 500) plus request_path, the resolved path including any :param values, so you can see WHICH request failed on a parameterised endpoint. run_id resolves to the full run and its step traces via get_workflow_run / get_workflow_run_traces. Only cache MISSES that reached the origin appear here, so this is renders, not traffic; history is kept for about two weeks. Defaults to live serves — pass previews=true for the editor-preview history instead.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| slug | No | the endpoint slug (provide this or endpoint_id) | |
| previews | No | list editor PREVIEW runs instead of live serves; defaults to false (live serves only) | |
| page_size | No | maximum number of runs to return in this page | |
| page_token | No | token from a previous response's next_page_token to fetch the next page | |
| endpoint_id | No | the endpoint id (provide this or slug) |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| runs | Yes | ||
| next_page_token | Yes |