# Subreddit Rising Posts API for One Community

**Use case:** 

Catch threads while they climb: the rising feed of one subreddit as 43-field rows with score, author and permalink each.

## Input

```json
{
  "community": "programming",
  "sort_by": "rising",
  "max_posts": 4,
  "max_comments": 0
}
```

## Output

```json
{
  "subreddit": {
    "label": "Subreddit",
    "format": "string"
  },
  "subreddit_id": {
    "label": "Subreddit ID",
    "format": "string"
  },
  "subreddit_type": {
    "label": "Subreddit Type",
    "format": "string"
  },
  "subreddit_subscribers": {
    "label": "Subscribers",
    "format": "integer"
  },
  "id": {
    "label": "Post ID",
    "format": "string"
  },
  "author": {
    "label": "Author",
    "format": "string"
  },
  "author_id": {
    "label": "Author ID",
    "format": "string"
  },
  "author_flair": {
    "label": "Author Flair",
    "format": "string"
  },
  "created": {
    "label": "Created",
    "format": "string"
  },
  "edited": {
    "label": "Edited",
    "format": "string"
  },
  "url": {
    "label": "Link",
    "format": "string"
  },
  "flair_text": {
    "label": "Flair",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "body": {
    "label": "Body",
    "format": "string"
  },
  "score": {
    "label": "Score",
    "format": "integer"
  },
  "score_hidden": {
    "label": "Score Hidden",
    "format": "boolean"
  },
  "upvote_ratio": {
    "label": "Upvote Ratio",
    "format": "number"
  },
  "comment_count": {
    "label": "Comment Count",
    "format": "integer"
  },
  "crossposts": {
    "label": "Crossposts",
    "format": "integer"
  },
  "crosspost_id": {
    "label": "Crosspost Source ID",
    "format": "string"
  },
  "crosspost_url": {
    "label": "Crosspost Source URL",
    "format": "string"
  },
  "archived": {
    "label": "Archived",
    "format": "boolean"
  },
  "locked": {
    "label": "Locked",
    "format": "boolean"
  },
  "stickied": {
    "label": "Stickied",
    "format": "boolean"
  },
  "pinned": {
    "label": "Pinned",
    "format": "boolean"
  },
  "over_18": {
    "label": "NSFW",
    "format": "boolean"
  },
  "spoiler": {
    "label": "Spoiler",
    "format": "boolean"
  },
  "original": {
    "label": "Original Content",
    "format": "boolean"
  },
  "advertising": {
    "label": "Advertising",
    "format": "boolean"
  },
  "indexable": {
    "label": "Indexable",
    "format": "boolean"
  },
  "crosspostable": {
    "label": "Crosspostable",
    "format": "boolean"
  },
  "removed_by": {
    "label": "Removed By",
    "format": "string"
  },
  "gilded": {
    "label": "Gilded",
    "format": "integer"
  },
  "categories": {
    "label": "Content Categories",
    "format": "array"
  },
  "media_type": {
    "label": "Media Type",
    "format": "string"
  },
  "domain": {
    "label": "Domain",
    "format": "string"
  },
  "thumbnail": {
    "label": "Thumbnail",
    "format": "string"
  },
  "images": {
    "label": "Images",
    "format": "array"
  },
  "gallery": {
    "label": "Gallery",
    "format": "array"
  },
  "media_url": {
    "label": "Linked Content URL",
    "format": "string"
  },
  "video_url": {
    "label": "Video URL",
    "format": "string"
  },
  "video_duration": {
    "label": "Video Duration",
    "format": "integer"
  },
  "poll": {
    "label": "Poll",
    "format": "object"
  },
  "is_self": {
    "label": "Is Self",
    "format": "boolean"
  },
  "is_video": {
    "label": "Is Video",
    "format": "boolean"
  },
  "is_gallery": {
    "label": "Is Gallery",
    "format": "boolean"
  },
  "distinguished": {
    "label": "Distinguished",
    "format": "string"
  },
  "no_follow": {
    "label": "No Follow",
    "format": "boolean"
  },
  "ad_whitelist": {
    "label": "Ad Whitelist",
    "format": "integer"
  },
  "duplicates": {
    "label": "Duplicates",
    "format": "array"
  },
  "comments": {
    "label": "Comments",
    "format": "array"
  },
  "processor": {
    "label": "Processor",
    "format": "string"
  },
  "processed_at": {
    "label": "Processed At",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Subreddit Posts Scraper](https://apify.com/agentx/subreddit-posts-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/agentx/subreddit-posts-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/agentx/subreddit-posts-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).
