메인 콘텐츠로 건너뛰기

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 /generate/

생성 작업의 현재 상태를 반환합니다. 진행 중인 작업 모니터링이나 완료 후 세부 확인에 사용합니다.

경로 매개변수

jobId
string
필수
조회할 생성 작업 ID입니다.

응답

id
string
생성 작업 고유 식별자입니다.
siteId
string
생성 중인 사이트 ID입니다.
status
string
현재 상태: pending, processing, completed, 또는 failed입니다.
progress
number
진행률(0–100)입니다.
url
string
파일을 생성한 대상 URL입니다.
options
object
사용된 생성 옵션입니다.
fileUrl
string
완료 시 생성 파일 URL입니다.
fullTextUrl
string
완료 시 전체 텍스트 버전 URL입니다.
error
string
실패 시 오류 메시지입니다.
createdAt
string
작업 생성 시각(ISO 8601)입니다.
completedAt
string
완료 시각(ISO 8601)입니다.
curl -X GET https://api.llmgenerator.com/api/v1/generate/550e8400-e29b-41d4-a716-446655440000 \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "id": "550e8400-e29b-41d4-a716-446655440000",
  "siteId": "site_abc123",
  "status": "processing",
  "progress": 45,
  "url": "https://example.com",
  "options": {
    "maxUrls": 50,
    "showFullText": true,
    "generationMethod": "enhanced"
  },
  "fileUrl": null,
  "fullTextUrl": null,
  "error": null,
  "createdAt": "2026-01-20T10:00:00.000Z",
  "completedAt": null
}