Get detailed information about a Facebook group by URL. Returns group name, description, member count, privacy setting, location, and cover photo.
curl "https://apidirect.io/v1/facebook/group?url=https%3A%2F%2Fwww.facebook.com%2Fgroups%2Fpython" \
-H "X-API-Key: YOUR_API_KEY"
{
"group": {
"id": "457987654321",
"name": "Python Developers Community",
"url": "https://www.facebook.com/groups/python",
"description": "A community for Python developers to share knowledge, ask questions, and collaborate on projects.",
"privacy": "Public",
"members_count": 285000,
"location": null,
"cover_photo": "https://scontent.xx.fbcdn.net/v/t39.30808-6/..."
}
}