Skip to main content
GET
/
v1
/
reddit
/
fetch_community_highlights
cURL
curl --request GET \
  --url 'https://api.keyapi.ai/v1/reddit/fetch_community_highlights?subreddit_id=t5_2qh0u&need_format=false' \
  --header 'Authorization: Bearer <YOUR_API_KEY>'
import requests

response = requests.get(
'https://api.keyapi.ai/v1/reddit/fetch_community_highlights',
params={"subreddit_id": "t5_2qh0u", "need_format": "false"},
headers={'Authorization': 'Bearer <YOUR_API_KEY>'}
)
print(response.json())
const params = new URLSearchParams({"subreddit_id": "t5_2qh0u", "need_format": "false"});

const response = await fetch(`https://api.keyapi.ai/v1/reddit/fetch_community_highlights?${params}`, {
method: 'GET',
headers: { 'Authorization': 'Bearer <YOUR_API_KEY>' }
});
const data = await response.json();
console.log(data);
{
  "code": 0,
  "message": "success",
  "data": {
    "subredditInfoById": {
      "__typename": "Subreddit",
      "highlightedPosts": null,
      "id": "t5_2qh0u",
      "name": "pics",
      "modPermissions": null
    }
  },
  "requestId": "2fef0dae-a239-45ea-a9b5-163028a7b004"
}
{
"code": 400,
"data": null,
"message": "Missing required parameter: handle"
}
{
"code": 401,
"data": null,
"message": "apiKey is null"
}
{
"code": 402,
"data": null,
"message": "apiKey quota is not enough"
}
{
"code": 429,
"data": null,
"message": "qps limit exceeded"
}
{
"code": 500,
"data": null,
"message": "Internal server error"
}
🪙1 creditper request

Copy for AI

🤖 Why Code When AI Can Do It For You?

Stop writing code like it’s 1970! Let AI do the heavy lifting - click the sparkles to copy a perfectly formatted prompt for ChatGPT, Claude, or your favorite AI assistant.

Authorizations

Authorization
string
header
required

API key for authentication. Format: sk_live_xxxxxxxxxxxxx Get your API key from the Dashboard.

Query Parameters

subreddit_id
string
required

Subreddit ID, format begins with "t5_", obtainable from the fetch_subreddit_info API

need_format
boolean
default:false

Whether to clean/sanitize the data

Response

The response is of type object.