Facebook Group API
A public group's profile: id, name, visibility, member count, description and privacy. Private groups are reported as unavailable. Accepts a group URL or group id. Costs 1 credit per request.
POST/api/v1/facebook/group
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/group", {})
print(result)Response
"group_id": "361381807400278",
"name": "Dull Men's Club®",
"visibility": "OPEN",
"member_count": 2100000,
"member_count_text": "2.1M members",
"description": "“The DMC Facebook Group is a perfect example of how social media should work, with none of the toxicity that so many other groups have” — from New...",
"privacy": "public"
},
"response_time": 4015
}