Facebook Post Details API
Full detail for one post: author, text, timestamp, reaction total and breakdown by type, comment and share counts, top visible comments, media (image or downloadable video), and permalink. Accepts a post permalink URL. Costs 1 credit per request.
POST/api/v1/facebook/post
Authorizations
AuthorizationstringheaderrequiredBearer authentication header of the form Bearer <token>, where <token> is your Scavio API key (e.g. Bearer sk_live_your_key).
Body
application/jsonRequest
from scavio import ScavioClient
client = ScavioClient(api_key="sk_live_your_key")
result = client.facebook.request("/api/v1/facebook/post", {})
print(result)Response
"post_id": "1393461115481927",
"text": "Better is the only choice.
@fcbarcelona purest expression of footballing perfection meets the constant growth mindset of Mamba Mentality.
Millor és l’única opció.
La màxima expressió de la perfecció futbolística del @fcbarcelona conflueix amb l’actitud de creixement constant de ...",
"creation_time": "2025-07-29T07:16:19.000Z",
"reaction_count": null,
"reactions_by_type": {},
"comment_count": 2331,
"share_count": null,
"top_comments": [],
"permalink": "https://www.facebook.com/reel/2166091230582141"
},
"response_time": 3824
}