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>'{
"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"
}Get settings information for a specified subreddit on Reddit APP, including posting rules, user flair settings, moderation settings, and other configuration
Note: First obtain the subreddit ID (subreddit.id field) via the fetch_subreddit_info API The subreddit ID format must begin with “t5_” The ID format for the APP API differs from the Web API — a type prefix is required Subreddit ID prefix: t5_ (e.g., t5_2qh0u)
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>'{
"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"
}🤖 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.
Subreddit ID, a unique identifier beginning with t5_, e.g., "t5_2qh0u" (can be obtained from the fetch_subreddit_info API)
Whether to clean/sanitize the data
The response is of type object.