26 platforms, inside your AI
Zomler

API · Reddit

[ docs ]Social

Reddit

Measured Reddit data, one operation per call. The POST is the entity: score, upvote ratio, comment count, kind and permalink on every row. There is no profile card — Reddit publishes none we can measure. ops: posts (one user's recent submissions — u/name or a profile URL), subreddit (a subreddit's listing under one sort: hot | newest | top | rising; `postedWithin` applies to top only), comments (top comments on up to ten posts, by permalink or bare id), search (posts across Reddit matching a keyword — what Reddit is saying about something; sorts relevance | hot | top | newest | most_commented), history (stored score / comment-count series of posts already held, free). Ops are independent — issue several as PARALLEL tool calls. Fresh fetches cost credits; anything already held is free.

POST https://api.zomler.com/api/v1/platforms/reddit

posts

from 25 credits for 10 · fresh for 1 day

One user's recent submissions — score, comment count, upvote ratio and the kind of each post.

Request fields

FieldTypeDefaultValues / limits
subjectrequiredstring≤400 chars
limitinteger101-50

Example

curl
curl -X POST https://api.zomler.com/api/v1/platforms/reddit \
  -H "X-API-Key: zk_live_…" \
  -H "Content-Type: application/json" \
  -d '{
  "request": {
    "op": "posts",
    "subject": "example"
  },
  "estimateOnly": false
}'

subreddit

from 25 credits for 10

A subreddit's listing under one sort. `postedWithin` applies to `top` only — Reddit ignores it for every other sort.

Request fields

FieldTypeDefaultValues / limits
subjectrequiredstring≤400 chars
sortenumhothotnewesttoprising
postedWithinenum7d1h1d7d30d1yany
limitinteger101-50

Example

curl
curl -X POST https://api.zomler.com/api/v1/platforms/reddit \
  -H "X-API-Key: zk_live_…" \
  -H "Content-Type: application/json" \
  -d '{
  "request": {
    "op": "subreddit",
    "subject": "example"
  },
  "estimateOnly": false
}'

comments

from 3 credits for 25 · fresh for 1 day

Top comments on up to ten POSTS, by permalink or bare post id. Commenters are free text — not corpus members.

Request fields

FieldTypeDefaultValues / limits
subjectsrequiredlist of string1-10 items
limitinteger251-100

Example

curl
curl -X POST https://api.zomler.com/api/v1/platforms/reddit \
  -H "X-API-Key: zk_live_…" \
  -H "Content-Type: application/json" \
  -d '{
  "request": {
    "op": "comments",
    "subjects": [
      "example"
    ]
  },
  "estimateOnly": false
}'

history

free · reads what is held

The stored score / comment-count series of up to ten posts — free, reads only what captures already wrote.

Request fields

FieldTypeDefaultValues / limits
subjectsrequiredlist of string1-10 items
metricenumscorescorecomments_count
daysinteger901-730

Example

curl
curl -X POST https://api.zomler.com/api/v1/platforms/reddit \
  -H "X-API-Key: zk_live_…" \
  -H "Content-Type: application/json" \
  -d '{
  "request": {
    "op": "history",
    "subjects": [
      "example"
    ]
  },
  "estimateOnly": false
}'