Main APIAI API
GET /ai/crawl/reference
레퍼런스 크롤링
레퍼런스 크롤링
레퍼런스 URL의 콘텐츠를 크롤링합니다.
| 항목 | 값 |
|---|---|
| 메서드 | GET |
| 경로 | /ai/crawl/reference |
| 인증 | 불필요 |
요청
GET /ai/crawl/reference?url=https://example.com/post/123 HTTP/1.1
Host: api.glowb.comcurl "https://api.glowb.com/ai/crawl/reference?url=https://example.com/post/123"const response = await fetch(`/ai/crawl/reference?url=${encodeURIComponent(referenceUrl)}`);
const referenceData = await response.json();Query Parameters
Prop
Type
응답
성공 응답 (200 OK)
{
"url": "https://example.com/post/123",
"title": "포스트 제목",
"thumbnail": "https://...",
"description": "포스트 설명"
}