# Fetch all uptime records for a transcoder This operation shows all of the uptime records for a specific transcoder. An uptime record identifies a specific transcoding session. Endpoint: GET /transcoders/{transcoder_id}/uptimes Version: v2.0 ## Path parameters: - `transcoder_id` (string, required) The unique alphanumeric string that identifies the transcoder. ## Query parameters: - `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): - `uptimes` (array, required) Example: [{"billed":false,"created_at":"2017-07-06T14:22:00.000Z","id":"1234abcd","running":true,"started_at":"2017-07-06T14:22:00.000Z","transcoder_id":"2adffc17","updated_at":"2017-07-06T14:22:00.000Z"},{"billed":true,"created_at":"2017-07-08T14:22:00.000Z","ended_at":"2017-07-08T16:40:00.000Z","id":"5679wxyz","running":false,"started_at":"2017-07-08T14:22:00.000Z","transcoder_id":"ff9l4838","updated_at":"2017-07-08T16:40:00.000Z"}] - `uptimes.billed` (boolean) A Boolean value that indicates if the usage generated by this uptime has been sent for billing processing. - `uptimes.created_at` (string) The date and time that the uptime record was created. Example: "2017-07-06T14:22:00.000Z" - `uptimes.ended_at` (string) The date and time that the transcoder was stopped for this uptime. If this value is not present, it indicates that the transcoder is currently running. - `uptimes.id` (string) The unique alphanumeric string that identifies the uptime record. Example: "1234abcd" - `uptimes.running` (boolean) A Boolean value that indicates if the transcoder is still running for this uptime. Example: true - `uptimes.started_at` (string) The date and time that the transcoder started for this uptime. Example: "2017-07-06T14:22:00.000Z" - `uptimes.transcoder_id` (string) The unique alphanumeric string that identifies the transcoder. Example: "2adffc17" - `uptimes.updated_at` (string) The date and time that the uptime record was updated. Example: "2017-07-06T14:22:00.000Z" ## 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) ## Response 403 fields (application/json): - `meta` (object, required) - `meta.status` (integer) - `meta.code` (string) - `meta.title` (string) - `meta.message` (string) - `meta.description` (string) - `meta.links` (array) ## Response 404 fields (application/json): - `meta` (object, required) - `meta.status` (integer) - `meta.code` (string) - `meta.title` (string) - `meta.message` (string) - `meta.description` (string) - `meta.links` (array) ## Response 410 fields (application/json): - `meta` (object, required) - `meta.status` (integer) - `meta.code` (string) - `meta.title` (string) - `meta.message` (string) - `meta.description` (string) - `meta.links` (array)