KonbiniAPI

Search users — Reddit API

Searches public Reddit users across the platform.

GET/v1/reddit/search/users1 credit per request
Example response200OK
{
  "data": {
    "type": "OrderedCollectionPage",
    "itemCount": 10,
    "orderedItems": [
      {
        "type": "Person",
        "preferredUsername": "spez",
        "name": "Steve Huffman",
        "score": 999999
      }
    ]
  }
}

Make the request.

One authenticated GET to /v1/reddit/search/users. Authentication and error conventions stay consistent across endpoints. This page shows the path, parameters, response shape, limits, and credit rule for this operation.

Built for

  • Discover community contributors by topic or keyword
  • Identify subject matter experts on Reddit
  • Research accounts for community management workflows
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();
Parameters3
  • qrequiredIn · QueryType · stringSearch query
  • countIn · QueryType · integerNumber of users to fetch (maximum: 100)1–100default 25
  • cursorIn · QueryType · stringPagination cursor

Try it on your own data.

Get a free API key and make this request in minutes. Failed and timed-out requests are automatically refunded.