/v1/subreddit/about
Subreddit info
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/reddit-api/v1/subreddit/about" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/reddit-api/v1/subreddit/about", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/reddit-api/v1/subreddit/about");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/reddit-api/v1/subreddit/about",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"url": "https://www.reddit.com/r/programming/",
"icon": "https://styles.redditmedia.com/t5_2fwo/styles/communityIcon_1bqa1ibfp8q11.png?width=256&s=45361614cdf4a306d5510b414d18c02603c7dd3c",
"lang": "en",
"name": "programming",
"type": "public",
"title": "programming",
"banner": null,
"over18": false,
"created_utc": 1141150769,
"description": "Computer Programming",
"subscribers": 6885468
},
"meta": {
"timestamp": "2026-06-07T16:48:51.965Z",
"request_id": "6cfed35f-7695-4683-80f5-3d04d582c0bf"
},
"status": "ok",
"message": "Subreddit info retrieved successfully",
"success": true
}