Facebook Page contact API
Look up a Facebook Page's public contact details (email, phone, website, and address) by page URL or ID.
Provider network
Providers ranked by traffic
Try it
Make your first request
{
"data": {
"items": [
{
"address": "123 Main St",
"category": "general",
"email": "alex@example.com",
"followers": 12500,
"image": "https://example.com/image.jpg",
"phone": "+1 555-0142",
"title": "Example title",
"url": "https://example.com/page",
"website": "https://example.com/page"
}
]
},
"found": true
}interface FacebookPageContactResponse {
data: {
items: {
address?: string;
category?: string;
email?: string;
followers?: number;
image?: string;
phone?: string;
title: string;
url: string;
website?: string;
}[];
} | null;
found: boolean;
}Full parameter and response reference - every field, type, and example for this endpoint.
Reference
Request, response, and price
Last verified 2026-09-16 · uptime and latency measured over 30dcurl -X POST https://api.getanyapi.com/v1/run/facebook.page_contact \
-H "Authorization: Bearer $ANYAPI_KEY" \
-H "Content-Type: application/json" \
-d '{"page":"https://www.facebook.com/joesstonecrab"}'| Field | Type | Example value |
|---|---|---|
| Request body | ||
| page | string | "https://www.facebook.com/joesstonecrab"Facebook Page URL or page ID to look up (e.g. https://www.facebook.com/nasa). |
| language | string | Locale code for the returned data (e.g. en-US). |
| Response | ||
| data | object | |
| data.items | object[] | Contact record for the requested Facebook Page (one item). Populated whenever the provider has data for the entity. |
| data.items[].address | string | The page's public physical address. Empty when the page lists none. |
| data.items[].category | string | The page's primary category (e.g. "Seafood Restaurant"). Populated whenever the provider has data for the entity. |
| data.items[].email | string | The page's public contact email. Empty when the page lists none. |
| data.items[].followers | integer | The page's follower count. |
| data.items[].image | string | URL of the page's profile picture, with tracking query params stripped. Empty when the upstream omits it. |
| data.items[].phone | string | The page's public phone number. Empty when the page lists none. |
| data.items[].title | string | The page's public name. Populated whenever the provider has data for the entity. |
| data.items[].url | string | Canonical URL of the Facebook Page, with tracking query params stripped. Populated whenever the provider has data for the entity. |
| data.items[].website | string | The page's public website URL. Empty when the page lists none. |
| found | boolean | Whether the page was found and returned contact records. |
| Price | ||
| Price per request | USD | $0.0012 |
| Price /1k req | USD | $1.20 |
FAQ
About the Facebook Page contact API
The AnyAPI Facebook Page contact API returns Facebook page contact data as normalized JSON from one POST call to /v1/run/facebook.page_contact. Look up a Facebook Page's public contact details (email, phone, website, and address) by page URL or ID. AnyAPI routes each request across 2 sources and falls back automatically when one fails. It costs from $1.20 per 1,000 requests, in US dollars with no subscription and no monthly minimum. Over the last 30 days, 100.0% of Facebook page contact calls through AnyAPI succeeded, with a median response time of 3.1 seconds across 120 measured calls.