get_cross_posts
Identify crossposts of a Reddit post by providing its post_id. Returns a detailed list of crossposts with title, author, subreddit, score, and direct links.
Instructions
🔄 Find crossposts of a Reddit post 🎯 What it does: Finds posts that were cross-posted from the original post 📝 Required: post_id (Reddit post ID to find crossposts for) 💡 Examples: • Find crossposts: {"post_id": "1n1nlse"} • Check shares: {"post_id": "1abc123"} 🔍 Output: List of crossposts with title, author, subreddit, score, and Reddit link
Input Schema
Name | Required | Description | Default |
---|---|---|---|
post_id | Yes | Reddit post ID to find crossposts for |
Input Schema (JSON Schema)
{
"properties": {
"post_id": {
"description": "Reddit post ID to find crossposts for",
"type": "string"
}
},
"required": [
"post_id"
],
"type": "object"
}