/prod/offerings
http://medialive.{region}.amazonaws.com/prod/offeringsList offerings available for purchase.
Query Params
Filter by channel class, 'STANDARD' or 'SINGLE_PIPELINE'
Filter to offerings that match the configuration of an existing channel, e.g. '2345678' (a channel ID)
Filter by codec, 'AVC', 'HEVC', 'MPEG2', 'AUDIO', or 'LINK'
Filter by offering duration, e.g. '12'
Filter by bitrate, 'MAX_10_MBPS', 'MAX_20_MBPS', or 'MAX_50_MBPS'
Filter by framerate, 'MAX_30_FPS' or 'MAX_60_FPS'
Filter by resolution, 'SD', 'HD', 'FHD', or 'UHD'
Filter by resource type, 'INPUT', 'OUTPUT', 'MULTIPLEX', or 'CHANNEL'
Filter by special feature, 'ADVANCED_AUDIO' or 'AUDIO_NORMALIZATION'
Filter by video quality, 'STANDARD', 'ENHANCED', or 'PREMIUM'
Pagination limit
Pagination token
Responses
{
"success": true,
"data": {
"id": "abc123",
"created_at": "2025-01-01T00:00:00Z"
}
}{
"success": false,
"error": {
"code": "VALIDATION_ERROR",
"message": "Invalid request parameters"
}
}1curl --request GET \2 --url 'http://medialive.{region}.amazonaws.com/prod/offerings' \3 --header 'accept: application/json' \4 --header 'content-type: application/json'1{2 "success": true,3 "data": {4 "id": "abc123",5 "created_at": "2025-01-01T00:00:00Z"6 }7}