# Returns a single Recording resource identified by a Recording SID. **GET /v1/Recordings/{Sid}** Returns a single Recording resource identified by a Recording SID. Single-track, single-media recordings ## Servers - https://video.twilio.com: https://video.twilio.com () ## Authentication methods - Account sid auth token ## Parameters ### Path parameters - **Sid** (string) The SID of the Recording resource to fetch. ## Responses ### 200 OK #### Headers - **Access-Control-Allow-Origin** (string) Specify the origin(s) allowed to access the resource - **Access-Control-Allow-Methods** (string) Specify the HTTP methods allowed when accessing the resource - **Access-Control-Allow-Headers** (string) Specify the headers allowed when accessing the resource - **Access-Control-Allow-Credentials** (boolean) Indicates whether the browser should include credentials - **Access-Control-Expose-Headers** (string) Headers exposed to the client #### Body: application/json (object) - **account_sid** (string | null) The SID of the [Account](https://www.twilio.com/docs/iam/api/account) that created the Recording resource. - **status** (string) The status of the recording. Can be: `processing`, `completed`, or `deleted`. `processing` indicates the recording is still being captured; `completed` indicates the recording has been captured and is now available for download. `deleted` means the recording media has been deleted from the system, but its metadata is still available. - **date_created** (string(date-time) | null) The date and time in GMT when the resource was created specified in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format. - **sid** (string | null) The unique string that we created to identify the Recording resource. - **source_sid** (string | null) The SID of the recording source. For a Room Recording, this value is a `track_sid`. - **size** (integer(int64) | null) The size of the recorded track, in bytes. - **url** (string(uri) | null) The absolute URL of the resource. - **type** (string) The recording's media type. Can be: `audio` or `video`. - **duration** (integer | null) The duration of the recording in seconds rounded to the nearest second. Sub-second tracks have a `Duration` property of 1 second - **container_format** (string) - **codec** (string) The codec used to encode the track. Can be: `VP8`, `H264`, `OPUS`, and `PCMU`. - **grouping_sids** (object | null) A list of SIDs related to the recording. Includes the `room_sid` and `participant_sid`. - **track_name** (string | null) The name that was given to the source track of the recording. If no name is given, the `source_sid` is used. - **offset** (integer(int64) | null) The time in milliseconds elapsed between an arbitrary point in time, common to all group rooms, and the moment when the source room of this track started. This information provides a synchronization mechanism for recordings belonging to the same room. - **media_external_location** (string(uri) | null) The URL of the media file associated with the recording when stored externally. See [External S3 Recordings](/docs/video/api/external-s3-recordings) for more details. - **status_callback** (string(uri) | null) The URL called using the `status_callback_method` to send status information on every recording event. - **status_callback_method** (string(http-method) | null) The HTTP method used to call `status_callback`. Can be: `POST` or `GET`, defaults to `POST`. - **links** (object(uri-map) | null) The URLs of related resources. [Powered by Bump.sh](https://bump.sh)