メインコンテンツへスキップ

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
現在の状態: pendingprocessingcompletedfailed
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
}