Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
ID of the stream to get status for
Minimum length:
1
curl --request GET \
--url https://api.daydream.live/v1/streams/{id}/status \
--header 'Authorization: Bearer <token>'
{
"success": true,
"error": "<any>",
"data": {
"stream_id": "<string>",
"request_id": "<string>",
"pipeline_id": "<string>",
"type": "<string>",
"orchestrator_info": {
"address": "<string>",
"url": "<string>"
},
"inference_status": {
"pipeline": "<string>",
"start_time": 123,
"last_params_update_time": 123,
"last_params": "<any>",
"last_params_hash": "<string>",
"input_fps": 123,
"output_fps": 123,
"last_input_time": 123,
"last_output_time": 123,
"restart_count": 0,
"last_restart_time": 123,
"last_restart_logs": [
"<string>"
],
"last_error": "<string>",
"stream_id": "<string>"
},
"gateway_status": {
"whep_url": "<string>",
"error": {
"error_message": "<string>",
"error_time": 0
},
"ingest_metrics": {
"stats": {
"peer_conn_stats": {
"ID": "<string>",
"BytesReceived": 0,
"BytesSent": 0
},
"track_stats": [
{
"type": "<string>",
"jitter": 123,
"packets_lost": 0,
"packets_received": 0,
"packet_loss_pct": 123,
"rtt": 123,
"warnings": [
"<string>"
]
}
],
"conn_quality": "good"
}
}
},
"pipeline": "<string>"
}
}
Check the status of your stream
curl --request GET \
--url https://api.daydream.live/v1/streams/{id}/status \
--header 'Authorization: Bearer <token>'
{
"success": true,
"error": "<any>",
"data": {
"stream_id": "<string>",
"request_id": "<string>",
"pipeline_id": "<string>",
"type": "<string>",
"orchestrator_info": {
"address": "<string>",
"url": "<string>"
},
"inference_status": {
"pipeline": "<string>",
"start_time": 123,
"last_params_update_time": 123,
"last_params": "<any>",
"last_params_hash": "<string>",
"input_fps": 123,
"output_fps": 123,
"last_input_time": 123,
"last_output_time": 123,
"restart_count": 0,
"last_restart_time": 123,
"last_restart_logs": [
"<string>"
],
"last_error": "<string>",
"stream_id": "<string>"
},
"gateway_status": {
"whep_url": "<string>",
"error": {
"error_message": "<string>",
"error_time": 0
},
"ingest_metrics": {
"stats": {
"peer_conn_stats": {
"ID": "<string>",
"BytesReceived": 0,
"BytesSent": 0
},
"track_stats": [
{
"type": "<string>",
"jitter": 123,
"packets_lost": 0,
"packets_received": 0,
"packet_loss_pct": 123,
"rtt": 123,
"warnings": [
"<string>"
]
}
],
"conn_quality": "good"
}
}
},
"pipeline": "<string>"
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
ID of the stream to get status for
1
Was this page helpful?