Facebook Business Page About Section API Documentation
The Facebook Business Page API retrieves information from the about section of Facebook business pages by page ID.
API Parameters
Search Query
-
- Name
-
page_id - Required
- Required
- Description
-
The Facebook page ID. You can find it in the page URL (e.g.,
100089525329756).
-
- Name
-
username - Required
- Required
- Description
-
The Facebook page username path. You can find it in the page URL (e.g.,
marcopoloristorante).
Note: You can use eitherpage_idorusername, but not both.
Engine
-
- Name
-
engine - Required
- Required
- Description
-
Parameter defines an engine that will be used to retrieve real-time data. It must be set to
facebook_business_page.
API key
-
- Name
-
api_key - Required
- Required
- Description
-
The
api_keyauthenticates your requests. Use it as a query parameter (https://www.searchapi.io/api/v1/search?api_key=YOUR_API_KEY) or in the Authorization header (Bearer YOUR_API_KEY).
Zero Data Retention
-
- Name
-
zero_retention - Enterprise Only
- Enterprise Only
- Required
- Optional
- Description
-
Set this parameter to
trueto disable all logging and persistent storage. No request parameters, HTML, or JSON responses are stored or logged. Suitable for high-compliance use cases. Debugging and support may be limited while enabled.
API Examples
Full Response
https://www.searchapi.io/api/v1/search?engine=facebook_business_page&page_id=100089525329756
- Python
- Node
- Ruby
- Java
- Go
- PHP
- Bash
- R
- Kotlin
- Swift
- C#
- C
- C++
- requests
import requests
url = "https://www.searchapi.io/api/v1/search"
params = {
"engine": "facebook_business_page",
"page_id": "100089525329756"
}
response = requests.get(url, params=params)
print(response.text)
{
"search_metadata": {
"id": "search_wr07vRBGpw4dcK7Dgb6ZlXJj",
"status": "Success",
"created_at": "2025-10-27T20:53:59Z",
"request_time_taken": 1.42,
"parsing_time_taken": 0.01,
"total_time_taken": 1.43,
"request_url": "https://www.facebook.com/profile.php?id=100089525329756&sk=about",
"html_url": "https://www.searchapi.io/api/v1/searches/search_wr07vRBGpw4dcK7Dgb6ZlXJj.html",
"json_url": "https://www.searchapi.io/api/v1/searches/search_wr07vRBGpw4dcK7Dgb6ZlXJj"
},
"search_parameters": {
"engine": "facebook_business_page",
"page_id": "100089525329756"
},
"page": {
"id": "100089525329756",
"name": "Starbucks (4227 Genesee Avenue, San Diego)",
"link": "https://www.facebook.com/people/Starbucks/100089525329756/",
"followers": {
"text": "1.3K followers",
"link": "https://www.facebook.com/profile.php?id=100089525329756&sk=followers",
"count": 1300
},
"following": {
"text": "0 following",
"link": "https://www.facebook.com/profile.php?id=100089525329756&sk=following",
"count": 0
},
"profile_photo_original": "https://scontent-lga3-3.xx.fbcdn.net/v/t39.30808-1/385031219_710082821151289_1722215284678546098_n.png?stp=dst-png_s200x200&_nc_cat=110&ccb=1-7&_nc_sid=2d3e12&_nc_ohc=xTTQspEHkPYQ7kNvwHkJUii&_nc_oc=Adk_k9C5YMpjl65f6ziP1VSDbdxGN4B3y-Dnyg9fd8cTzaybZ6Lbp_DxEs7QgKo_efE&_nc_zt=24&_nc_ht=scontent-lga3-3.xx&_nc_gid=qWjha9JbX7Uq7JwpbN2sdQ&oh=00_AfdhIPt-Pa3L3oImbyznZ5AMFp29EUsoTTM3QrzENY5Xxw&oe=6905C1CC",
"profile_photo_link": "https://www.facebook.com/photo/?fbid=277383798589129&set=a.277383791922463",
"cover_photo_original": "https://scontent-lga3-2.xx.fbcdn.net/v/t39.30808-6/485748946_1085137506979150_5324239471083844577_n.jpg?stp=dst-jpg_s960x960_tt6&_nc_cat=105&ccb=1-7&_nc_sid=cc71e4&_nc_ohc=zyzoHHZhT-QQ7kNvwF_3_Zs&_nc_oc=Adks24hVGq49OAyIpqRkjVUK5dVCscFHOc_Y8wn4AKhwt5Z-Hbj4iVIxucebJpzdfNM&_nc_zt=23&_nc_ht=scontent-lga3-2.xx&_nc_gid=qWjha9JbX7Uq7JwpbN2sdQ&oh=00_AfedG4ji_vPLx-Sd2KShZzU-s-XubFi_WCtioU8109rCuA&oe=6905BE35",
"cover_photo_link": "https://www.facebook.com/photo/?fbid=1060911799401721&set=a.710082777817960"
},
"about": {
"category": "Coffee shop · Bar · Café",
"category_formatted": [
"Coffee shop",
"Bar",
"Café"
],
"address": "4227 Genesee Avenue, San Diego, CA, United States, 92117",
"gps_coordinates": {
"latitude": 32.820038921551,
"longitude": -117.18164563179
},
"phone": "(858) 278-3467",
"website": "https://www.starbucks.com/store-locator/store/8834/",
"ratings": "100% recommend (2,185 reviews)",
"rating": 100,
"reviews_count": 2185,
"price_range": "££"
}
}