# Fetch all assets The assets operations are deprecated in 2.0. Use the /videos endpoints instead. This operation shows limited details for all of your assets. For detailed information, fetch a single asset. Endpoint: GET /assets Version: v2.0 ## Query parameters: - `filter` (string) Restricts the data that gets returned by filtering on one or more values associated with a field. For more information and examples, see the technical article How to get filtered query results with the Wowza Video REST API. Example: filter0=created_at&filter0=2021-07-14T17:47:45.000Z - `query` (string) Restricts the data that gets returned by querying on one or more values associated with a set of fields. For more information and examples, see the technical article How to get filtered query results with the Wowza Video REST API. Example: sort_direction=desc&sort_column=created_at&per_page=30&state=completed&query=sample - `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): - `assets` (array, required) Example: [{"id":"wdjfqvsv","name":"MyAsset","created_at":"2020-01-29T17:16:21.849Z","updated_at":"2020-01-31T16:06:47.849Z","published":true,"thumbnail_url":"https://objectstorage.us-ashburn-1.oraclecloud.com/n/idcrz33q3xdo/b/recordings-qa-S7I69eYn/o/abcd1234/recording_0pfxrlw2/0pfxrlw2_thumbnail.jpg.jpg","state":"completed","processing_percentage":0.1,"file_size":1570024,"playback_url":"https://wowzasubdomain/1/RmlPcnpsM0Z1Nzd2/SFhkUXlv/hls/live/playlist.m3u8","download_url":"https://objectstorage.us-ashburn-1.oraclecloud.com/n/idcrz33q3xdo/b/recordings-qa-S7I69eYn/o/abcd1234/recording_0pfxrlw2/MyAsset.mp4","file_name":"MyFile.mp4"},{"id":"KyxWKtHQ","name":"MyAsset2","created_at":"2020-01-29T17:16:21.849Z","updated_at":"2020-01-31T02:26:05.849Z","published":true,"thumbnail_url":"https://objectstorage.us-ashburn-1.oraclecloud.com/n/idcrz33q3xdo/b/recordings-qa-S7I69eYn/o/abcd1234/recording_0pfxrlw2/0pfxrlw2_thumbnail.jpg.jpg","state":"completed","processing_percentage":0.3,"file_size":70284,"playback_url":"https://wowzasubdomain/1/U0VmOU90TmtvSzJP/Y2ltUkl2/hls/live/playlist.m3u8","download_url":"https://objectstorage.us-ashburn-1.oraclecloud.com/n/idcrz33q3xdo/b/recordings-qa-S7I69eYn/o/abcd1234/recording_0pfxrlw2/MyAsset2.mp4","file_name":"MyFile2.mp4"},{"id":"Ly40ZDSg","name":"MyAsset3","created_at":"2020-01-29T17:16:21.849Z","updated_at":"2020-01-30T18:13:18.849Z","published":true,"thumbnail_url":"https://objectstorage.us-ashburn-1.oraclecloud.com/n/idcrz33q3xdo/b/recordings-qa-S7I69eYn/o/abcd1234/recording_0pfxrlw2/0pfxrlw2_thumbnail.jpg.jpg","state":"completed","processing_percentage":0,"file_size":882391,"playback_url":"https://wowzasubdomain/1/PmlPcnpsM0Z1Nzd2/SFhkUXlv/hls/live/playlist.m3u8","download_url":"https://objectstorage.us-ashburn-1.oraclecloud.com/n/idcrz33q3xdo/b/recordings-qa-S7I69eYn/o/abcd1234/recording_0pfxrlw2/MyAsset3.mp4","file_name":"MyFile3.mp4"}] - `assets.id` (string) The unique alphanumeric string that identifies the asset Example: "i4qsbwvi" - `assets.name` (string) A descriptive name for the asset. Maximum 200 characters. Example: "MyAsset" - `assets.created_at` (string) The date and time that the asset was created in Coordinated Universal Time (UTC) format. Dates are formatted as follows: YYYY-DD-MMT HH:MM:SSZ using 24-hour clock ("military") time and including the T and Z. The T marks the end of the date portion and the Z represents zero UTC time offset. . - `assets.updated_at` (string) The date and time that the asset was updated in Coordinated Universal Time (UTC) format. Dates are formatted as follows: YYYY-DD-MMT HH:MM:SSZ using 24-hour clock ("military") time and including the T and Z. The T marks the end of the date portion and the Z represents zero UTC time offset. . Example: "2022-02-26T01:38:40.310Z" - `assets.published` (boolean) Specifies whether an asset is published, which enables playback. - `assets.thumbnail_url` (string) The URL to receive the preview thumbnail. Example: "https://objectstorage.us-ashburn-1.oraclecloud.com/n/idcrz33q3xdo/b/recordings-qa-S7I69eYn/o/abcd1234/recording_0pfxrlw2/0pfxrlw2_thumbnail.jpg" - `assets.state` (string) The state of the asset. Enum: "uploading", "processing", "completed", "failed" - `assets.reason` (string) The reason that an asset has the state failed. Only returned when state is failed after processing is attempted. - `assets.processing_percentage` (integer) A percentage that describes how soon transcoding will complete. Example: "100.0" - `assets.file_size` (integer) The file size of the asset in bytes. For example, 2372820 bytes equals 2.4 megabytes. - `assets.playback_url` (string) The address that can be used to configure playback of the stream. - `assets.download_url` (string) The URL that can be used to download the asset as a .MP4 file. Example: "https://objectstorage.us-ashburn-1.oraclecloud.com/n/idcrz33q3xdo/b/recordings-qa-S7I69eYn/o/abcd1234/recording_0pfxrlw2/MyAsset.mp4" - `assets.file_name` (string) The name of the mp4 file you uploaded. Note: To avoid file management issues in storage, Wowza Video removes or replaces special characters in file names. Example: "MyAsset.mp4" ## 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)