GET/api/v1/facilitiesJSON
公開施設一覧
公開済み施設を都道府県コードと状態で絞り込み、名称・所在地・状態・確度・電力容量等を返します。
パラメータ
| pref | query | JIS都道府県コード2桁(例: 12=千葉県) |
| status | query | 施設状態。許可値以外は400。 |
リクエスト例
curl -sS "https://japandatacenter.org/api/v1/facilities?pref=12&status=operational"
レスポンス例
{
"count": 1,
"items": [
{
"slug": "colt-inzai-1",
"canonical_name": "Colt印西データセンター1",
"prefecture": "千葉県",
"pref_code": "12",
"municipality": "印西市",
"status": "operational",
"status_as_of": null,
"status_as_of_precision": "unknown",
"coordinate_precision": "municipality",
"evidence_level": "E3",
"power_capacity_mw": 8,
"power_capacity_type": "it_load",
"detail_url": "/facilities/colt-inzai-1"
}
]
}
400: statusが許可値ではありません。 {"error":"invalid status"}
GET/api/v1/facilities/{slug}JSON
施設詳細
施設本体、事業者、状態イベント、施設・イベントの出典、周辺電源コンテキストを返します。
リクエスト例
curl -sS "https://japandatacenter.org/api/v1/facilities/colt-inzai-1"
レスポンス例
{
"facility": {
"id": "78b7f12b8c38dd9e1fcb752b3486159a",
"slug": "colt-inzai-1",
"canonical_name": "Colt印西データセンター1",
"prefecture": "千葉県",
"municipality": "印西市",
"status": "operational",
"coordinate_precision": "municipality",
"evidence_level": "E3",
"power_capacity_mw": 8,
"power_capacity_type": "it_load",
"updated_at": "2026-07-15 17:44:34"
},
"operators": [],
"events": [
{
"id": "178a32a9675f42b3a0c0df2e426673fe",
"facility_id": "78b7f12b8c38dd9e1fcb752b3486159a",
"event_date": null,
"event_date_precision": "unknown",
"event_type": "operation",
"status_from": "unknown",
"status_to": "operational",
"title": "Colt印西データセンター1 稼働中",
"summary": "公式サイトに稼働開始日の明記なし。",
"created_at": "2026-07-15 17:43:45",
"sources": []
}
],
"sources": [
{
"id": "2e256605ca1f05bddbf66976b8616e0d",
"canonical_url": "https://www.coltdatacentres.net/ja-JP/our-locations/data-centre-locations-asia/inzai",
"original_url": "https://www.coltdatacentres.net/ja-JP/our-locations/data-centre-locations-asia/inzai",
"publisher": "Colt DCS",
"title": "Colt 印西データセンター1",
"published_date": null,
"retrieved_at": "2026-07-15",
"source_type": "official",
"notes": null,
"claim": "existence",
"support": "supports"
}
],
"power_context": {
"facility_id": "78b7f12b8c38dd9e1fcb752b3486159a",
"nearby_power_mw_30km": 3929.8,
"nearby_plant_count_30km": 5,
"nearest_large_plant_name": "千葉火力発電所",
"nearest_large_plant_type": "火力",
"nearest_large_plant_mw": 1440,
"nearest_large_plant_distance_km": 30,
"data_source_version": "P03-13(2013年度版)",
"computed_at": "2026-07-16 00:36:16"
}
}
可読性のため入れ子配列とnullable項目を省略した抜粋例です。項目定義が完全な契約です。
- notes_internal は返しません。
- 非公開または存在しないslugは404です。
404: 公開施設が見つかりません。 {"error":"not found"}
GET/api/v1/facilities/geojsonGeoJSON
公開施設GeoJSON
座標があり coordinate_precision が unknown ではない公開施設をGeoJSON FeatureCollectionで返します。
リクエスト例
curl -sS "https://japandatacenter.org/api/v1/facilities/geojson"
レスポンス例
{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
140.14583,
35.83222
]
},
"properties": {
"slug": "colt-inzai-1",
"name": "Colt印西データセンター1",
"status": "operational",
"status_as_of": null,
"status_as_of_precision": "unknown",
"coordinate_precision": "municipality",
"evidence_level": "E3",
"prefecture": "千葉県",
"municipality": "印西市",
"detail_url": "/facilities/colt-inzai-1"
}
}
]
}
- Content-Typeはapplication/geo+json; charset=utf-8です。
- 互換別名 /api/v1/facilities.geojson も同じレスポンスを返します。
- 座標順は [longitude, latitude] です。coordinate_precision=municipality は施設の正確な位置ではありません。
GET/api/v1/newsJSON
関連ニュース
公開施設・イベント・地域の動きに実際に紐づいた検証済み出典を新しい順に返します。
リクエスト例
curl -sS "https://japandatacenter.org/api/v1/news"
レスポンス例
{
"count": 1,
"items": [
{
"id": "cd30983919300329e27804218d6866bd",
"canonical_url": "https://news.yahoo.co.jp/articles/e63981bc8769dd71ffe761ff37b5e5ceaaefd831",
"publisher": "TOKYO MX",
"title": "日野市のデータセンター計画、高さ・面積縮小へ 排熱の影響は「解析中」として示さず",
"published_date": "2026-07-13",
"retrieved_at": "2026-07-15",
"source_type": "media",
"context_label": "日野DC計画(三井不動産・日野自動車工場跡地)",
"context_url": "/facilities/mitsuifudosan-hino-dc",
"link_updated_at": "2026-07-15 17:32:23"
}
]
}