跳转到主要内容
GET
/
v1
/
reddit
/
fetch_subreddit_settings
cURL
curl --request GET \
  --url 'https://api.keyapi.ai/v1/reddit/fetch_subreddit_settings?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_subreddit_settings',
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_subreddit_settings?${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",
      "id": "t5_2qh0u",
      "isTopListingAllowed": true,
      "isDiscoveryAllowed": true,
      "language": "en",
      "allAllowedPostTypes": [
        "LINK",
        "IMAGE",
        "GALLERY"
      ],
      "postFlairSettings": {
        "isEnabled": true,
        "isSelfAssignable": false
      },
      "authorFlairSettings": {
        "isEnabled": true,
        "isSelfAssignable": false
      },
      "isArchivePostsEnabled": true,
      "countrySiteSettings": {
        "countryCode": "",
        "languageCode": "",
        "isCountrySiteEditable": true,
        "modMigrationAt": "2023-07-03T16:04:00.000000+0000"
      },
      "commentContributionSettings": {
        "allowedMediaTypes": [
          "GIPHY",
          "STATIC",
          "EXPRESSION"
        ]
      },
      "isSubredditChannelsEnabled": {
        "isChatEnabled": false,
        "isPostEnabled": true
      },
      "amaSettings": {
        "postPermissions": "OFF"
      }
    }
  },
  "requestId": "9c6d0f76-2b86-4a13-afc9-5f734e4961a5"
}
{
"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 助手生成接口调用代码。

授权

Authorization
string
header
必填

接口鉴权凭证。请在请求 Header 中传入 Authorization: Bearer <YOUR_API_KEY>。 可在 Dashboard 获取你的 API Key。

查询参数

subreddit_id
string
必填

版块ID,格式如:t5_xxxx(t5_开头的唯一标识符)。例如:t5_2qh0u(可从fetch_subreddit_info接口获取版块ID)

示例:

"t5_2qh0u"

need_format
boolean
默认值:false

是否需要清洗数据

响应

请求成功

The response is of type object.