Glowb Dev Docs
Main APIAI API

GET /ai/crawl

SNS 크롤링 요청

SNS 크롤링 요청

SNS 계정 정보를 크롤링합니다.

항목
메서드GET
경로/ai/crawl
인증불필요

요청

GET /ai/crawl?snsList=https://instagram.com/example&snsList=https://youtube.com/channel/example HTTP/1.1
Host: api.glowb.com
curl "https://api.glowb.com/ai/crawl?snsList=https://instagram.com/example&snsList=https://youtube.com/channel/example"
const snsUrls = [
  'https://instagram.com/example',
  'https://youtube.com/channel/example'
];
const params = new URLSearchParams();
snsUrls.forEach(url => params.append('snsList', url));

const response = await fetch(`/ai/crawl?${params}`);
const snsData = await response.json();

Query Parameters

Prop

Type

응답

성공 응답 (200 OK)

[
  {
    "snsUrl": "https://instagram.com/example",
    "platform": "instagram",
    "followerCount": 50000,
    "postCount": 300,
    "profileImage": "https://..."
  }
]

Response 스키마

Prop

Type

API 테스트

On this page