--- title: "system.eventstream.listEventStreams" description: "Lists event stream resource paths that are part of the specified project." --- # system.eventstream.listEventStreams > Lists event stream resource paths that are part of the specified project. This function is used in **Python Scripting**. ## Description ## Client Permission Restrictions This scripting function has no [Client Permission](ignition-modules\vision\vision-project-properties\vision-project-properties.md#vision-permissions-properties) restrictions. ## Syntax `system.eventstream.listEventStreams(project)` ### Parameters | Type | Parameter | Description | |---|---|---| | String | `project` | The project the event stream(s) belong to. | ### Returns **List** - A list of event stream resources within the specified project. ### Scope Gateway ## Code Examples ```python title="Example #1" # Retrieve the list of event streams from the "event-stream" project. system.eventstream.listEventStreams("event-stream") ```