Documentation Index
Fetch the complete documentation index at: https://docs.llmgenerator.com/llms.txt
Use this file to discover all available pages before exploring further.
GET /sites//urls
특정 사이트 생성 시 처리된 URL 목록과 메타데이터를 반환합니다.
경로 매개변수
쿼리 매개변수
상태 필터: pending, scraped, 또는 failed입니다.
매핑된 URL 객체 배열입니다.
페이지 설명입니다(Enhanced 방식이면 AI로 보강됨).
처리 상태: pending, scraped, 또는 failed입니다.
마지막 수정일입니다(사이트맵에서 제공된 경우).
curl -X GET "https://api.llmgenerator.com/api/v1/sites/550e8400-e29b-41d4-a716-446655440000/urls?limit=20" \
-H "Authorization: Bearer YOUR_API_KEY"
{
"urls": [
{
"id": "url_abc123",
"siteId": "550e8400-e29b-41d4-a716-446655440000",
"url": "https://example.com/",
"title": "Example Domain - Home",
"description": "Welcome to Example Domain, your comprehensive resource for...",
"status": "scraped",
"lastModified": "2026-01-15T00:00:00.000Z"
},
{
"id": "url_def456",
"siteId": "550e8400-e29b-41d4-a716-446655440000",
"url": "https://example.com/about",
"title": "About Us",
"description": "Learn about our mission and team.",
"status": "scraped",
"lastModified": null
}
],
"total": 47,
"page": 1,
"totalPages": 3
}