← PropAnalyticsAPI v1 — 無料・認証不要

PropAnalytics API

再開発プロジェクトデータ・地価・不動産取引情報を JSON で取得できる公開 API です。 認証不要・CORS 対応・無料でご利用いただけます。

無料認証不要(基本)CORS対応キャッシュ1時間

API 料金プラン

Free

¥0

  • ✓ 全エンドポイント利用可能
  • ✓ 認証不要
  • ✓ CORS 対応
  • — 大量リクエストは制限あり

API Pro

¥2,000/月

  • ✓ 高頻度リクエスト対応
  • X-API-Key ヘッダー認証
  • ✓ レスポンスに tier: api_pro
  • ✓ 優先サポート
API キーを取得 →

API Pro の認証方法

curl -H "X-API-Key: pa_your_key" https://real-estate-tracker-web-zeta.vercel.app/api/v1/projects

Base URL

https://real-estate-tracker-web-zeta.vercel.app
GET/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
      }
    }, ...
  ]
}
GET/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
  }
}
GET/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 }, ...
  ]
}
GET/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
  }
}
GET/api/interest-rate

住宅ローン金利指標(財務省 JGB利回りデータ)

レスポンス

{
  "latest": { "year": 2025, "month": 4, "jgb10": 1.45, "mortgage": 2.65 },
  "annual": [
    { "year": 2010, "jgb10": 1.20, "mortgage": 2.40 }, ...
  ]
}
GET/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 }
    }, ...
  ]
}
GET/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 }
    }, ...
  ]
}
GET/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..."
}
GET/api/og

プロジェクト別 OGP 画像(1200×630 PNG)

パラメータ

idプロジェクトID(省略時はデフォルト)

レスポンス

image/png — 1200×630

データは国土交通省・総務省・OSM 等の公開情報を元にした推計値を含みます。 投資判断の根拠としないでください。