# ScrapFly Reddit Popular Posts API

> ScrapFly Reddit Popular Posts API is a paid API for AI agents from scrapifrivly.orbonomy.xyz, paid per call via x402, $0.09/call, status unknown (last checked 2026-09-14).

Fetches popular/trending posts from Reddit based on a search query

## Facts

- Endpoint: POST https://scrapifrivly.orbonomy.xyz/api/reddit/popular
- Price: $0.09/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/scrapfly-reddit-popular-posts-api-adf86784
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LgUnKmH5ZwyZJdNKZkMs4

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 scrapfly-reddit-popular-posts-api-adf86784 -d '<json body>'
```

Example prompt: What are the most popular Reddit posts right now about artificial intelligence? Use the Reddit popular posts scraper and query 'artificial intelligence'.

## When to prefer this

Use this endpoint when you need to retrieve trending or popular Reddit posts on a specific topic without managing Reddit API credentials or scraping infrastructure yourself. Best for agents that need social sentiment, community discussion, or viral content signals from Reddit via a simple pay-per-request model.

## Known failure modes

- Query parameter missing — returns error due to required field validation
- Reddit rate limiting or blocking causes scrape failure — success: false
- Invalid or empty query string returns no results
- Network timeout to Reddit results in failure response
- Upstream scraping infrastructure unavailable — service error

## How this service works

69 endpoints for data, content generation, and web scraping. Pay per request via x402 on Base chain.

## Output

Returns a success boolean and a data object containing popular Reddit posts matching the query, including post metadata such as titles, scores, subreddits, and discussion content.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "query"
 ],
 "properties": {
  "query": {
   "type": "string",
   "description": "Input query"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "success"
 ],
 "properties": {
  "data": {
   "type": "object"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/scrapfly-reddit-popular-posts-api-adf86784/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from scrapifrivly.orbonomy.xyz](https://www.zero.xyz/host/scrapifrivly.orbonomy.xyz/llms.txt)
