**收費方式**:`免費無限次調用`
**接口地址**:`/api/v1/parse-video/video-source`
**請求方式**:`GET`
**請求數據類型**:`application/x-www-form-urlencoded`
**響應數據類型**:`*/*`
**接口描述**:
**請求參數**:
**請求參數**:
暫無
**響應狀態**:
| 狀態碼 | 說明 | schema |
| -------- | -------- | ----- |
|200|OK|Result?List?ParseVideoSourceVO??|
|401|Unauthorized||
|403|Forbidden||
|404|Not Found||
**響應參數**:
| 參數名稱 | 參數說明 | 類型 | schema |
| -------- | -------- | ----- |----- |
|data||array|ParseVideoSourceVO|
|  name|視頻源名稱|string||
|  source_id|視頻源id|integer(int32)||
|  status|視頻源狀態,1:正常,2:異常|integer(int32)||
|error_code|響應碼 (非0即異常)|integer(int32)|integer(int32)|
|message|響應消息|string||
|meta||array|ParseVideoSourceVO|
|  name|視頻源名稱|string||
|  source_id|視頻源id|integer(int32)||
|  status|視頻源狀態,1:正常,2:異常|integer(int32)||
**響應示例**:
```javascript
{
"data": [
{
"name": "",
"source_id": 0,
"status": 0
}
],
"error_code": 0,
"message": "success",
"meta": [
{
"name": "",
"source_id": 0,
"status": 0
}
]
}
```