# Fetch all real-time streams This operation shows limited details for all of your real-time streams. For detailed information, fetch a single real-time stream. Endpoint: GET /real_time Version: v2.0 ## Query parameters: - `filter` (string) Restricts the data that gets returned by filtering on one or more values associated with a field. Construct a filter using a two-part expression that specifies the field on which to filter and the logic to use to filter. Filters use a zero-based index. For valid filter operators and filter fields, see How to get filtered query results with the Wowza Video REST API. Example: filter0=state&filter0=stopped - `page` (integer) Returns a paginated view of results from the HTTP request. Specify a positive integer to indicate which page of the results should be displayed. The default is 1. For more information and examples, see Get paginated query results with the Wowza Video REST API. - `per_page` (integer) For use with the page parameter. Indicates how many records should be included in a page of results. A valid value is any positive integer. The default and maximum value is 1000. ## Response 200 fields (application/json): - `real_time_streams` (array, required) Example: [{"id":"2adffc17","name":"MyRealTimeStream","state":"started","created_at":"2021-01-29T17:16:21.849Z","updated_at":"2021-01-31T16:06:47.849Z"},{"id":"if7le8ip","name":"MyRealTimeStream2","state":"started","created_at":"2020-01-29T17:16:21.849Z","updated_at":"2020-01-31T02:26:05.849Z"},{"id":"dd4udt1b","name":"MyRealTimeStream3","state":"started","created_at":"2020-01-29T17:16:21.849Z","updated_at":"2020-01-30T18:13:18.849Z"}] - `real_time_streams.created_at` (string) The date and time that the real-time stream was created. - `real_time_streams.id` (string) The unique alphanumeric string that identifies the real-time stream. - `real_time_streams.name` (string) A descriptive name for the real-time stream. - `real_time_streams.state` (string) The state of the stream. Enum: "active", "archived", "disabled", "stopped" - `real_time_streams.updated_at` (string) The date and time that the real-time stream was updated. ## Response 401 fields (application/json): - `meta` (object, required) - `meta.status` (integer) - `meta.code` (string) - `meta.title` (string) - `meta.message` (string) - `meta.description` (string) - `meta.links` (array)