4chan · Schema

Cooldowns

Per-board cooldown intervals (in seconds) between successive posts of each type.

SocialBulletin BoardImageboardRead OnlyJSONPublic APIsCommunity

Properties

Name Type Description
threads integer Minimum seconds between consecutive thread creations from the same poster.
replies integer Minimum seconds between consecutive replies from the same poster.
images integer Minimum seconds between consecutive image posts from the same poster.
View JSON Schema on GitHub

JSON Schema

4chan-api-cooldowns-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Cooldowns",
  "description": "Per-board cooldown intervals (in seconds) between successive posts of each type.",
  "$id": "https://raw.githubusercontent.com/api-evangelist/4chan/refs/heads/main/json-schema/4chan-api-cooldowns-schema.json",
  "properties": {
    "threads": {
      "type": "integer",
      "description": "Minimum seconds between consecutive thread creations from the same poster.",
      "example": 600
    },
    "replies": {
      "type": "integer",
      "description": "Minimum seconds between consecutive replies from the same poster.",
      "example": 60
    },
    "images": {
      "type": "integer",
      "description": "Minimum seconds between consecutive image posts from the same poster.",
      "example": 60
    }
  },
  "type": "object"
}