Hunch Search

get-similar-results

get-similar-results returns the most similar results to a given result, within a set of results restricted by topic, site, result id, or location. (view in console)

Response Structure

A successful response has the form:

{ "ok": true, "results": [results] }

results are ordered by score, and each has the form:

{ "score": number, "result_id": id, "name": string, "url": url, "image_url": url }



get-topics

get-topics returns information about topics and their subtopics. (view in console)

Response Structure

A successful response has the form:

{ "ok": true, "topics": [topics] }

Each topic has the form:

{ "topic_id": id, "name": string, "subtopics": [topics], ... }

Topics may also have other fields, such as tags, url, and more.




get-result-topics

get-result-topics searches within the same set of possible results as get-results, returning all topics containing those results. (view in console)

Response Structure

A successful response has the form:

{ "ok": true, "topics": [topics] }

Each topic has the form:

{ "topic_id": id, "name": string, ... }

Topics may also have other fields, such as tags, url, and more.