Reddit search scraper — keyword-search all of Reddit, or scope to one subreddit, for AI ag
Reddit search scraper — keyword-search all of Reddit, or scope to one subreddit, for AI agents. Find posts matching any query, sorted by relevance, top, new, hot, or comments, with an optional time window. Returns each post’s title, author, subreddit, score, comment count, permalink, external link + domain, flair, and timestamp. No login, no API key. Track brand mentions, monitor topics, and surface Reddit discussion for agents.
30000 (raw units)
price
11
calls / 30d
5
unique payers
2026-08-30
updated
Provider
reddit.apitoll.cloud · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x667cc5A90ffA911279a5FBE377c1018DDF45373B",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "30000",
"maxTimeoutSeconds": 150
},
{
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"payTo": "8ce9pCUe913hpaP4oheeMPJt2uRkWAq5FsuNU6zSvTkw",
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"amount": "30000",
"maxTimeoutSeconds": 150
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"q": "rust language",
"sort": "relevance"
},
"type": "http"
},
"output": {
"example": {
"asOf": "2026-07-15T12:00:00Z",
"count": 25,
"posts": [
{
"author": "rustacean",
"createdAt": "2026-07-14T18:02:00Z",
"fullId": "t3_def456",
"id": "def456",
"isNsfw": false,
"isSelf": true,
"numComments": 118,
"recordType": "post",
"score": 934,
"scrapedAt": "2026-07-15T12:00:00Z",
"subreddit": "rust",
"title": "Why Rust’s ownership model clicks after a month",
"url": "https://www.reddit.com/r/rust/comments/def456/why_rusts_ownership/"
}
],
"query": {
"q": "rust language",
"scoped": false
},
"sort": "relevance",
"source": {
"name": "Reddit",
"via": "Apify"
}
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {
"limit": {
"description": "Max posts to return (1-100).",
"maximum": 100,
"minimum": 1,
"type": "integer"
},
"q": {
"description": "Keyword or phrase to search. Wrap a multi-word phrase in double quotes for exact-match. Defaults to a demo query if omitted.",
"type": "string"
},
"sort": {
"description": "Result ranking. Use relevance or top for precision.",
"enum": [
"relevance",
"top",
"new",
"hot",
"comments"
],
"type": "string"
},
"subreddit": {
"description": "Optional — scope the search to this subreddit (r/ prefix optional). Omit for a sitewide search.",
"type": "string"
},
"time": {
"description": "Time window — applies to top.",
"enum": [
"hour",
"day",
"week",
"month",
"year",
"all"
],
"type": "string"
}
},
"required": [
"q"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"asOf": {
"type": "string"
},
"count": {
"type": "number"
},
"posts": {
"items": {
"properties": {
"author": {
"type": "string"
},
"createdAt": {
"type": "string"
},
"fullId": {
"type": "string"
},
"id": {
"type": "string"
},
"isNsfw": {
"type": "boolean"
},
"isSelf": {
"type": "boolean"
},
"numComments": {
"type": "number"
},
"recordType": {
"type": "string"
},
"score": {
"type": "number"
},
"scrapedAt": {
"type": "string"
},
"subreddit": {
"type": "string"
},
"title": {
"type": "string"
},
"url": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
},
"query": {
"properties": {
"q": {
"type": "string"
},
"scoped": {
"type": "boolean"
}
},
"type": "object"
},
"sort": {
"type": "string"
},
"source": {
"properties": {
"name": {
"type": "string"
},
"via": {
"type": "string"
}
},
"type": "object"
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://reddit.apitoll.cloud/v1/reddit/search" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://reddit.apitoll.cloud/v1/reddit/search");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://reddit.apitoll.cloud/v1/reddit/search")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/2812.json, and this resource appears in /discovery/resources and /discovery/search.