Skip to main content
GET
https://yoinkit.ai/api/v1/openclaw
/
api
/
v1
/
openclaw
/
reddit
/
post
Reddit Post
curl --request GET \
  --url https://yoinkit.ai/api/v1/openclaw/api/v1/openclaw/reddit/post \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "post": {}
  },
  "meta": {}
}

Parameters

url
string
required
The full Reddit post URL (e.g., https://reddit.com/r/AskReddit/comments/ablzuq/...)

Response

success
boolean
Whether the request was successful
data
object
meta
object
Request metadata including credits_used and request_id

Example Request

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"

Example Response

{
  "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"
  }
}