# Fetch an uptime record This operation shows the details of a specific uptime record for a specific transcoder. An uptime record identifies a transcoding session. Endpoint: GET /transcoders/{transcoder_id}/uptimes/{id} Version: v2.0 ## Path parameters: - `transcoder_id` (string, required) The unique alphanumeric string that identifies the transcoder. - `id` (string, required) The unique alphanumeric string that identifies the uptime record. ## Response 200 fields (application/json): - `uptime` (object, 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"} - `uptime.billed` (boolean) A Boolean value that indicates if the usage generated by this uptime has been sent for billing processing. - `uptime.created_at` (string) The date and time that the uptime record was created. Example: "2017-07-06T14:22:00.000Z" - `uptime.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. - `uptime.id` (string) The unique alphanumeric string that identifies the uptime record. Example: "1234abcd" - `uptime.running` (boolean) A Boolean value that indicates if the transcoder is still running for this uptime. Example: true - `uptime.started_at` (string) The date and time that the transcoder started for this uptime. Example: "2017-07-06T14:22:00.000Z" - `uptime.transcoder_id` (string) The unique alphanumeric string that identifies the transcoder. Example: "2adffc17" - `uptime.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)