Glowb Dev Docs
Main APIAI API

POST /ai/crawl/followers

팔로워 크롤링

팔로워 크롤링

팔로워 상세 정보를 크롤링합니다.

항목
메서드POST
경로/ai/crawl/followers
인증불필요
Content-Typeapplication/json

요청

POST /ai/crawl/followers HTTP/1.1
Host: api.glowb.com
Content-Type: application/json

{
  "snsUrl": "https://instagram.com/example",
  "limit": 100
}
curl -X POST "https://api.glowb.com/ai/crawl/followers" \
  -H "Content-Type: application/json" \
  -d '{
    "snsUrl": "https://instagram.com/example",
    "limit": 100
  }'
const response = await fetch('/ai/crawl/followers', {
  method: 'POST',
  headers: {
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
    snsUrl: 'https://instagram.com/example',
    limit: 100
  })
});
const followersData = await response.json();

Request Body 스키마

Prop

Type

응답

성공 응답 (200 OK)

{
  "followers": [
    {
      "username": "follower_001",
      "profileImage": "https://..."
    }
  ],
  "totalCount": 100
}

API 테스트

On this page