I want to translate bulk numbers of short url's coming streamed from twitter. Rather than accessing each individual request I want to use API's that accept a list of short or tiny URL's and return the original URL's. Are such API's available?
+3
A:
Not really an API, but this will give you the URL really fast.
curl -I http://budurl.com/12948234 | grep Location | awk '{print $2}'
gahooa
2009-07-15 23:23:09
That is the bit.ly API... How is it going to help with all the other short URL services?
gahooa
2009-07-15 23:27:22
He specifically asked for APIs'.
Sani Huttunen
2009-07-15 23:31:29
+2
A:
99% of all url openers have an API.
For example, there's a PEAR package (PHP) called Services_ShortURL that supports:
- bit.ly
- digg
- is.gd
- short.ie
- tr.im
- tinyurl.com
Till
2009-07-16 00:08:43