KonbiniAPI

Get subreddits in batch from Reddit with KonbiniAPI

Returns up to 100 Reddit subreddits by ID in a single request. Costs 1 credit per ID submitted.

This API endpoint returns up to 100 Reddit subreddits by ID in a single request. Costs 1 credit per ID submitted.

Perfect for

  • Bulk-enrich subreddit metadata for research dashboards
  • Compare community sizes and activity across dozens of subreddits
  • Seed a database with subreddit profiles in a single API call

1. Make the request

const response = await fetch("https://api.konbiniapi.com/v1/reddit/subreddits/batch", {
  headers: { "Authorization": "Bearer YOUR_API_KEY" }
});

const data = await response.json();

2. Get clean JSON

Response (200 OK)
{
  "data": {
    "type": "OrderedCollectionPage",
    "itemCount": 2,
    "items": [
      {
        "type": "Group",
        "name": "programming",
        "memberCount": 5000000,
        "slug": "programming"
      },
      {
        "type": "Group",
        "name": "javascript",
        "memberCount": 2000000,
        "slug": "javascript"
      }
    ]
  }
}