# 👽 Reddit Scraper — Posts, Comments, Users & Subreddits

**Use case:** 

No-code, cheap Reddit API. Scrape Reddit posts, comments, users & subreddits: title, author, score, upvote ratio, karma, flair & awards — cheapest per item.

## Input

```json
{
  "subreddits": [
    "https://www.reddit.com/r/programming"
  ],
  "sort": "hot",
  "time": "all",
  "maxItems": 50,
  "includeComments": false,
  "maxComments": 100,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "type": {
    "label": "Type",
    "format": "text"
  },
  "id": {
    "label": "Id",
    "format": "text"
  },
  "fullId": {
    "label": "Full Id",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "author": {
    "label": "Author",
    "format": "text"
  },
  "authorFullId": {
    "label": "Author Full Id",
    "format": "text"
  },
  "subreddit": {
    "label": "Subreddit",
    "format": "text"
  },
  "subredditPrefixed": {
    "label": "Subreddit Prefixed",
    "format": "text"
  },
  "selftext": {
    "label": "Selftext",
    "format": "text"
  },
  "url": {
    "label": "Url",
    "format": "link"
  },
  "permalink": {
    "label": "Permalink",
    "format": "link"
  },
  "score": {
    "label": "Score",
    "format": "number"
  },
  "upvoteRatio": {
    "label": "Upvote Ratio",
    "format": "number"
  },
  "numComments": {
    "label": "Num Comments",
    "format": "number"
  },
  "createdUtc": {
    "label": "Created Utc",
    "format": "number"
  },
  "createdAt": {
    "label": "Created At",
    "format": "date"
  },
  "flair": {
    "label": "Flair",
    "format": "text"
  },
  "domain": {
    "label": "Domain",
    "format": "text"
  },
  "isSelf": {
    "label": "Is Self",
    "format": "boolean"
  },
  "isVideo": {
    "label": "Is Video",
    "format": "boolean"
  },
  "over18": {
    "label": "Over18",
    "format": "boolean"
  },
  "spoiler": {
    "label": "Spoiler",
    "format": "boolean"
  },
  "stickied": {
    "label": "Stickied",
    "format": "boolean"
  },
  "locked": {
    "label": "Locked",
    "format": "boolean"
  },
  "thumbnail": {
    "label": "Thumbnail",
    "format": "text"
  },
  "totalAwards": {
    "label": "Total Awards",
    "format": "number"
  },
  "numCrossposts": {
    "label": "Num Crossposts",
    "format": "number"
  },
  "images": {
    "label": "Images",
    "format": "text"
  },
  "comments": {
    "label": "Comments",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Reddit Scraper — Posts, Comments, Users & Subreddits](https://apify.com/hipersoft/reddit-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/hipersoft/reddit-scraper) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
This Task's input is already configured above — use it as-is rather than inventing a new one.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/hipersoft/reddit-scraper.md

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).
