Apple Health ワークアウトのサンプルJSONExport

Apple Health のランニングワークアウトからの実際のロスレス JSON エクスポート — バージョン管理されたスキーマでのワークアウトペイロード、ルート、サンプル、サマリー。ダウンロードするか、以下で構造を確認できます。

sample-run.json
{
  "schemaVersion": 1,
  "exportedAt": "2026-04-05T08:00:00Z",
  "workout": {
    "uuid": "11111111-2222-3333-4444-555555555555",
    "activityType": "Running",
    "activityTypeRaw": 37,
    "startDate": "2026-04-05T08:00:00Z",
    "endDate": "2026-04-05T08:12:00Z",
    "duration": 720,
    "totalDistance": {
      "value": 1164.75,
      "unit": "m"
    },
    "totalEnergyBurned": {
      "value": 168,
      "unit": "kcal"
    },
    "totalSwimmingStrokeCount": null,
    "totalFlightsClimbed": null,
    "source": {
      "name": "Apple Watch",
      "bundleIdentifier": "com.apple.health",
      "deviceName": "Apple Watch",
      "deviceManufacturer": "Apple",
      "deviceModel": "Watch",
      "deviceHardwareVersion": null,
      "deviceSoftwareVersion": null
    },
    "metadata": null,
…  (283 more lines)

この JSON ファイルの中身

次を備えた自己記述型のエンベロープ: schemaVersion: 1。トップレベルのキーはworkout, route, samples、そしてsummary。Python、ノートブック、LLM への入力に最適です。

自分のワークアウトをエクスポート

これはサンプルのランニングです。Workout Exporter をインストールすれば、実際の Apple Health と Apple Watch のワークアウトを同じ方法でエクスポートできます。

App Storeでダウンロード