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": {}
}Retrieve detailed metadata for a Facebook post including engagement metrics and video info
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": {}
}Show Post data properties
curl -X GET "https://yoinkit.ai/api/v1/openclaw/facebook/post?url=https://facebook.com/reel/1535656380759655" \
-H "Authorization: Bearer YOUR_API_TOKEN"
{
"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"
}
}