reddit
The deterministic read path for public Reddit data through UnifAPI. This is a
Data Skill: it does not run a marketing job on its own — it names the
concrete reddit/... operations, response shapes, and the real coverage limits
so any community-first workflow (social listening, voice-of-customer) reads from
one known, honest recipe instead of rediscovering the surface each time.
Read-only — eyes, not hands. It researches public Reddit data and returns
cited records; it never posts, comments, or votes, and UnifAPI never holds
Reddit credentials.
Use the unifapi skill for live evidence
Connect once through the shared unifapi skill (OAuth MCP), then call the
operations below. Reddit's public surface has no keyword search, so discovery
is seed-driven — say so in the output. Keep any billing metadata so the output
can state record cost.
Response contract
Single-entity endpoints return the object in data:
{
"request_id": "unif_...",
"data": {},
"billing": { "records_charged": 1, "balance_remaining": 99 }
}
List endpoints return an array in data plus pagination:
{
"request_id": "unif_...",
"data": [],
"pagination": { "has_more": false, "next_cursor": null },
"billing": { "records_charged": 1 }
}
When pagination.has_more is true, pass pagination.next_cursor as the next
request's cursor. Always preserve billing when reporting cost.
Core operations
| Need |
Operation |
| Subreddit profile + rules |
reddit/subreddits/{name} |
| Discover threads |
reddit/feed/popular · reddit/feed/news · reddit/feed/home |
| Trending searches |
reddit/trending-searches |
| Post by id |
reddit/posts/{id} |
| Comment tree on a thread |
reddit/posts/{id}/comments |
| User profile + karma |
reddit/users/{username} |
| User posts / comments |
reddit/users/{username}/posts · .../comments |
Need a field not listed here? Use the unifapi skill's get_operation to read
the exact schema before calling — but pick the operation from this table, don't
discover blind.
Workflow
The deterministic recipes. Pick the one that matches the job; each names exactly
what to call.
- Seed the communities. Reddit has no keyword search, so name the subreddits
the audience lives in and call
reddit/subreddits/{name} for
subscribers_count, active_count, is_nsfw, and the rules in
description.
- Discover threads. Scan
reddit/feed/popular, reddit/feed/news, and
reddit/feed/home, plus reddit/trending-searches, and keep the posts whose
subreddit field matches your seeds — that is how you find community threads
without a per-subreddit feed.
- Mine a thread. With a post id, call
reddit/posts/{id} for the post and
reddit/posts/{id}/comments for the comment tree; capture the upvoted
(score) verbatim language. Page via next_cursor.
- Track power users. Call
reddit/users/{username} for karma, then
.../posts and .../comments for what an active member contributes across
the niche.
- Flag outreach safety. Read each subreddit's rules from
description and
is_nsfw before suggesting any participation.
- Cite everything. Every quote ties back to its thread or comment; state
plainly that coverage is seed-driven, not exhaustive, and report
billing.records_charged.
Shape notes
RedditSubreddit — keyed by {name}. subscribers_count,
active_count, is_nsfw, description (carries rules), prefixed_name
(r/...).
RedditPost — title, url, text, created_at, subreddit,
is_stickied, is_locked, is_nsfw. Use the subreddit field to filter
feed results back to a community.
RedditComment — text, score (upvotes), author_name, is_locked.
RedditUser — name, karma_total, karma_from_posts,
karma_from_comments, is_verified, is_employee.
Gotchas
- No keyword search. You cannot query Reddit by term — discovery comes from
the global
feed/* endpoints, trending-searches, and the subreddits/users
you already name. Say so in the brief.
- No per-subreddit post feed.
reddit/subreddits/{name} returns the profile
and rules only; to read a community's threads, filter the global feeds by the
subreddit field, start from a known post id, or read active users' posts.
- A low balance can silently truncate list pages: check
billing.truncated_due_to_balance — when true the page is partial.
Output
Return the records the calling workflow needs, each cited to its thread or
comment, plus a one-line cost note (records_charged). When this skill is used
directly, a compact community brief is the default:
**r/{subreddit}** — {subscribers} subscribers, {active} active. Recurring questions: {themes}. Verbatim: "{quote}" ({score} upvotes). Outreach rules: {note}. Coverage: seed-driven. Evidence: {URLs}. Records: ~{N}.
Related skills
- reddit-community-research (Lead & Company Research) — turns this read path into a structured community map.
- social-listening-brief (Social Listening), customer-research — listening and voice-of-customer work on top of Reddit reads.
- unifapi — the shared data skill: connect MCP and look up exact schemas with
get_operation.
1---2name: reddit3description: When a workflow needs public Reddit data through UnifAPI — subreddit profiles and rules, thread comment trees, user activity and karma, the home/news/popular feeds, or trending searches. Also use on "research this subreddit," "what does r/... discuss," "pull this Reddit thread," "Reddit user activity," or when another skill (community research, social listening, customer research) needs the deterministic Reddit read path. Reddit has no keyword search — discovery is seed-driven. Connect via the `unifapi` skill first. Read-only research, never posts.4license: MIT5---6
7# reddit
8
9The deterministic read path for public **Reddit** data through UnifAPI. This is a
10**Data Skill**: it does not run a marketing job on its own — it names the
11concrete `reddit/...` operations, response shapes, and the real coverage limits
12so any community-first workflow (social listening, voice-of-customer) reads from
13one known, honest recipe instead of rediscovering the surface each time.
14
15Read-only — **eyes, not hands**. It researches public Reddit data and returns
16cited records; it never posts, comments, or votes, and UnifAPI never holds
17Reddit credentials.
18
19## Use the `unifapi` skill for live evidence
20
21Connect once through the shared **`unifapi`** skill (OAuth MCP), then call the
22operations below. Reddit's public surface has **no keyword search**, so discovery
23is seed-driven — say so in the output. Keep any `billing` metadata so the output
24can state record cost.
25
26## Response contract
27
28Single-entity endpoints return the object in `data`:
29
30```json
31{
32 "request_id": "unif_...",
33 "data": {},
34 "billing": { "records_charged": 1, "balance_remaining": 99 }
35}
36```
37
38List endpoints return an array in `data` plus `pagination`:
39
40```json
41{
42 "request_id": "unif_...",
43 "data": [],
44 "pagination": { "has_more": false, "next_cursor": null },
45 "billing": { "records_charged": 1 }
46}
47```
48
49When `pagination.has_more` is true, pass `pagination.next_cursor` as the next
50request's `cursor`. Always preserve `billing` when reporting cost.
51
52## Core operations
53
54| Need | Operation |
55| ------------------------- | --------------------------------------------------------------- |
56| Subreddit profile + rules | `reddit/subreddits/{name}` |
57| Discover threads | `reddit/feed/popular` · `reddit/feed/news` · `reddit/feed/home` |
58| Trending searches | `reddit/trending-searches` |
59| Post by id | `reddit/posts/{id}` |
60| Comment tree on a thread | `reddit/posts/{id}/comments` |
61| User profile + karma | `reddit/users/{username}` |
62| User posts / comments | `reddit/users/{username}/posts` · `.../comments` |
63
64Need a field not listed here? Use the `unifapi` skill's `get_operation` to read
65the exact schema before calling — but pick the operation from this table, don't
66discover blind.
67
68## Workflow
69
70The deterministic recipes. Pick the one that matches the job; each names exactly
71what to call.
72
731. **Seed the communities.** Reddit has no keyword search, so name the subreddits
74 the audience lives in and call `reddit/subreddits/{name}` for
75 `subscribers_count`, `active_count`, `is_nsfw`, and the rules in
76 `description`.
772. **Discover threads.** Scan `reddit/feed/popular`, `reddit/feed/news`, and
78 `reddit/feed/home`, plus `reddit/trending-searches`, and keep the posts whose
79 `subreddit` field matches your seeds — that is how you find community threads
80 without a per-subreddit feed.
813. **Mine a thread.** With a post id, call `reddit/posts/{id}` for the post and
82 `reddit/posts/{id}/comments` for the comment tree; capture the upvoted
83 (`score`) verbatim language. Page via `next_cursor`.
844. **Track power users.** Call `reddit/users/{username}` for karma, then
85 `.../posts` and `.../comments` for what an active member contributes across
86 the niche.
875. **Flag outreach safety.** Read each subreddit's rules from `description` and
88 `is_nsfw` before suggesting any participation.
896. **Cite everything.** Every quote ties back to its thread or comment; state
90 plainly that coverage is seed-driven, not exhaustive, and report
91 `billing.records_charged`.
92
93## Shape notes
94
95- **`RedditSubreddit`** — keyed by `{name}`. `subscribers_count`,
96 `active_count`, `is_nsfw`, `description` (carries rules), `prefixed_name`
97 (`r/...`).
98- **`RedditPost`** — `title`, `url`, `text`, `created_at`, `subreddit`,
99 `is_stickied`, `is_locked`, `is_nsfw`. Use the `subreddit` field to filter
100 feed results back to a community.
101- **`RedditComment`** — `text`, `score` (upvotes), `author_name`, `is_locked`.
102- **`RedditUser`** — `name`, `karma_total`, `karma_from_posts`,
103 `karma_from_comments`, `is_verified`, `is_employee`.
104
105## Gotchas
106
107- **No keyword search.** You cannot query Reddit by term — discovery comes from
108 the global `feed/*` endpoints, `trending-searches`, and the subreddits/users
109 you already name. Say so in the brief.
110- **No per-subreddit post feed.** `reddit/subreddits/{name}` returns the profile
111 and rules only; to read a community's threads, filter the global feeds by the
112 `subreddit` field, start from a known post id, or read active users' posts.
113- A low balance can silently truncate list pages: check
114 `billing.truncated_due_to_balance` — when true the page is partial.
115
116## Output
117
118Return the records the calling workflow needs, each cited to its thread or
119comment, plus a one-line cost note (`records_charged`). When this skill is used
120directly, a compact community brief is the default:
121
122```markdown
123**r/{subreddit}** — {subscribers} subscribers, {active} active. Recurring questions: {themes}. Verbatim: "{quote}" ({score} upvotes). Outreach rules: {note}. Coverage: seed-driven. Evidence: {URLs}. Records: ~{N}.
124```
125
126## Related skills
127
128- **reddit-community-research** (Lead & Company Research) — turns this read path into a structured community map.
129- **social-listening-brief** (Social Listening), **customer-research** — listening and voice-of-customer work on top of Reddit reads.
130- **unifapi** — the shared data skill: connect MCP and look up exact schemas with `get_operation`.