KonbiniAPI

Search users from Reddit with KonbiniAPI

Returns Reddit users matching a search query.

This API endpoint returns Reddit users matching a search query.

Perfect for

  • Discover community contributors by topic or keyword
  • Identify subject matter experts on Reddit
  • Research accounts for community management workflows

1. Make the request

const response = await fetch("https://api.konbiniapi.com/v1/reddit/search/users?q=developer", {
  headers: { "Authorization": "Bearer YOUR_API_KEY" }
});

const data = await response.json();

2. Get clean JSON

Response (200 OK)
{
  "data": {
    "type": "OrderedCollectionPage",
    "itemCount": 10,
    "orderedItems": [
      {
        "type": "Person",
        "preferredUsername": "spez",
        "name": "Steve Huffman",
        "score": 999999
      }
    ]
  }
}