Vionlabs Marker Results API
Vionlabs API for retrieval of marker results (intro/recap skip and end credit detection).
Get marker information for an asset.
Returns asset marker information for the asset with the specified customer
ident. If the asset is found in catalog but has not yet been processed the
not_yet_available flag will be set in the response
In: query
Path Parameters
Customer identifier for an item in the catalog
Query Parameters
Specify binge markers version code
Response Body
curl -X GET "https://loading/results/markers/v1/asset/string?version=string"{
"ident": "1347gg5",
"not_yet_available": false,
"intro_start": 60,
"intro_end": 125,
"recap_start": 125,
"recap_end": 155,
"credit_start": 3057
}{
"detail": [
{
"loc": [
"string"
],
"msg": "string",
"type": "string"
}
]
}Get list of binge markers information
Returns paginated list of items with binge markers information for the customer catalog
In: query
Query Parameters
Specifies start of time window (ISO 8601). If not specified then all results will be returned
date-timeSpecifies end of time window (ISO 8601). If not specified then utcnow() value will be used.It is recommended to fix this argument while looping across pages to establish a fixed time window
date-timeSpecifies a positional number of page with results
00 <= valueSpecifies a max number of results per page
10001 <= valueSpecify binge markers version code
Response Body
curl -X GET "https://loading/results/markers/v1/?from_utcdatetime=2024-03-06T20%3A00%3A00&to_utcdatetime=2024-03-07T20%3A00%3A00&page_num=0&page_size=1000&version=string"{
"page_num": 0,
"page_size": 0,
"total_count": 0,
"data": []
}{
"detail": [
{
"loc": [
"string"
],
"msg": "string",
"type": "string"
}
]
}Get marker result status and information for an asset.
Gets asset marker result status and information for the asset with the specified customer ident.
In: query
Path Parameters
Customer identifier for an item in the catalog
Query Parameters
Specify binge markers version code
Response Body
curl -X GET "https://loading/results/markers/v2/string?version=string"{
"status": "success",
"error": "string",
"updated": "2019-08-24T14:15:22Z",
"version_id": "string",
"inventory_id": "string",
"type": "movie",
"data": {
"ident": "1347gg5",
"not_yet_available": false,
"intro_start": 60,
"intro_end": 125,
"recap_start": 125,
"recap_end": 155,
"credit_start": 3057
}
}{
"detail": [
{
"loc": [
"string"
],
"msg": "string",
"type": "string"
}
]
}Get paginated list of marker results statuses and information
Returns paginated list of items with binge markers information for the customer catalog
In: query
Query Parameters
Specifies start of time window (ISO 8601). If not specified then all results will be returned
date-timeSpecifies end of time window (ISO 8601). If not specified then utcnow() value will be used.It is recommended to fix this argument while looping across pages to establish a fixed time window
date-timeSpecifies a positional number of page with results
00 <= valueSpecifies a max number of results per page
5001 <= valueSpecify binge markers version code
Response Body
curl -X GET "https://loading/results/markers/v2/?from_utcdatetime=2024-03-06T20%3A00%3A00&to_utcdatetime=2024-03-07T20%3A00%3A00&page_num=0&page_size=500&version=string"{
"page_num": 0,
"page_size": 0,
"total_count": 0,
"data": []
}{
"detail": [
{
"loc": [
"string"
],
"msg": "string",
"type": "string"
}
]
}