v1

latestOpenAPI 3.0.2Terms of Use2026-08-061441681.6 MB
transcoders

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.

get/transcoders/{transcoder_id}/uptimes

Path parameters

transcoder_idstring required

The unique alphanumeric string that identifies the transcoder.

Query parameters

pageinteger

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_pageinteger

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

Success

Example response

{
  "uptimes": [
    {
      "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"
    }
  ]
}