Facebook Profile API
API 한 번의 호출로 Facebook Profile 데이터를 받아 가세요. Returns a unified Facebook Author profile with page ID, display name, profile URL, profile image, bio (the page intro), follower count, page-like count, and creation date. A **business page** carries considerably more than a personal profile, and all of it rides in `author.ext`: `business_category`, `website`, `links[]`, `public_phone`, `public_email`, `address`, `price_range`, `rating` (Facebook's recommendation string) with `rating_count`, `talking_about_count`, `cover_url`, `page_active`, and `ad_library_page_id` / `ad_library_status`: the Ad Library page id is a different id from `author.id` and is the one `/v1/facebook/adlibrary/company/ads` takes, so you can chain profile → ads off a single lookup. A personal profile returns null for the listing fields it has no equivalent for rather than omitting them. `links[]` and `business_hours[]` are also mapped, the latter only when you pass `get_business_hours=true`, but Facebook returned both empty on every page measured on 2026-08-11, so treat them as best effort rather than data you can depend on. `author.following` and `author.posts_count` remain null because the upstream profile response does not provide those totals.
2026년 8월 업데이트SocialCrawl 팀이 직접 관리해요
Facebook 페이지의 공개 프로필을 돌려줍니다. 페이지 id와 표시 이름, 프로필 이미지, 소개글, 팔로워 수, 페이지 좋아요 수가 담깁니다.
페이지 URL만 있을 때 그곳이 어떤 페이지인지 먼저 훑어볼 때 사용하세요. 게시물과 사진, 릴스는 각각 profile/posts, profile/photos, profile/reels를 쓰세요.
Facebook Profile API, 직접 써 보세요
코드 한 줄 짜기 전에, 실제 데이터부터
51개 플랫폼을 병렬로 검색합니다
Profile API로 무엇을 할 수 있을까요
Profile 엔드포인트가 통합 스키마와 계산 필드를 담은 Facebook 데이터를 한 번의 요청으로 보내드려요. 스크래핑 인프라를 직접 만들거나 유지할 필요가 없어요.
요청 예시
curl -H "x-api-key: YOUR_API_KEY" \
"https://www.socialcrawl.dev/v1/facebook/profile?url=https%3A%2F%2Fwww.facebook.com%2FMeta"import requests
response = requests.get(
"https://www.socialcrawl.dev/v1/facebook/profile",
params={
'url': 'https://www.facebook.com/Meta',
},
headers={"x-api-key": "YOUR_API_KEY"},
)
data = response.json()const response = await fetch(
"https://www.socialcrawl.dev/v1/facebook/profile?url=https%3A%2F%2Fwww.facebook.com%2FMeta",
{
headers: { "x-api-key": "YOUR_API_KEY" },
},
);
const data = await response.json();파라미터
| 파라미터 | 필수 | 설명 |
|---|---|---|
| url | 예 | Full URL of the Facebook page or profile |
| get_business_hours | 아니오 | Get the business's hours |
Facebook Profile API는 무엇을 돌려주나요
모든 응답은 하나의 통합 스키마를 따라요. 크레딧을 쓰기 전에 어떤 필드가 돌아오는지, 실제 응답 본문 그대로 확인해 보세요.
응답 예시 보기
{
"success": true,
"platform": "facebook",
"endpoint": "/v1/facebook/profile",
"data": {
"author": {
"id": "100044561550831",
"username": null,
"display_name": "NASA - National Aeronautics and Space Administration",
"avatar_url": "https://scontent-phl2-1.xx.fbcdn.net/v/t39.30808-1/243095782_416661036495945_3843362260429099279_n.png?stp=dst-png&cstp=mx800x800&ctp=s480x480&_nc_cat=1&ccb=1-7&_nc_sid=2d3e12&_nc_ohc=8JwJCEbIJtcQ7kNvwE7bHf3&_nc_oc=Adpgm0tdqHzQi8hCG-6PZSgRGHRJJ4ZOD_GEvGFQVYA9zCX8gaFVxpDZEVFz2fGoHN8&_nc_zt=24&_nc_ht=scontent-phl2-1.xx&_nc_gid=h7hpILJTNe37zLDnM58RQA&_nc_ss=7f289&oh=00_AQB3Q17oyz_VPmyzoVUwa9YnzN3KnPuvUESweRQdc7kzRQ&oe=6A632E95",
"bio": "Explore the universe and discover our home planet. \nThere's space for everybody. ✨",
"verified": null,
"followers": 28000000,
"following": null,
"posts_count": null,
"likes_count": 28657125,
"url": "https://www.facebook.com/NASA/",
"private": null,
"joined_at": "March 4, 2009"
},
"computed": {
"engagement_rate": null,
"language": "en",
"content_category": "other",
"estimated_reach": null
},
"_warnings": [
"computed.engagement_rate: author ratio exceeded 1.0 (raw: 1.023469); returned null — a lifetime likes/followers ratio is not a real engagement rate"
]
},
"credits_used": 1,
"credits_remaining": 9999,
"request_id": "req_example000000",
"cached": false
}통합 응답 구조를 보여 주는 실제 샘플이에요. 필드 값은 조회한 대상에 따라 달라져요.
Facebook Profile API는 어떻게 동작하나요
API 키와 함께 GET 요청을 보내면, 통합 스키마와 계산 필드를 담은 깔끔한 JSON이 돌아와요.
메서드
GET
응답 형식
JSON
소셜 미디어 데이터를 몇 초 만에 수집하는 방법
개발자를 위한 가장 빠른 소셜 미디어 스크래핑 API. 월간 활성 사용자 100억 명 이상을 포괄하는 51개 플랫폼에서 프로필, 게시물, 댓글, 분석 데이터를 수집하세요.
모든 플랫폼을 하나의 스키마로
동일한 응답 구조로 51개 플랫폼을 조회하세요. 연동은 한 번이면 충분합니다.
단순 수집을 넘어 계산된 필드 제공
엔드포인트가 해당 지표를 지원하고 계산에 필요한 원본 값이 있을 때, 정규화된 레코드에 engagement_rate, estimated_reach, content_category, language를 함께 담아 바로 활용할 수 있습니다.
코드 한 줄 쓰기 전에, 데이터부터
Visual Data Explorer에 URL만 붙여넣으면 결과 카드와 정형화된 테이블, CSV 내보내기를 바로 사용할 수 있습니다.
import requests
response = requests.get(
'https://www.socialcrawl.dev/v1/tiktok/profile',
params={'handle': 'charlidamelio'},
headers={'x-api-key': 'sc_YOUR_API_KEY'}
)
data = response.json(){
"success": true,
"platform": "tiktok",
"data": {
"author": {
"username": "charlidamelio",
"followers": 152400000
},
"engagement": {
"likes": 12400000000,
"engagement_rate": 0.087
},
"metadata": {
"language": "en",
"content_category": "lifestyle"
}
}
}자주 묻는 질문
API, 요금제, 기능에 대한 질문과 답변입니다.
문의하기Facebook 페이지 데이터는 어떻게 받나요?
GET /v1/facebook/profile는 어떤 필드를 반환하나요?
Graph API 토큰 없이 Facebook 프로필을 받을 수 있나요?
Facebook Profile API는 요금이 얼마인가요?
Facebook 페이지의 영업시간도 받아올 수 있나요?
AI에게 SocialCrawl을 물어보세요
Facebook Profile 데이터, 가져올 준비 되셨어요?
API 키 받고 60초 안에 Facebook 데이터를 받아 가세요.
