Get live
GEThttps://api.one.blendvision.com/bv/cms/v1/lives/:id
Return details of a specified live session.
- Return
404
/NotFound
error if the requested resource is not found.
Request
Path Parameters
id stringrequired
Required. The unique id of the live.
Header Parameters
x-bv-org-id stringrequired
To invoke this API using api_token
, you need to set the x-bv-org-id
header to specify the organization for which you want to perform the action.
Responses
- 200
- 400
- 401
- 403
- 500
- default
A successful response.
- application/json
- Schema
- Example (from schema)
Schema
live object
{
"live": {
"broadcast_mode": "BROADCAST_MODE_TRADITIONAL_LIVE",
"cover_images": {
"close": null,
"current": null,
"end": null,
"player_pause": null,
"preview": null,
"ready_to_start": null,
"signal_interruption": null
},
"created_at": "2023-05-31T06:53:43Z",
"error_infos": [],
"id": "860d49b8-2ca8-4030-b5ff-f6ec3a1c6196",
"ingest_types": [
"LIVE_STREAM_INGEST_TYPE_RTMP"
],
"interaction": {
"chatroom": {
"live": {
"enabled": false,
"theme": "CHATROOM_THEME_UNSPECIFIED"
},
"vod": {
"enabled": false,
"theme": "CHATROOM_THEME_UNSPECIFIED"
}
},
"event_id": "",
"poll_enabled": false
},
"labels": [],
"name": "Amazing Live",
"resolution": "LIVE_RESOLUTION_HD",
"save_for_download_enabled": false,
"security": {
"domain_control": {
"domains": [],
"enabled": false
},
"geo_control": [],
"privacy": {
"token": null,
"type": "SECURITY_PRIVACY_TYPE_PUBLIC"
},
"protection": {
"type": "PROTECTION_TYPE_UNSPECIFIED"
},
"watermark": {
"enabled": false,
"position": "WATERMARK_POSITION_UNSPECIFIED",
"type": "WATERMARK_TYPE_UNSPECIFIED"
}
},
"setup": {
"rtmp": {
"links": [
{
"pipeline": "LIVE_STREAM_PIPELINE_MAIN",
"url": "rtmp://43.207.253.193:1935/live1/stream"
},
{
"pipeline": "LIVE_STREAM_PIPELINE_BACKUP",
"url": "rtmp://35.76.157.169:1935/live2/stream"
}
]
}
},
"source": null,
"status": "LIVE_STATUS_WAIT_FOR_PREVIEW",
"stream": [
{
"manifests": [
{
"protocol": "PROTOCOL_HLS",
"uris": [
{
"resolutions": [
{
"height": "720",
"width": "1280"
},
{
"height": "480",
"width": "852"
},
{
"height": "360",
"width": "640"
},
{
"height": "240",
"width": "426"
}
],
"uri": "https://dh8gxyds8vhu6.cloudfront.net/out/v1/2c4a1f16173244eea3a6b9ce8bfb510c/index.m3u8"
}
]
},
{
"protocol": "PROTOCOL_DASH",
"uris": [
{
"resolutions": [
{
"height": "720",
"width": "1280"
},
{
"height": "480",
"width": "852"
},
{
"height": "360",
"width": "640"
},
{
"height": "240",
"width": "426"
}
],
"uri": "https://dh8gxyds8vhu6.cloudfront.net/out/v1/1854c1bbbb404ae2b2f8aa8f41ba7ede/index.mpd"
}
]
}
],
"thumbnail": null
}
],
"type": "LIVE_TYPE_LIVE",
"ull_enabled": false,
"updated_at": "2023-05-31T06:55:46Z"
}
}
A bad request response.
The code
is 3
means got an invalid argument. There are more HTTP status code mappings listed on here and gRPC code on here.
- application/json
- Schema
- Example (from schema)
Schema
code int32
message string
details object[]
{
"code": 0,
"message": "string",
"details": [
{
"@type": "string"
}
]
}
A unauthenticated response.
The header authorization
was missing or unidentified.
- application/json
- Schema
- Example (from schema)
Schema
code int32
message string
details object[]
{
"code": 0,
"message": "string",
"details": [
{
"@type": "string"
}
]
}
A forbidden response.
It means that the provided authorization
did not have enough permission to access the resource or the API.
- application/json
- Schema
- Example (from schema)
Schema
code int32
message string
details object[]
{
"code": 0,
"message": "string",
"details": [
{
"@type": "string"
}
]
}
A server error response. There are more HTTP status code mappings listed on here.
- application/json
- Schema
- Example (from schema)
Schema
code int32
message string
details object[]
{
"code": 0,
"message": "string",
"details": [
{
"@type": "string"
}
]
}
An unexpected error response.
- application/json
- Schema
- Example (from schema)
Schema
code int32
message string
details object[]
{
"code": 0,
"message": "string",
"details": [
{
"@type": "string"
}
]
}
Authorization: authorization
name: authorizationtype: apiKeydescription: Enter the token with Bearer schema prefix, eg. `Bearer <token-string>`in: header
- curl
- python
- go
- nodejs
- php
- CURL
curl -L 'https://api.one.blendvision.com/bv/cms/v1/lives/:id' \
-H 'Accept: application/json' \
-H 'authorization: <API_KEY_VALUE>'
ResponseClear