KonbiniAPI

Search posts from Reddit with KonbiniAPI

Returns Reddit posts matching a search query across all subreddits. Supports sorting by relevance, top, new, and time filters.

This API endpoint returns Reddit posts matching a search query across all subreddits. Supports sorting by relevance, top, new, and time filters.

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"
      }
    ]
  }
}