Skip to main content
GET
/
subreddit
Get Subreddit
curl --request GET \
  --url https://api.zilodata.com/api/v1/reddit/subreddit \
  --header 'Authorization: Bearer <token>'
{
  "name": "science",
  "title": "Science",
  "description": "All about science",
  "subscriberCount": 25000000,
  "activeUserCount": 125000,
  "createdAt": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

subreddit
string
required

Subreddit name (without r/)

Response

Successful response

name
string
Example:

"science"

title
string
Example:

"Science"

description
string
Example:

"All about science"

subscriberCount
integer
Example:

25000000

activeUserCount
integer
Example:

125000

createdAt
string<date-time>