Delicious Feeds
I have bunch of bookmarks in delicious. Thanks to my irc botLOL. Check them out:
curl -s "http://feeds.delicious.com/v2/rss/methuselar?count=5"
more friendly by python
curl -s "http://feeds.delicious.com/v2/json/methuselar?count=5" | python -m json.tool | less -R
So the many feeds Delicious provides
One can save all his BMs to local:
curl -u 'username' https://api.del.icio.us/v1/posts/all | sed 's/^.*href=//g;s/>.*$//g;s/"//g' | awk '{print $1}' | grep 'http' > bookmarks.txt
Note taken from delicious
Feeds at del.icio.us all share the following base URL prefix:
* http://feeds.delicious.com/v2/{format}/
The placeholder {format} specifies the output format for the feed, which currently includes the values rss and json.
All feed formats accept the following query-string parameters:
- ?count={1..100} = Limit the results to the given number, between 1 and 100 (default 15)
For RSS format feeds, Delicious performs user-agent detection and, for certain news readers, includes enhanced HTML content in items while minimizing the amount of machine-readable metadata. This feature can be intentionally switched on or disabled with the following URL query-string parameters:
- ?plain = Disable enhanced item HTML content.
- ?fancy = Enable enhanced item HTML content.
To help enable JSON-based mashups, there are a few URL query-string parameters to tweak the JSON output:
- ?callback={js call} = Allows the inclusion of a wrapper function call around the JSON data. The value is filtered by a whitelist consisting of these characters:
0-9 a-z A-Z ()[],._-+=/|\~?!#$^*: '"
The following feed URL patterns use these placeholders:
- {format} = replaced with either “rss” or “json”
- {username} = replaced with a user's login name on delicious
- {tag[+tag+…+tag]} = replaced with a tag or an intersection of tags.
- {url md5} = is intended for the MD5 hash of a URL
- {key} = a security key for the feed, which can be found via the page associated with the feed (eg. inbox, network or bookmarks). Allows visibilty to otherwise private data.
And, finally, here are URL patterns for feeds at Delicious:
- Bookmarks from the hotlist:
- http://feeds.delicious.com/v2/{format}
- Recent bookmarks:
- http://feeds.delicious.com/v2/{format}/recent
- Recent bookmarks by tag:
- http://feeds.delicious.com/v2/{format}/tag/{tag[+tag+…+tag]}
- Popular bookmarks:
- http://feeds.delicious.com/v2/{format}/popular
- Popular bookmarks by tag:
- http://feeds.delicious.com/v2/{format}/popular/{tag}
- Recent site alerts (as seen in the top-of-page alert bar on the site):
- http://feeds.delicious.com/v2/{format}/alerts
- Bookmarks for a specific user:
- http://feeds.delicious.com/v2/{format}/{username}
- Private bookmarks for a specific user:
- http://feeds.delicious.com/v2/{format}/{username}?private={key}
- Bookmarks for a specific user by tag(s):
- http://feeds.delicious.com/v2/{format}/{username}/{tag[+tag+…+tag]}
- Private bookmarks for a specific user by tag(s):
- http://feeds.delicious.com/v2/{format}/{username}/{tag[+tag+…+tag]}?private={key}
- Public summary information about a user (as seen in the network badge):
- http://feeds.delicious.com/v2/{format}/userinfo/{username}
- A list of all public tags for a user:
- http://feeds.delicious.com/v2/{format}/tags/{username}
- A list of related public tags for a user tag comination:
- http://feeds.delicious.com/v2/{format}/tags/{username}/{tag[+tag+…+tag]}
- Bookmarks from a user's subscriptions:
- http://feeds.delicious.com/v2/{format}/subscriptions/{username}
- Private feed for a user's inbox bookmarks from others:
- http://feeds.delicious.com/v2/{format}/inbox/{username}?private={key}
- Bookmarks from members of a user's network:
- http://feeds.delicious.com/v2/{format}/network/{username}
- Bookmarks from members of a user's private network:
- http://feeds.delicious.com/v2/{format}/network/{username}?private={key}
- Bookmarks from members of a user's network by tag:
- http://feeds.delicious.com/v2/{format}/network/{username}/{tag[+tag+…+tag]}
- Bookmarks from members of a user's private network by tag:
- http://feeds.delicious.com/v2/{format}/network/{username}/{tag[+tag+…+tag]}?private={key}
- A list of a user's network members:
- http://feeds.delicious.com/v2/{format}/networkmembers/{username}
- A list of a user's network fans:
- http://feeds.delicious.com/v2/{format}/networkfans/{username}
- Recent bookmarks for a URL:
- http://feeds.delicious.com/v2/{format}/url/{url md5}
- Summary information about a URL (as seen in the tagometer):

Discussion