# Orthogonal Reddit Subreddit Posts

> Orthogonal Reddit Subreddit Posts is a paid API for AI agents from x402.orthogonal.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Fetches paginated posts from a specified Reddit subreddit with optional sorting and timeframe filtering, with smart billing that charges only for the first page of a logical search.

## Facts

- Endpoint: GET https://x402.orthogonal.com/scrapecreators/v1/reddit/subreddit
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orthogonal-reddit-subreddit-posts-b46668ab
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HH_TyVveQA86Tk8sknrFW

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability orthogonal-reddit-subreddit-posts-b46668ab
```

Example prompt: Pull the top posts from r/MachineLearning this week — sort by top with a weekly timeframe — and give me a trimmed summary of what's trending.

## When to prefer this

Use this endpoint when you need to browse or monitor Reddit subreddit posts at scale with cost-efficient pagination — particularly valuable when you need multiple pages of results, since only the first page is billed. Prefer this over general web scraping when you want structured Reddit post data with sorting and timeframe controls.

## Known failure modes

- Invalid or private subreddit name returns empty results or error
- Case-sensitive subreddit mismatch causes no results
- Changing filter parameters while passing parentRequestId starts a new billable request
- Expired or invalid pagination cursor breaks continuation
- Rate limiting or Reddit access restrictions may return errors

## How this service works

Subreddit Posts Pagination billing: call the first page normally and save billing.requestId from the Orthogonal /v1/run response. For later page, offset, or cursor calls on the same logical search, pass parentRequestId with unchanged non-pagination parameters. Valid continuation calls still get their own request IDs and quoted price, but are charged 0. Changing filters starts a new billable request.

## Output

Returns a list of posts from the specified subreddit including post titles, content, metadata (author, score, comments, timestamps), and a pagination cursor for subsequent pages. Also includes a billing requestId to use as parentRequestId for free continuation pages.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "sort": {
       "type": "string",
       "description": "Sort order"
      },
      "trim": {
       "type": "string",
       "description": "Set to true for a trimmed response"
      },
      "after": {
       "type": "string",
       "description": "Cursor for pagination For later pages of the same logical search, keep non-pagination parameters unchanged and pass top-level parentRequestId from the first Orthogonal /v1/run response."
      },
      "subreddit": {
       "type": "string",
       "description": "Subreddit name (case sensitive)"
      },
      "timeframe": {
       "type": "string",
       "description": "Timeframe filter"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/orthogonal-reddit-subreddit-posts-b46668ab/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.orthogonal.com](https://www.zero.xyz/host/x402.orthogonal.com/llms.txt)
