# ScrapFly Reddit Popular Posts API

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

Fetches popular/trending posts from Reddit based on a query

## Facts

- Endpoint: POST https://test-scrapfly.orbonomy.xyz/api/reddit/popular
- Price: $0.03/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-c1ff954f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_MMLPuVdkDTOwTkpwrX9Rq

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-c1ff954f -d '<json body>'
```

Example prompt: Can you pull the popular Reddit posts about 'electric vehicles' right now so I can see what the community is buzzing about?

## When to prefer this

Use this endpoint when you need to discover trending or popular Reddit posts for a given topic or keyword, especially when you want community sentiment, viral discussions, or social proof data from Reddit without managing your own scraping infrastructure. Prefer this over general web scraping endpoints when Reddit is the specific target source.

## Known failure modes

- Query parameter missing — returns validation error
- Reddit rate limiting or blocking causes scrape failure
- No popular posts found for the given query — empty data object
- Network timeout reaching Reddit — success: false
- Invalid or overly broad query returns irrelevant results

## 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 flag and a data object containing popular Reddit posts matching the query, including post content, metadata, and engagement signals scraped from Reddit.

## 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-c1ff954f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from test-scrapfly.orbonomy.xyz](https://www.zero.xyz/host/test-scrapfly.orbonomy.xyz/llms.txt)
