FYI: The search only matches titles and usernames on submissions right now. Matches in other fields or in threads are ignored since the result page doesn't show them.
For anyone interested, this Ruby code will get you started hacking in the HNSearch API right away. Gets JSON response for @query and puts it into an array of submission hashes (@results):
2 comments
[ 3.6 ms ] story [ 13.7 ms ] threadrequire 'net/http'
require 'uri'
require 'json'
@query = “facebook”
url = "http://api.thriftdb.com/api.hnsearch.com/items/_search?q=#{C...
doc = Net::HTTP.get URI.parse(url)
jdoc = JSON.parse(doc)
jdoc["results"].each do |result_hash|
end