Endpoint Playground
Test Crawlora's Get Facebook page 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/<page>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| page (path) | string | Yes | Facebook Page reference: vanity name, handle, profile.php id, or full Facebook URL |
{
"code": 200,
"msg": "OK",
"data": {
"title": "Woodland Windows",
"og": {
"title": "Woodland Windows",
"description": "Woodland Windows, Lisburn. 101 likes. Professional window cleaning service based in Lisburn.",
"image": "https://scontent.fna.fbcdn.net/v/t39.30808-1/..."
},
"stats": {
"likes": 101,
"followers": 0
},
"intro": "Professional window cleaning service based in Lisburn.",
"email": "woodlandwindowsinfo@gmail.com",
"address": "24 Woodland Avenue, Lisburn, United Kingdom, BT27 4PJ",
"category": "Home window service",
"reviewCount": 3,
"emails": [
"woodlandwindowsinfo@gmail.com"
],
"phones": [
"+44 7926 075025"
],
"sourceUrl": "https://www.facebook.com/woodlandwindows1/about",
"pageId": "100063628597424",
"hours": "Opening soon",
"priceRange": "Price range · £"
}
}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 Page given its page ID, vanity name, or full page URL: name, follower/like counts, intro, category, business hours/price range, review count, and any public contact details (email, phone, address, website, WhatsApp number) exposed on the Page's About tab.
{
"code": 200,
"msg": "OK",
"data": {
"title": "Woodland Windows",
"og": {
"title": "Woodland Windows",
"description": "Woodland Windows, Lisburn. 101 likes. Professional window cleaning service based in Lisburn.",
"image": "https://scontent.fna.fbcdn.net/v/t39.30808-1/..."
},
"stats": {
"likes": 101,
"followers": 0
},
"intro": "Professional window cleaning service based in Lisburn.",
"email": "woodlandwindowsinfo@gmail.com",
"address": "24 Woodland Avenue, Lisburn, United Kingdom, BT27 4PJ",
"category": "Home window service",
"reviewCount": 3,
"emails": [
"woodlandwindowsinfo@gmail.com"
],
"phones": [
"+44 7926 075025"
],
"sourceUrl": "https://www.facebook.com/woodlandwindows1/about",
"pageId": "100063628597424",
"hours": "Opening soon",
"priceRange": "Price range · £"
}
}curl "https://api.crawlora.net/api/v1/facebook/<page>" \
-H "x-api-key: $CRAWLORA_API_KEY"