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"
}Reddit 帖子
获取Reddit APP社区亮点
获取指定社区的精选亮点内容,包括热门帖子和重要公告。
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 credit每次请求
Copy for AI
🤖 让 AI 帮你写调用代码
点击按钮复制一段结构化提示词,可直接交给 ChatGPT、Claude 或其他 AI 助手生成接口调用代码。
⌘I

