curl --request GET \
--url https://yoinkit.ai/api/v1/openclaw/api/v1/openclaw/reddit/post \
--header 'Authorization: Bearer <token>'{
"success": true,
"data": {
"post": {}
},
"meta": {}
}Retrieve detailed metadata for a Reddit post including comments and statistics
curl --request GET \
--url https://yoinkit.ai/api/v1/openclaw/api/v1/openclaw/reddit/post \
--header 'Authorization: Bearer <token>'{
"success": true,
"data": {
"post": {}
},
"meta": {}
}https://reddit.com/r/AskReddit/comments/ablzuq/...)Show Post data properties
curl -X GET "https://yoinkit.ai/api/v1/openclaw/reddit/post?url=https://reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet/" \
-H "Authorization: Bearer YOUR_API_TOKEN"
{
"success": true,
"data": {
"post": {
"name": "t3_ablzuq",
"id": "ablzuq",
"title": "People who haven't pooped in 2019 yet, why are you still holding on to last years shit?",
"selftext": "",
"author": "ShoddySubstance",
"subreddit": "AskReddit",
"subreddit_name_prefixed": "r/AskReddit",
"score": 221995,
"ups": 221995,
"upvote_ratio": 0.91,
"num_comments": 7925,
"gilded": 13,
"permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/",
"url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/",
"created_utc": 1546376787,
"over_18": false,
"spoiler": false,
"locked": false,
"archived": true,
"is_self": true,
"subreddit_subscribers": 54408093
}
},
"meta": {
"platform": "reddit",
"endpoint": "post",
"credits_used": 1,
"request_id": "req_abc123def456"
}
}