Utility Quickstart API
API 한 번의 호출로 Utility Quickstart 데이터를 받아 가세요. Everything needed for a first successful API call in one response: authentication, base URL, the response envelope, the credit billing model, the error taxonomy, rate limits, pagination rules, and a copy-paste first request. Pass platform to tailor the first-call example. Free to call.
2026년 8월 업데이트SocialCrawl 팀이 직접 관리해요
첫 호출에 필요한 것을 한 번에 반환합니다. 인증 방법, 기본 URL, 응답 구조, 크레딧 과금, 에러 코드, 레이트 리밋, 샘플이 들어 있습니다.
처음 연동하면서 API의 규칙을 한 응답으로 파악할 때 무료로 사용하세요.
46개 플랫폼을 한 번에 살펴봐요
Quickstart API로 무엇을 할 수 있을까요
Quickstart 엔드포인트가 통합 스키마와 계산 필드를 담은 Utility 데이터를 한 번의 요청으로 보내드려요. 스크래핑 인프라를 직접 만들거나 유지할 필요가 없어요.
요청 예시
curl -H "x-api-key: YOUR_API_KEY" \
"https://www.socialcrawl.dev/v1/utility/quickstart"import requests
response = requests.get(
"https://www.socialcrawl.dev/v1/utility/quickstart",
headers={"x-api-key": "YOUR_API_KEY"},
)
data = response.json()const response = await fetch(
"https://www.socialcrawl.dev/v1/utility/quickstart",
{
headers: { "x-api-key": "YOUR_API_KEY" },
},
);
const data = await response.json();파라미터
| 파라미터 | 필수 | 설명 |
|---|---|---|
| platform | 아니오 | Tailor the first-call example and links to one platform slug |
Utility Quickstart API는 무엇을 돌려주나요
문서에 나온 응답 구조와 필드를 보여 주기 위해 만든 합성 예시예요. 값은 이해를 돕기 위한 것이며 실제 API 응답은 아니에요.
응답 예시 보기
{
"success": true,
"platform": "utility",
"endpoint": "/v1/utility/quickstart",
"data": {
"kind": "quickstart",
"name": "SocialCrawl API",
"base_url": "https://www.socialcrawl.dev/v1",
"auth": {
"type": "api_key",
"header": "x-api-key",
"get_key_url": "https://www.socialcrawl.dev/dashboard/api"
},
"first_call": {
"description": "Get TikTok user profile",
"url": "https://www.socialcrawl.dev/v1/tiktok/profile?handle=charlidamelio",
"curl": "curl -H \"x-api-key: $SOCIALCRAWL_API_KEY\" \"https://www.socialcrawl.dev/v1/tiktok/profile?handle=charlidamelio\"",
"how_to_use": "/v1/utility/endpoint?id=tiktok/profile"
},
"envelope": {
"success": {
"success": true,
"platform": "tiktok",
"endpoint": "profile",
"data": "... the endpoint's response object ...",
"credits_used": 1,
"credits_remaining": 99,
"request_id": "req_...",
"cached": false
},
"error": {
"success": false,
"error": {
"type": "INSUFFICIENT_CREDITS",
"message": "... human-readable cause ...",
"status": 402,
"doc_url": "https://www.socialcrawl.dev/docs/errors#insufficient-credits"
},
"credits_used": 0,
"credits_remaining": 0,
"request_id": "req_..."
}
},
"billing": {
"model": "credits",
"tiers": {
"standard": 1,
"advanced": 5,
"premium": 10
},
"rules": [
"Cache hits cost 0 credits",
"Failed calls and empty results are automatically refunded",
"Some endpoints have flat or metered pricing; each endpoint's exact cost is in /v1/utility/endpoints"
]
},
"errors": [
{
"code": "MISSING_API_KEY",
"http": 401,
"meaning": "No x-api-key header on the request"
},
{
"code": "INVALID_API_KEY",
"http": 401,
"meaning": "API key is malformed, not found, revoked, or expired"
},
{
"code": "INSUFFICIENT_CREDITS",
"http": 402,
"meaning": "Credit balance is lower than the endpoint cost"
},
{
"code": "INVALID_REQUEST",
"http": 400,
"meaning": "A required parameter is missing, a value failed validation, or no one-of group member was provided"
},
{
"code": "ENDPOINT_NOT_FOUND",
"http": 404,
"meaning": "The platform or resource is not supported"
},
{
"code": "RESOURCE_NOT_FOUND",
"http": 404,
"meaning": "The requested item was not found on the platform; credits are refunded when triggered by an empty upstream result"
},
{
"code": "CONCURRENCY_LIMIT",
"http": 429,
"meaning": "More than 50 simultaneous requests on the same API key; honor Retry-After, then back off"
},
{
"code": "UPSTREAM_ERROR",
"http": 502,
"meaning": "The platform returned an error; credits are automatically refunded"
},
{
"code": "SERVICE_UNAVAILABLE",
"http": 503,
"meaning": "Temporarily unavailable for this platform after repeated failures; retry shortly, credits are refunded"
},
{
"code": "INTERNAL_ERROR",
"http": 500,
"meaning": "Unexpected server error; credits are automatically refunded"
},
{
"code": "METHOD_NOT_ALLOWED",
"http": 405,
"meaning": "Wrong HTTP method for this endpoint"
},
{
"code": "IDEMPOTENCY_KEY_CONFLICT",
"http": 409,
"meaning": "The Idempotency-Key is already in use by another account"
},
{
"code": "IDEMPOTENCY_KEY_PAYLOAD_MISMATCH",
"http": 422,
"meaning": "The Idempotency-Key was reused with a different request payload"
},
{
"code": "PAYLOAD_TOO_LARGE",
"http": 413,
"meaning": "The JSON request body exceeds the 1 MB size limit"
},
{
"code": "RATE_LIMITED",
"http": 429,
"meaning": "More than 600 requests in a 1-minute window on the same API key; honor Retry-After, then back off"
}
],
"pagination": {
"how": "List endpoints return pagination.next_cursor; pass it back as ?cursor=... until has_more is false",
"params": [
"cursor"
]
},
"rate_limits": {
"requests_per_minute": 600,
"concurrent_requests": 50
},
"stats": {
"platforms": 46,
"endpoints": 372
},
"next_steps": {
"catalog": "/v1/utility/endpoints",
"endpoint_guide": "/v1/utility/endpoint?id=tiktok/profile",
"agent_context": "/v1/utility/llms",
"docs": "https://www.socialcrawl.dev/docs",
"openapi": "https://www.socialcrawl.dev/openapi.json",
"mcp_server": "npx -y socialcrawl-mcp",
"agent_skill": "npx skills add socialcrawl/skills"
}
},
"credits_used": 0,
"request_id": "req_example000000",
"cached": false
}문서에 나온 응답 구조를 확인하기 위한 합성 예시예요. 값은 이해를 돕기 위한 것이며 운영 환경에서 가져온 응답이 아니에요.
Utility Quickstart API는 어떻게 동작하나요
API 키와 함께 GET 요청을 보내면, 통합 스키마와 계산 필드를 담은 깔끔한 JSON이 돌아와요.
메서드
GET
응답 형식
JSON
소셜 미디어 데이터를 몇 초 만에 수집하는 방법
개발자를 위한 가장 빠른 소셜 미디어 스크래핑 API. 월간 활성 사용자 100억 명 이상을 포괄하는 46개 플랫폼에서 프로필, 게시물, 댓글, 분석 데이터를 수집하세요.
모든 플랫폼을 하나의 스키마로
동일한 응답 구조로 46개 플랫폼을 조회하세요. 연동은 한 번이면 충분합니다.
단순 수집을 넘어 계산된 필드 제공
엔드포인트가 해당 지표를 지원하고 계산에 필요한 원본 값이 있을 때, 정규화된 레코드에 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"
}
}
}궁금한 점이 있으신가요? 답변해 드립니다
SocialCrawl의 API, 요금제, 기능에 대한 자주 묻는 질문을 확인하세요.
문의하기퀵스타트 엔드포인트는 뭘 돌려주나요?
첫 호출까지 얼마나 걸리나요?
퀵스타트 호출은 무료인가요?
특정 플랫폼에 맞춘 퀵스타트도 받을 수 있나요?
문서 대신 퀵스타트 엔드포인트를 쓰는 이유가 뭔가요?
AI에게 SocialCrawl을 물어보세요
Utility Quickstart 데이터, 가져올 준비 되셨어요?
API 키 받고 60초 안에 Utility 데이터를 받아 가세요.
