Grabbing the thumbnail URL for a video hosted on YouTube has always been simple. Just stick the video’s unique ID into a URL and bam- there’s your image. When it came to the Vimeo API, on the other hand, it used to be simple.
Recently Vimeo has been in the process of sunsetting it’s classic “SImple” API, also known as version 2. It seems like some videos still appear on the old API and some don’t. Now grabbing a thumbnail requires an developer app, API access, oAuth, and a huge php library to boot.
Luckily, I stumbled upon this approach from the Drupal community. Contrary to the title of this post, the thumbnail isn’t going to come from the Vimeo Developer API exactly, but instead Vimeo’s oEmbed endpoints.
Whether or not the video is public or private, as long as it is allowed to be embedded, vimeo provides an oEmbed endpoint with useful information about the video, including the thumbnail URL. Just grab the sweet JSON information, pull out the thumbnail URL, and enjoy!
https://gist.github.com/bacoords/77ee4d13dfa76db03981cb4eb0df0c6f
This handy little PHP function takes in the embed URL of a Vimeo video, hits the Vimeo API, grabs the oEmbed data, and spits out the thumbnail URL (or false if there are any issues). Play around with is, and see what other data you can grab.
Thanks a lot! Great code that works without issue.
God bless you abundantly dear Brian!!
Thank so much, Brian!!
Brian you are the man!
Don’t think I have a way to install Vimeo’s PHP library… this is a lifesaver! Thanks!
Does it still work?
As far as I know!
Looks like this has actually stopped working for private videos that allow embed. Not sure if there was any notice or documentation about this, but this includes not only Oembed but also their regular video info endpoint: http://vimeo.com/api/v2/video/VIDEOID.json
It’s pretty disappointing to see this change since now it will require a lot of extra work for anyone who relied on a very simple REST request, given the overhead now for authentication.
Thanks for the heads up. I’ll have to take a look- hopefully it’s still working with public videos at the very least. I agree that vimeo is intent on making it extremely difficult to access your videos programmatically.
There’s a way to fetch the thumbnail without authentication, if you can provide a whitelisted domain in your call. I’ve put some example code here: https://potatopost.co.uk/2020/04/09/getting-a-vimeo-video-thumbnail-using-the-id-or-url/
Thanks for sharing Garry! Maybe one day Vimeo will just make our lives easier.