Used to return a specific video.
The "Get video properties" endpoint allows you to retrieve the properties of a specific video using the PandaVideo API. By making a GET request to the specified URL (https://api-v2.pandavideo.com.br/videos/{video_id}
), you can access the details of the video.
To access the endpoint, you need to provide the necessary authentication in the headers using the "Authorization" field with the value "API_KEY". The video_id parameter in the URL should be replaced with the ID of the video you want to retrieve.
Parameter | Type | Required | Description |
---|---|---|---|
video_id | string | Yes | The ID of the video (required). |
Responses
200
: Success. The video properties were retrieved successfully.400
: Bad request. Check the provided parameters.401
: Unauthorized. Authentication failed or not provided.404
: Not found. The specified video was not found.500
: Internal server error. Please try again later.
By utilizing the "Get video properties" endpoint, you can programmatically retrieve the properties of a specific video in your PandaVideo account.
Recipes
The Recipes section provides a collection of code examples and sample implementations to help you understand and use the API effectively. Each recipe includes commented code that explains the purpose and functionality of each line. You can refer to these recipes as a guide to implement specific features or interact with the API endpoints.
See the recipes below: