API Documentation

threads/listSimilar Beta

This method is currently under development and subject to change.

Returns a list of similar threads based on user activity.

URL

https://disqus.com/api/3.0/threads/listSimilar.json

Accessibility

public key, secret key

Supported request methods

GET

Supported formats

json, jsonp, rss

Requires authentication

no

Rate limited

inherits global rate limit

Arguments

Required

  • thread

    Looks up a thread by ID
    You may pass use the 'ident' or 'link' query types instead of an ID by including 'forum'.

Optional

  • on allows multiple

    Defaults to null

    Looks up a forum by ID (aka short name)

  • forum

    Defaults to null

    Looks up a forum by ID (aka short name)

  • related allows multiple

    Defaults to []

    You may specify relations to include with your response.
    Choices: forum, author, category

  • limit

    Defaults to 10

    Maximum value of 100

Example Responses

Expand json

GET thread=1

{
  "code": 0,
  "response": []
}
Expand json

GET on=bobross&thread=1

{
  "code": 0,
  "response": []
}
Expand json

GET thread:ident=my-identifier&forum=bobross

{
  "code": 0,
  "response": []
}