API Documentation

threads/details

Returns thread details.

URL

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

Accessibility

public key, secret key

Supported request methods

GET

Supported formats

json, jsonp

Requires authentication

no

Rate limited

inherits global rate limit

Arguments

Required

  • thread

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

Optional

  • 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

  • attach allows multiple

    Defaults to []

    Choices: topics

Example Responses

Expand json

GET thread=1

{
  "code":0,
  "response":{
    "category":"1",
    "reactions":0,
    "identifiers":[
      "my-identifier"
    ],
    "forum":"bobross",
    "title":"Happy Accidents",
    "dislikes":0,
    "isDeleted":false,
    "author":"1",
    "userScore":0,
    "id":"1",
    "isClosed":false,
    "posts":70,
    "link":null,
    "likes":0,
    "message":"\"If you've painted before you know that we don't make mistakes -- we have happy accidents.\"",
    "ipAddress":"127.0.0.1",
    "slug":"happy_accidents",
    "createdAt":"2008-06-10T01:31:43"
  }
}
Expand json

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

{
  "code":0,
  "response":{
    "category":"1",
    "reactions":0,
    "identifiers":[
      "my-identifier"
    ],
    "forum":"bobross",
    "title":"Happy Accidents",
    "dislikes":0,
    "isDeleted":false,
    "author":"1",
    "userScore":0,
    "id":"1",
    "isClosed":false,
    "posts":73,
    "link":null,
    "likes":0,
    "message":"\"If you've painted before you know that we don't make mistakes -- we have happy accidents.\"",
    "ipAddress":"127.0.0.1",
    "slug":"happy_accidents",
    "createdAt":"2008-06-10T01:31:43"
  }
}