# Fetch all transcoders This operation shows limited details for all of your transcoders. For detailed information, fetch a single transcoder. Endpoint: GET /transcoders 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): - `transcoders` (array, required) Example: [{"id":"2lsWj3F9","name":"My transcoder","workflow":"live_stream","state":"stopped","created_at":"2020-01-28T17:16:22.097Z","updated_at":"2020-01-31T01:17:48.097Z"},{"id":"VJbkhjzl","name":"My other transcoder","workflow":"transcoder","state":"started","created_at":"2020-01-28T17:16:22.097Z","updated_at":"2020-01-30T16:03:28.097Z"}] - `transcoders.created_at` (string) The date and time that the transcoder was created. - `transcoders.id` (string) The unique alphanumeric string that identifies the transcoder. - `transcoders.name` (string) A descriptive name for the transcoder. Maximum 200 characters. - `transcoders.state` (string) The state of the transcoder. Enum: "starting", "stopping", "started", "stopped", "resetting" - `transcoders.workflow` (string) The method by which the transcoder was created, either transcoder for a transcoder created through the transcoder workflow or live_stream for a transcoder created automatically as part of the live stream workflow. Enum: "live_stream", "transcoder" - `transcoders.updated_at` (string) The date and time that the transcoder 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)