How to Download Videos via API
How to Download Videos via API
Learn How to Use the API to Download Your Videos
Panda Video offers a dedicated endpoint for direct video downloads.
To use it, send a POST request to:
https://download-us01.pandavideo.com:7443/videos/{video_id}/download
Replace {video_id}
with the ID of the desired video.
You can use the API via code (in JavaScript, for example), tools like Postman, or directly through the API documentation. Below, we explain step-by-step with images and examples.
1. Generating the API Key
To use any API functionality, you need to generate an access key:
- Go to Settings > Advanced
- Click Generate New API Key
- Copy the code that will be displayed
2. Getting the Video ID
You can obtain the Video ID in three ways:
- Using the API's listing or properties endpoints
- Or directly from the video URL in the dashboard
Go to Videos > click on the desired video. The ID will be at the end of the URL:
3. Using the Documentation to Generate the Request
- Go to: https://pandavideo.readme.io/reference/download-video
- Fill in the fields with the Video ID and your API key:
- Select Shell (CURL Request) as the language and click the copy button:
4. Using Postman
- Open Postman and click Import (top left corner)
- Paste the copied CURL code into the text field:
- Click Send. The video will appear in the Body tab of the response:
- To download, click the three dots > Save Response to file:
5. Using Code Directly via GitHub
If you want to integrate the API into your system, you can use our ready-made examples on GitHub. Check it out:
👉 GitHub - Video Download Example
6. Inserting the Code into an .html File
- Copy the code from GitHub
- Create an
.html
file in your editor (such as VS Code) - Paste the code into the file:
7. Changing the Code Data
Inside the code, replace the values for:
'API_KEY'
'VIDEO_ID'
With the information from your account and video:
Got any questions?
Reach out to our support team via chat, and our team will do their best to resolve any questions you have.
Not using Panda Video yet? Visit our pricing page and choose the plan that’s right for your business.
Updated on: 08/15/2025
Thank you!