Facebook Event API
A public event: name, description, start and end time, location, host, going and interested counts, and cover photo. Accepts an event URL or event id. Costs 1 credit per request.
POST/api/v1/facebook/event
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/event", {})
print(result)Response
"event_id": "1785739302876387",
"name": "Designing and Teaching with Case Studies in Higher Education",
"description": "Event in Dubai, United Arab Emirates by Center for Learning Innovations and Customized Knowledge Solutions on Wednesday, November 11 2026",
"start_time": "2026-08-23T00:00:00.000Z",
"end_time": "2026-11-12T11:00:00.000Z",
"host": "Center for Learning Innovations and Customized Knowledge Solutions",
"going_count": null,
"interested_count": null,
"cover_photo": "https://lookaside.fbsbx.com/lookaside/crawler/media/?media_id=1258005366184429"
},
"response_time": 3639
}