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

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/

1 つのサイトについて、状態・ファイル URL・直近の生成オプションなどの詳細を返します。

パスパラメーター

siteId
string
必須
取得するサイトの ID。

レスポンス

id
string
サイトの一意な識別子。
url
string
正規化されたサイトの URL。
userId
string
サイト所有者のユーザー ID。
status
string
現在の状態: pendingprocessingcompletedfailed
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"
}