# Reddit API — no account, pay per call

> Search posts, subreddits, and users; pull hot/new/top/best feeds, comment trees, and user history. 15 GET endpoints, $0.002 per call in USDC on Base, Polygon, Arbitrum, Monad or Solana. No account, no OAuth — pay with x402 or a prepaid credit key.

- This host: https://reddit.fetcher.sh
- Catalog: https://reddit.fetcher.sh/llms.txt
- Agent setup: https://reddit.fetcher.sh/skill.md
- Directory: https://fetcher.sh/index.md


Also covers: subreddits

## Quick start

```bash
curl -H 'Authorization: Bearer bby_live_...' \
  'https://reddit.fetcher.sh/api/search/post'
```

```bash
# call without payment to inspect the 402 challenge
curl -i 'https://reddit.fetcher.sh/api/search/post'
# HTTP/1.1 402 Payment Required
# payment-required: <base64 payment requirements>
```

## Endpoints

- [Post](https://reddit.fetcher.sh/post.md) — GET /api/post/{id} — $0.002
- [Post comments](https://reddit.fetcher.sh/post-comments.md) — GET /api/post/{id}/comments — $0.002
- [Post comments replies](https://reddit.fetcher.sh/post-comments-replies.md) — GET /api/post/{id}/comments/{commentId}/replies — $0.002
- [Posts best](https://reddit.fetcher.sh/posts-best.md) — GET /api/posts/best — $0.002
- [Posts hot](https://reddit.fetcher.sh/posts-hot.md) — GET /api/posts/hot — $0.002
- [Posts new](https://reddit.fetcher.sh/posts-new.md) — GET /api/posts/new — $0.002
- [Posts top](https://reddit.fetcher.sh/posts-top.md) — GET /api/posts/top — $0.002
- [Search post](https://reddit.fetcher.sh/search-post.md) — GET /api/search/post — $0.002
- [Search subreddit](https://reddit.fetcher.sh/search-subreddit.md) — GET /api/search/subreddit — $0.002
- [Search user](https://reddit.fetcher.sh/search-user.md) — GET /api/search/user — $0.002
- [Subreddit](https://reddit.fetcher.sh/subreddit.md) — GET /api/subreddit/{name} — $0.002
- [Subreddit posts](https://reddit.fetcher.sh/subreddit-posts.md) — GET /api/subreddit/{name}/posts — $0.002
- [User](https://reddit.fetcher.sh/user.md) — GET /api/user/{username} — $0.002
- [User comments](https://reddit.fetcher.sh/user-comments.md) — GET /api/user/{username}/comments — $0.002
- [User posts](https://reddit.fetcher.sh/user-posts.md) — GET /api/user/{username}/posts — $0.002
