Operations related to live streams. A live stream is a single, linear video broadcast. You broadcast a live stream by receiving encoded source video into the Wowza Video service and letting Wowza Video transcode the stream and deliver it to viewers. A live stream is essentially a one-stop method for creating a transcoder, output renditions, stream targets, and associated players.
- Reference
- REST API
- Fetch all custom stream targets
Wowza Video REST API Reference Documentation (v1.11)
API lifecycle phase: Supported 2
| Want to take the API for a test run? All you'll need is a Wowza Video subscription, or free trial, for the API access token. Then, fork our collection in Postman and you'll be making calls to our REST API in minutes! See Trial the Wowza Video REST API using Postman for more information. |
This reference documentation provides details about the operations, parameters, and request and reponse schemas for every resource and endpoint in the Wowza Video REST API. Samples appear in the right column. Sample requests are presented in cURL (Shell) and JavaScript; some samples also include just the JSON object. Response samples are all JSON. Examples in cURL use environment variables so you can easily copy and paste them. To learn more, see Using cURL.
Reference documentation is available for every version of the API. Use the Version menu at the top of the page to access the reference doc for a different version of the API.
Provide the details of the custom stream target to create in the body of the request.
A descriptive name for the custom stream target. Maximum 255 characters.
The primary RTMP ingest URL. Hostnames can't contain underscores.
The CDN for the target.
The name of the stream as defined in the target's ingestion settings. The protocol, host name, and path components of the stream name URL must be 255 characters or less. The query strings and parameter components of the stream name URL must be 1024 characters or less.
The backup RTMP ingest URL of the custom stream target. Not all providers or third-party CDNs provide backup URLs. Not for use with the akamai_cuptertino custom provider.
Note: When both the primary and backup URLs are used, Wowza Video sends the stream to both URLs, allowing a provider or 3rd party CDN to improve reliability and prevent playback disruption. If you want to use both URLs, make sure you add the stream target to the output rendition twice, once with use_stream_target_backup_url as false (the default) and once with use_stream_target_backup_url as true. See POST /transcoders/[ID]/outputs/[ID]/output_stream_targets for more information.
Example: "backup_url": "rtmp://b.ep337857.i.akamaientrypoint.net/EntryPoint"
Web addresses that the target uses to play streams. Available from version 1.7.
Example: See response body sample
A username must also be present. The password associated with the target username for RTMP authentication. Not for use with the akamai_cupertino custom provider. Example: "password": "cb1e77e98d"
- Mock serverhttps://developer.wowza.com/_mock/docs/wowza-video/api/video/v1.11/openapi/stream_targets/custom
- https://api.video.wowza.com/api/v1.11/stream_targets/custom
- curl
- Java
- Python
- JavaScript
curl -i -X POST \
https://developer.wowza.com/_mock/docs/wowza-video/api/video/v1.11/openapi/stream_targets/custom \
-H 'Content-Type: application/json' \
-d '{
"stream_target_custom": {
"name": "My Custom Stream Target",
"primary_url": "rtmp://p.ep123456.i.akamaientrypoint.net/EntryPoint",
"provider": "rtmp",
"stream_name": "c8467d50@123456"
}
}'Success
{ "stream_target_custom": { "created_at": "2020-01-28T17:16:22.011Z", "delivery_protocols": [ … ], "id": "RMS45lfvx", "name": "My Custom Stream Target", "playback_urls": { … }, "primary_url": "rtmp://p.ep123456.i.akamaientrypoint.net/EntryPoint", "provider": "rtmp", "stream_name": "c8467d50@123456", "updated_at": "2020-01-30T19:14:11.011Z" } }
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.
- Mock serverhttps://developer.wowza.com/_mock/docs/wowza-video/api/video/v1.11/openapi/stream_targets/custom
- https://api.video.wowza.com/api/v1.11/stream_targets/custom
- curl
- Java
- Python
- JavaScript
curl -i -X GET \
'https://developer.wowza.com/_mock/docs/wowza-video/api/video/v1.11/openapi/stream_targets/custom?page=0&per_page=0'Success
The date and time that the custom stream target was created.
The unique alphanumeric string that identifies the custom stream target.
A descriptive name for the custom stream target. Maximum 255 characters.
{ "stream_targets_custom": [ { … }, { … } ] }
- Mock serverhttps://developer.wowza.com/_mock/docs/wowza-video/api/video/v1.11/openapi/stream_targets/custom/{id}
- https://api.video.wowza.com/api/v1.11/stream_targets/custom/{id}
- curl
- Java
- Python
- JavaScript
curl -i -X GET \
'https://developer.wowza.com/_mock/docs/wowza-video/api/video/v1.11/openapi/stream_targets/custom/{id}'Success
{ "stream_target_custom": { "created_at": "2020-01-28T17:16:22.011Z", "delivery_protocols": [ … ], "id": "RMS45lfvx", "name": "My Custom Stream Target", "playback_urls": { … }, "primary_url": "rtmp://p.ep123456.i.akamaientrypoint.net/EntryPoint", "provider": "rtmp", "stream_name": "c8467d50@123456", "updated_at": "2020-01-30T19:14:11.011Z" } }
Operations related to recordings, which are created through the /live_streams or /transcoders resources. The Wowza Video service can create MP4 recordings of your live streams and transcoded output. Recordings can be downloaded and saved locally. They're based on the highest-bitrate output rendition that Wowza Video generates from your video source. See About recordings to learn more.
Operations related to schedules. Schedules allow you to automatically start or stop a live stream or transcoder at a predetermined date and time. You can configure a schedule to start and/or stop a live stream or transcoder just once, or you can configure it to repeat the behavior on a regular basis. See About schedules to learn more.
Operations related to video on demand (VOD) streams, which are created through the /live_streams or /transcoders resources. A VOD stream is a recording of a live stream that viewers can replay at a later date. After the broadcast is over and the live stream or transcoder is stopped, Wowza Video creates the VOD stream and generates a playback URL. See About VOD Streams to learn more.
Operations related to Real-Time Streaming at Scale. If your audience is fewer than 300 viewers or you want to deliver a stream in near real time alongside other delivery protocols, use our WebRTC solution.
To enable and purchase capacity for Real-Time Streaming at Scale for your account and access the /real_time operations, contact 720.279.8163 or schedule a call.