reddit_by_id
Retrieve up to 100 Reddit posts in one API call using their t3_ fullnames. Get post details like title, author, score, and comment count without per-post requests.
Instructions
Bulk-fetch posts by their t3_ fullnames in ONE call (up to 100), instead of a request per post. Pass a comma-separated list of fullnames you already have from a search or listing to hydrate them. Returns posts with title, author, score, comment count, and permalink — the same post shape as the listing endpoints. An unknown id is simply absent from the result. Example: fullnames='t3_abc123,t3_def456'.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| fullnames | Yes | Comma-separated post fullnames, each a t3_ prefix followed by the base-36 id (e.g. 't3_abc123,t3_def456'). Up to 100. Required (path parameter). |