views:

203

answers:

2

Is it possible to get static image URL from the flickr URL via an api call or some script ?
For eg :
Flickr URL -> http://www.flickr.com/photos/53067560@N00/2658147888/in/set-72157606175084388/
Static image URL -> http://farm4.static.flickr.com/3221/2658147888%5F826edc8465.jpg

A: 

Not sure if you can get it directly through a single API call, but this link explains how the urls for the images are contructed: link

Andrew
+2  A: 

In your Flickr URL, the photo ID is 2658147888. You use flickr.photos.getSizes to get the various sizes of the photo available, and pick the url you want from that, depending on the size. There are several ways to access the API so please specify if you want more details for a particular language.

Kinopiko
Thanks ! That is exactly what I was looking for .
NM