Endpoint Playground
Test Crawlora's Get Facebook group details API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/facebook/groups/<group>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| group (path) | string | Yes | Facebook Group reference: numeric group id, vanity name, or full Facebook group URL |
{
"code": 200,
"msg": "OK",
"data": {
"name": "香港80、90後集中地(吃喝玩樂 着數分享)",
"groupId": "476791410478852",
"privacy": "Public group",
"membersText": "583.7K members",
"membersCount": 583700,
"coverImage": "https://scontent.fsgn12-1.fna.fbcdn.net/v/t39.30808-6/597615764_10162579247132805_3033175257659170924_n.jpg",
"sourceUrl": "https://www.facebook.com/groups/476791410478852/"
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Fetches public data about a Facebook Group given its numeric group id, vanity name, or full group URL: name, cover photo, stable group id, and — when the group exposes them without joining — its privacy setting (public/private) and formatted member count.
{
"code": 200,
"msg": "OK",
"data": {
"name": "香港80、90後集中地(吃喝玩樂 着數分享)",
"groupId": "476791410478852",
"privacy": "Public group",
"membersText": "583.7K members",
"membersCount": 583700,
"coverImage": "https://scontent.fsgn12-1.fna.fbcdn.net/v/t39.30808-6/597615764_10162579247132805_3033175257659170924_n.jpg",
"sourceUrl": "https://www.facebook.com/groups/476791410478852/"
}
}curl "https://api.crawlora.net/api/v1/facebook/groups/<group>" \
-H "x-api-key: $CRAWLORA_API_KEY"