Search code examples
phpvimeo

Vimeo video downloading through API


Is there a way to get the direct download link of a vimeo video using PHP vimeo API?

I tried this stackoverflow answer, but moogaloop's links don't work. It has be more than a year since Vimeo updated their API.

Is there any way to get a direct link/downloading videos through API/PHP.


Solution

  • For Vimeo PRO Account:

    You can get the direct link for any video or all videos in your account. To get the download link for all videos you have to call the following API with your access token.

    GET https://api.vimeo.com/me/videos
    

    or you can get the download link for a single video by calling the following API

    https://api.vimeo.com/me/videos/{video_id}
    

    In responses, you can find download['link']

    For more information go to Vimeo API Documentation