Skip to main content
GET
https://yoinkit.ai/api/v1/openclaw
/
api
/
v1
/
openclaw
/
facebook
/
post
Facebook Post
curl --request GET \
  --url https://yoinkit.ai/api/v1/openclaw/api/v1/openclaw/facebook/post \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "post_id": "<string>",
    "like_count": 123,
    "comment_count": 123,
    "share_count": 123,
    "view_count": 123,
    "description": "<string>",
    "video": {}
  },
  "meta": {}
}

Parameters

url
string
required
The full Facebook post or reel URL

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/facebook/post?url=https://facebook.com/reel/1535656380759655" \
  -H "Authorization: Bearer YOUR_API_TOKEN"

Example Response

{
  "success": true,
  "data": {
    "success": true,
    "credits_remaining": 48026,
    "post_id": "25118307061088489",
    "like_count": 2095,
    "comment_count": 48,
    "share_count": 133,
    "view_count": 133000,
    "description": "Air Fryer Chocolate Cake - super simple and comes out gooey in the middle!",
    "url": "https://www.facebook.com/reel/1535656380759655",
    "video": {
      "id": "1535656380759655",
      "height": 1920,
      "width": 1080
    }
  },
  "meta": {
    "platform": "facebook",
    "endpoint": "post",
    "credits_used": 1,
    "request_id": "req_abc123def456"
  }
}