> ## Documentation Index
> Fetch the complete documentation index at: https://docs.zype.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List Self Hosted Video Data Sources

Retrieve a list of self-hosted video data sources

# OpenAPI definition

```json
{
  "openapi": "3.0.1",
  "info": {
    "title": "Platform",
    "version": "1.0.0",
    "description": ""
  },
  "servers": [
    {
      "url": "https://api.zype.com/"
    }
  ],
  "security": [
    {
      "api_key": []
    }
  ],
  "components": {
    "securitySchemes": {
      "api_key": {
        "type": "apiKey",
        "name": "api_key",
        "in": "query"
      }
    }
  },
  "paths": {
    "/videos/{video_id}/self_hosted": {
      "get": {
        "tags": [
          "Videos"
        ],
        "summary": "List Self Hosted Video Data Sources",
        "description": "Retrieve a list of self-hosted video data sources",
        "operationId": "listSelfHostedVideoDataSources",
        "parameters": [
          {
            "name": "video_id",
            "in": "path",
            "description": "ID of the video",
            "required": true,
            "style": "simple",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Response will contain an array of data sources",
            "content": {
              "application/json": {
                "schema": {
                  "title": "SelfHostedVideoDataSourceResponse",
                  "type": "object",
                  "properties": {
                    "response": {
                      "title": "SelfHostedVideoDataSource",
                      "type": "object",
                      "properties": {
                        "_id": {
                          "type": "string"
                        },
                        "active": {
                          "type": "boolean"
                        },
                        "duration": {
                          "type": "number",
                          "description": "Video duration"
                        },
                        "files": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "title": "files",
                            "properties": {
                              "aspect_ratio": {
                                "type": "number"
                              },
                              "height": {
                                "type": "number"
                              },
                              "width": {
                                "type": "number"
                              },
                              "type": {
                                "type": "string"
                              },
                              "url": {
                                "type": "string"
                              }
                            }
                          },
                          "description": ""
                        }
                      }
                    }
                  }
                }
              }
            }
          },
          "422": {
            "description": "Unprocessable entity",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/paths/~1videos/get/responses/422/content/application~1json/schema"
                }
              }
            }
          }
        },
        "deprecated": false
      }
    }
  }
}
```