Facebook Page Profile API
A page or public profile: name, category, verified flag, likes, followers, talking-about and were-here counts, bio, and (where the page published them) website, phone, email, address, hours, price range, services, aggregate rating, screenname, creation date, profile picture and cover photo. Accepts a page URL or page id. Costs 1 credit per request.
POST/api/v1/facebook/profile
Authorizations
AuthorizationstringheaderrequiredBearer authentication header of the form Bearer <token>, where <token> is your Scavio API key (e.g. Bearer sk_live_your_key).
Body
application/jsonRequest
from scavio import ScavioClient
client = ScavioClient(api_key="sk_live_your_key")
result = client.facebook.request("/api/v1/facebook/profile", {})
print(result)Response
"page_id": "15087023444",
"name": "Nike",
"category": "Sportswear shop",
"verified": true,
"likes": 39560349,
"followers": 39000000,
"followers_text": "39M",
"talking_about_count": 119345,
"were_here_count": 18184,
"about": "Just Do It.",
"website": "http://nike.com/",
"phone": "5555550100",
"email": "[email protected]",
"address": null,
"business_hours": null,
"price_range": null,
"services": [],
"rating": null,
"screenname": null,
"profile_pic": "https://scontent-lax7-1.xx.fbcdn.net/v/t39.30808-1/284964043_10159903868513445_7696353984967674128_n.jpg?stp=dst-jpg_tt6&cstp=mx400x400&ctp=s400x400&_nc_cat=1&ccb=1-7&_nc_sid=3ab345&_nc_ohc=OOsK3iRLA0AQ7kNvwFwvrtJ&_nc_oc=AdoQE4J-uzXLvkc_Q6brRNTfBEym8gKqXkKoEa0sQhqOVuCaHCfKxDWXYgD...",
"cover_photo": "https://scontent.fkwi2-2.fna.fbcdn.net/v/t39.30808-6/285211224_10159903868008445_5477337468887983165_n.png?stp=dst-png&cstp=mx851x315&ctp=s851x315&_nc_cat=102&ccb=1-7&_nc_sid=cc71e4&_nc_ohc=IUjpMU4g3-EQ7kNvwGZWQP-&_nc_oc=AdrfvXY04aWFFrUudpbDzVzXSMEIusO4qItqX04VgiW2fkPk7I-rk2pcP3Y..."
},
"response_time": 23486
}