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?

link|improve this question
possible duplicate of stackoverflow.com/questions/902192/… – Dennis Palmer Jul 15 '09 at 23:23
feedback

6 Answers

Not really an API, but this will give you the URL really fast.

curl -I http://budurl.com/12948234 | grep Location | awk '{print $2}'

link|improve this answer
feedback

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
  • tinyurl.com
link|improve this answer
feedback

There are a few web-sites around that are dedicated services to converting shortened URLs back to their original.

Two I know of that have APIs are LongURL and Untiny.me. I'm in the middle of writing a java library to use both of these.

link|improve this answer
feedback

I had written a small script to turn short urls to it's original links. It's based on the http header returned by the short urls.

link|improve this answer
feedback

Have a look at bit.ly API or budurl.com API

link|improve this answer
That is the bit.ly API... How is it going to help with all the other short URL services? – gahooa Jul 15 '09 at 23:27
He specifically asked for APIs'. – Sani Huttunen Jul 15 '09 at 23:31
feedback

From Untiny.me's online service, this was useful: http://untiny.me/api/1.0/extract/?format=text&url=bit.ly/GFscreener12

So conceivably a simple Bash script reading each line as a short URL would work:

#!/bin/bash
# urlexpander.sh by MarcosK
 while read URLline; do
  curl -s "untiny.me/api/1.0/extract/?format=text&url=$URLline"
 done

To test, feed it a single URL with echo "bit.ly/GFscreener12" | ./urlexpander.sh or send it your whole input file, one short URL per line, with:

cat urllist.txt | ./urlexpander.sh
link|improve this answer
However for my own code I actually like gahooa's method better because it doesn't need to check a 3rd party service nor make an extra web fetch, and most importantly, works equally well with standard URLs not just short--returning them unchanged. So change the curl line inside the while loop to curl -sI "$URLline" | grep Location | awk '{print $2}' – Marcos Feb 17 at 22:01
feedback

Your Answer

 
or
required, but never shown