Search Reddit posts by keyword. Returns post title, URL, subreddit, author, publication date, and content snippet for each result. Supports multiple sort options including hot and top posts.
curl "https://api.apidirect.io/v1/reddit/posts?query=programming&page=1&sort_by=hot" \
-H "Authorization: Bearer YOUR_API_KEY"
{
"posts": [
{
"title": "Reddit post title",
"url": "https://reddit.com/r/programming/...",
"date": "2024-01-15 14:30:00",
"author": "redditor",
"source": "Reddit",
"subreddit": "programming",
"snippet": "Post content..."
}
],
"page": 1,
"count": 20
}