메인 콘텐츠로 건너뛰기

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/

단일 사이트의 상태, 파일 URL, 마지막 생성 옵션 등 상세 정보를 반환합니다.

경로 매개변수

siteId
string
필수
조회할 사이트 ID입니다.

응답

id
string
사이트 고유 식별자입니다.
url
string
정규화된 사이트 URL입니다.
userId
string
사이트 소유 사용자 ID입니다.
status
string
현재 상태: pending, processing, completed, 또는 failed입니다.
fileUrl
string
생성된 llms.txt 접근 URL입니다.
fullTextUrl
string
전체 텍스트 버전 URL입니다(있는 경우).
lastGenerationOptions
object
마지막 생성에 사용된 옵션입니다.
createdAt
string
생성 시각(ISO 8601)입니다.
updatedAt
string
마지막 갱신 시각(ISO 8601)입니다.
curl -X GET https://api.llmgenerator.com/api/v1/sites/550e8400-e29b-41d4-a716-446655440000 \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "id": "550e8400-e29b-41d4-a716-446655440000",
  "url": "https://example.com",
  "userId": "user_abc123",
  "status": "completed",
  "fileUrl": "https://api.llmgenerator.com/api/v1/file/550e8400-e29b-41d4-a716-446655440000",
  "fullTextUrl": "https://api.llmgenerator.com/api/v1/file/550e8400-e29b-41d4-a716-446655440000?full=true",
  "lastGenerationOptions": {
    "maxUrls": 50,
    "showFullText": true,
    "generationMethod": "enhanced"
  },
  "createdAt": "2026-01-15T10:00:00.000Z",
  "updatedAt": "2026-01-20T14:30:00.000Z"
}