4chan · JSON Structure

4Chan Api Threadlist Entry Structure

Compact thread summary used in the per-board threadlist.

Type: object Properties: 3 Required: 3
SocialBulletin BoardImageboardRead OnlyJSONPublic APIsCommunity

ThreadlistEntry is a JSON Structure definition published by 4chan, describing 3 properties, of which 3 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

no last_modified replies

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/4chan/refs/heads/main/json-structure/4chan-api-threadlist-entry-structure.json",
  "name": "ThreadlistEntry",
  "description": "Compact thread summary used in the per-board threadlist.",
  "type": "object",
  "properties": {
    "no": {
      "type": "int32",
      "description": "Thread OP ID.",
      "example": 570368
    },
    "last_modified": {
      "type": "int32",
      "description": "UNIX timestamp the thread was last modified.",
      "example": 1546294897
    },
    "replies": {
      "type": "int32",
      "description": "Number of replies in the thread.",
      "example": 2
    }
  },
  "required": [
    "no",
    "last_modified",
    "replies"
  ]
}