del.icio.usユーザのタグリストをJSONで呼び出し

JSONによるフィードの呼び出し方はヘルプに書いてあるけど、タグリストについてはなんとなくオフィシャルではないっぽい。

http://del.icio.us/feeds/json/tags/stomita

(stomitaはdel.icio.us id)

で、ユーザのタグリストがJSON形式で取り出せる。
もちろんcallbackにも対応。

http://del.icio.us/feeds/json/tags/stomita?callback=handleTags

返ってくる値(改行整形済み)

handleTags({
  "ajax":17,
  "amazon":4,
  "api":13,
  "appliance":1,
  ....
})

(追記)

あるタグで絞り込んでタグリストを取得する場合は、さらにそのタグ名をくっつける

例)
http://del.icio.us/feeds/json/tags/stomita/javascript

またパラメータとして、sortおよびcountが指定できる
sort=freq|alpha(alphaがデフォルト)
count=return_num

例)
http://del.icio.us/feeds/json/tags/stomita?sort=freq&count=10

元ネタ:
http://blogfresh.blogspot.com/2006/01/freshtags-v-05.html#c114113063781958585