当日スナップショット
https://visionhub.jp/news/latest.json
object。キー:
generated_at — ISO 8601(JST オフセット付き)
news_date — 対象日 YYYY-MM-DD
highlight — category / stars / title / summary / sources(各 name / url)
sections — dict。キーは tech / tools / research / business 等。値は title / blurb / category / date / stars / source の配列
用途: 今日のハイライトとカテゴリ先頭を取る。
curl -s https://visionhub.jp/news/latest.json | jq '.highlight.title'
日別アーカイブ
https://visionhub.jp/news/YYYY-MM-DD.json
object。highlight と sections を持つ(latest.json と同系)。例: /news/2026-06-14.json は generated_at / source / source_url / highlight / sections。
用途: 特定日のセクションをまとめて読む。
curl -s https://visionhub.jp/news/2026-06-14.json | jq '.highlight.title'
アーカイブ日付一覧
https://visionhub.jp/public-pages/news/archive_index.json
array。各要素:
date — YYYY-MM-DD
file — 日次ファイル名(例 2026-08-22.json。実体は /public-pages/news/ 配下)
count — その日の件数
用途: 存在する日付を列挙してから日次ファイルを取る。
curl -s https://visionhub.jp/public-pages/news/archive_index.json | jq '.[0]'
検索インデックス
https://visionhub.jp/public-pages/news/search_index.json
array。各要素:
date / title / category / source / url
用途: タイトル横断検索。UI は ニュースアーカイブ。
curl -s https://visionhub.jp/public-pages/news/search_index.json | jq '.[0].title'
デイリーレポート一覧
https://visionhub.jp/presentations/daily_reports/index.json
object。キー:
generated / source / count
reports — 各 {date, file}
用途: HTML レポートの日付とファイル名を辿る。
curl -s https://visionhub.jp/presentations/daily_reports/index.json | jq '.reports[0]'
サイトマップ
https://visionhub.jp/sitemap.xml
XML。公開 HTML の loc 一覧。
用途: ページ網羅の列挙。
curl -s https://visionhub.jp/sitemap.xml | head -n 20