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 とそのメタデータを一覧します。
パスパラメーター
クエリパラメーター
1 ページあたりの URL 件数(最大 100)。
状態で絞り込み: 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
}