Search posts from Reddit with KonbiniAPI
Searches public Reddit posts across the platform. Supports relevance, hot, top, new, and comments sorting with optional time windows.
This API endpoint searches public Reddit posts across the platform. Supports relevance, hot, top, new, and comments sorting with optional time windows.
Perfect for
- Find posts mentioning a brand or product across Reddit
- Research discussions about any topic site-wide
- Lead generation and community prospecting
1. Make the request
const response = await fetch("https://api.konbiniapi.com/v1/reddit/search/posts?q=openai", {
headers: { "Authorization": "Bearer YOUR_API_KEY" }
});
const data = await response.json();
2. Get clean JSON
Response (200 OK)
{
"data": {
"type": "OrderedCollectionPage",
"totalItems": 8420,
"itemCount": 25,
"orderedItems": [
{
"type": "Note",
"name": "OpenAI released GPT-5",
"likeCount": 12000,
"published": "2026-05-01T10:00:00.000Z"
}
]
}
}