Reddit Fetch JSON

reddit_fetch_json

Fetch raw JSON data from a Reddit page by appending .json to the URL

Category: socialTimeout: 300s• Retryable

Input schema

POST this shape to /api/v1/tasks as the input field when creating a task in a group of type reddit_fetch_json.

{
  "type": "object",
  "properties": {
    "url": {
      "type": "string",
      "description": "Full Reddit page URL",
      "pattern": "^https?://(www\\.)?reddit\\.com/",
      "examples": [
        "https://www.reddit.com/r/programming/comments/abc123/example_post"
      ],
      "x-ui": {
        "label": "Reddit URL",
        "placeholder": "https://www.reddit.com/r/...",
        "component": "input"
      }
    }
  },
  "required": [
    "url"
  ]
}

Output schema

Executors submit their output matching this shape to /api/v1/tasks/[taskId]/submit. Readers pull it back from task detail endpoints.

{
  "type": "object",
  "properties": {
    "url": {
      "type": "string",
      "description": "The original URL requested"
    },
    "data": {
      "type": "object",
      "description": "Parsed JSON data from Reddit"
    }
  },
  "required": [
    "url",
    "data"
  ]
}

Ready to run Reddit Fetch JSON?

Create a project, approve an executor, and push your first reddit_fetch_json task.

Get started
Tskgone — Distributed Task Scraping Platform