REDDIT_CREATE_REDDIT_POST
Creates a new text or link post on a specified, existing Reddit subreddit, optionally applying a flair.
Remote reddit
Other tools also called REDDIT_CREATE_REDDIT_POST?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"url": {
"type": "string",
"title": "Url",
"examples": [
"https://www.example.com/news/article.html"
],
"description": "The URL for a 'link' post. Required if `kind` is 'link'."
},
"kind": {
"enum": [
"link",
"self"
],
"type": "string",
"title": "Kind",
"examples": [
"self",
"link"
],
"description": "The type of the post. Use 'self' for a text-based post or 'link' for a post that links to an external URL."
},
"text": {
"type": "string",
"title": "Text",
"examples": [
"This is the body of my text post. It can include **markdown** formatting."
],
"description": "The markdown-formatted text content for a 'self' post. Required if `kind` is 'self'."
},
"title": {
"type": "string",
"title": "Title",
"examples": [
"My New Project!",
"Interesting Article I Found"
],
"description": "The title of the post. Must be 300 characters or less."
},
"flair_id": {
"type": "string",
"title": "Flair Id",
"examples": [
"a1b2c3d4-e5f6-7890-1234-567890abcdef"
],
"description": "Optional ID of the flair to apply to the post. Use the 'REDDIT_GET_USER_FLAIR' action to find available flair IDs for the specified subreddit. Omit this field entirely if no flair is needed."
},
"subreddit": {
"type": "string",
"title": "Subreddit",
"examples": [
"learnpython",
"AskReddit"
],
"description": "The name of the subreddit (without the 'r/' prefix) where the post will be submitted."
}
}
}