Reddit API
Reddit

Get Post by ID

Fetch a single Reddit post plus its full raw comment tree by post id — all content, metadata, author info, and nested replies in one HTTP GET call.

GET/api/reddit/post/:id

Single post + full raw comment tree.

Path Parameters

ParameterTypeRequiredDescription
idstringYesReddit post id (e.g. 1sgjld3)

Example

curl -H "Authorization: Bearer $TOKEN" \
  "https://api.redditapis.com/api/reddit/post/1sgjld3"
const response = await fetch(
  "https://api.redditapis.com/api/reddit/post/1sgjld3",
  { headers: { Authorization: "Bearer TOKEN" } }
);
import requests

response = requests.get(
    "https://api.redditapis.com/api/reddit/post/1sgjld3",
    headers={"Authorization": "Bearer TOKEN"},
)

On this page