再開発プロジェクトデータ・地価・不動産取引情報を JSON で取得できる公開 API です。 認証不要・CORS 対応・無料でご利用いただけます。
Free
¥0
API Pro の認証方法
curl -H "X-API-Key: pa_your_key" https://real-estate-tracker-web-zeta.vercel.app/api/v1/projectsBase URL
https://real-estate-tracker-web-zeta.vercel.app/api/v1/projects全再開発プロジェクト一覧を返す
レスポンス
{
"count": 17,
"updated": "2025-05-05",
"data": [
{
"id": "torch-tower-2028",
"projectName": "TORCH TOWER(常盤橋プロジェクト)",
"status": "planned",
"scores": { "investment": 97 },
"prices": {
"estimatedPerM2": { "min": 260, "max": 420 },
"rentPerM2Month": 0.68
}
}, ...
]
}/api/v1/projects/:idプロジェクト詳細(地価履歴・人口統計含む)
パラメータ
| id | プロジェクトID(例: torch-tower-2028) |
レスポンス
{
"id": "torch-tower-2028",
"projectName": "TORCH TOWER(常盤橋プロジェクト)",
"landPriceHistory": [
{ "year": 2019, "residential": 121, "commercial": 470 }, ...
],
"areaDemographics": {
"avgIncomeManEn": 910,
"singlePct": 65.2,
"densityPerKm2": 4250
}
}/api/transactions不動産取引価格データ(webland API / Supabase)
パラメータ
| city | 市区町村コード(例: 13103) |
| fromYear | 開始年(例: 2015) |
| toYear | 終了年(例: 2024) |
レスポンス
{
"source": "webland",
"transactions": [
{ "lat": 35.658, "lng": 139.751, "pricePerM2": 185.2,
"totalPrice": 8500, "area": 46, "year": 2023 }, ...
]
}/api/amenity周辺施設スコア(OSM Overpass API)
パラメータ
| lat | 緯度 |
| lng | 経度 |
| radius | 半径 m(省略時: 1000) |
レスポンス
{
"score": 82,
"counts": {
"station": 2, "convenience": 4, "supermarket": 1,
"hospital": 2, "park": 1, "school": 3, "restaurant": 8
}
}/api/interest-rate住宅ローン金利指標(財務省 JGB利回りデータ)
レスポンス
{
"latest": { "year": 2025, "month": 4, "jgb10": 1.45, "mortgage": 2.65 },
"annual": [
{ "year": 2010, "jgb10": 1.20, "mortgage": 2.40 }, ...
]
}/api/v1/scores全プロジェクトの投資スコア・地価・表面利回りを返す軽量エンドポイント
パラメータ
| status | ステータス絞り込み(completed / under_construction / planned) |
| minScore | 最低投資スコア(例: 80) |
レスポンス
{
"count": 12,
"tier": "free",
"filters": { "status": "planned", "minScore": 80 },
"data": [
{
"id": "torch-tower-2028",
"investmentScore": 97,
"grossYieldPct": 3.12,
"pricePerM2": { "min": 260, "max": 420 }
}, ...
]
}/api/v1/areasエリア別 10 軸スコア・地価・人口統計を返す
レスポンス
{
"count": 36,
"data": [
{
"cityCode": "13103",
"wardNameJa": "港区",
"wardNameEn": "Minato-ku",
"scores": {
"redevelopment": 95, "transport": 90, "landPrice": 88,
"growth": 82, "safety": 80, "yield": 42
},
"landPrice": { "residential": 185, "commercial": 760, "year": 2024 },
"demographics": { "population": 262000, "avgIncomeManEn": 920 }
}, ...
]
}/api/v1/report/:idプロジェクト投資サマリー JSON(API Pro ティア向け詳細レポート)
パラメータ
| id | プロジェクトID(例: torch-tower-2028) |
レスポンス
{
"id": "torch-tower-2028",
"tier": "api_pro",
"summary": {
"investmentScore": 97,
"grossYieldPct": 3.12,
"priceRangeM2": { "min": 260, "max": 420 },
"statusEn": "Planned",
"categoryEn": "Large-Scale Mixed-Use",
"wardEn": "Chiyoda-ku"
},
"landPrice": { "residential": 121, "commercial": 470, "year": 2024 },
"demographics": { "avgIncomeManEn": 910, "singlePct": 65.2 },
"descriptionEn": "TORCH TOWER will become Japan's tallest..."
}/api/ogプロジェクト別 OGP 画像(1200×630 PNG)
パラメータ
| id | プロジェクトID(省略時はデフォルト) |
レスポンス
image/png — 1200×630
データは国土交通省・総務省・OSM 等の公開情報を元にした推計値を含みます。 投資判断の根拠としないでください。