# Fetch a property of a stream target This operation shows the details of a specific property assigned to a specific stream target. The properties returned will depend on the provider you are using and are noted in the key descriptions below. For a comprehensive resource describing the use of advanced properties, see [Set advanced properties with the Wowza Video REST API](https://www.wowza.com/docs/how-to-set-advanced-properties-by-using-the-wowza-video-rest-api). Endpoint: GET /stream_targets/{stream_target_id}/properties/{id} Version: v2.0 ## Path parameters: - `stream_target_id` (string, required) The unique alphanumeric string that identifies the stream target. - `id` (string, required) The unique string that identifies the stream target property. The string contains the section and the key, connected by a dash. For example, hls-chunkSize. ## Response 200 fields (application/json): - `property` (object, required) A stream target property. The property configuration consists of a key/value pair and the section of the stream target configuration table the key/value pair is stored in. Example: {"key":"chunkSize","section":"hls","value":6} - `property.key` (string, required) The key of the property. The following table lists the available property keys. Key | Description ----------------|------------- acao | Explicitly specifies the origin that can access the stream. While most streams won't need the origin explicitly set, you might use this property for older players that don't send the Referer header in their stream request. Available on these targets types: Wowza CDN on Fastly chunkSize | Defines the duration of the time-based audio and video chunks that Wowza Video delivers to the target. Available on these targets types: Wowza CDN on Fastly, Custom: akamai_cupertino convertAMFData | Determines whether Wowza Video converts incoming AMF data into ID3 tags. Available on these targets types: Wowza CDN on Fastly, Custom: akamai_cupertino playlistSeconds | Defines the maximum allowable length of the playlist. Available on these targets types: Wowza CDN on Fastly, Custom: akamai_cupertino playSSL | Determines whether Wowza Video sends the stream from the target to the player by using SSL (HTTPS). Available on these targets types: Custom: akamai_cupertino sendSSL | Determines whether Wowza Video sends the stream from the transcoder to the target by using SSL (HTTPS). Available on these targets types: Custom: akamai_cupertino redundantChunklists | Determines whether Wowza Video creates redundant chunklists within a playlist. If a primary chunklist within a playlist fails, players that support redundancy during playback can switch to the redundant chunklist. Note: Enabling redundantChunklists increases playback reliability but doubles egress data usage and associated charges. Available on these targets types: Custom: akamai_cupertino relativePlaylists | Allows the viewer to watch the stream over HTTP and HTTPS, whichever protocol their browser calls. Available on these targets types: Wowza CDN on Fastly, Custom: akamai_cupertino Enum: "acao", "chunkSize", "convertAMFData", "sendSSL", "playSSL", "playlistSeconds", "redundantChunklists", "relativePlaylists" - `property.section` (string, required) The section of the stream target configuration table that contains the property. Section | Valid keys for the section ----------------|------------- hls | acao, chunkSize, convertAMFData, and sendSSL playlist | playSSL, playlistSeconds, redundantChunklists, and relativePlaylists Enum: "hls", "playlist" - `property.value` (string, required) The value of the property. The following table provides information about valid values for each property key. Key(s) | Values for the key ----------------|------------- acao | Displays as http://<_origin_> chunkSize | Valid values are the integers 2, 4, 6, 8, and 10. convertAMFData playSSL sendSSL redundantChunklists relativePlaylists | Valid values are the Booleans true and false. playlistSeconds | Valid values are any integer between 6 and 28800 (8 hours). Example: 6 ## 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)