路線の駅一覧を表示する
| line_cd required | integer [ 10001 .. 99999 ] Example: 11302 路線コード |
{- "station_l": [
- {
- "station_cd": 1130201,
- "station_g_cd": 1130201,
- "station_name": "大崎",
- "lon": 139.728439,
- "lat": 35.619772
}, - {
- "station_cd": 1130202,
- "station_g_cd": 1130202,
- "station_name": "五反田",
- "lon": 139.723822,
- "lat": 35.625974
}
]
}駅の詳細を表示する
| station_cd required | integer [ 1000001 .. 9999999 ] Example: 1130224 駅コード |
{- "station": {
- "pref_cd": 13,
- "line_cd": 11302,
- "line_name": "JR山手線",
- "station_cd": 1130224,
- "station_g_cd": 1130101,
- "station_name": "東京",
- "lon": 139.766103,
- "lat": 35.681391
}
}駅グループ一覧を表示する
| station_cd required | integer [ 1000001 .. 9999999 ] Example: 1130224 駅コード |
{- "station_g": [
- {
- "pref_cd": 13,
- "line_cd": 11301,
- "line_name": "JR東海道本線(東京~熱海)",
- "station_cd": 1130101,
- "station_name": "東京"
}, - {
- "pref_cd": 13,
- "line_cd": 11302,
- "line_name": "JR山手線",
- "station_cd": 1130224,
- "station_name": "東京"
}
]
}路線の隣接駅一覧を表示する
| line_cd required | integer [ 10001 .. 99999 ] Example: 11302 路線コード |
{- "station_join": [
- {
- "station_cd1": 1130201,
- "station_cd2": 1130202,
- "station_name1": "大崎",
- "station_name2": "五反田",
- "lon1": 139.728439,
- "lat1": 35.619772,
- "lon2": 139.723822,
- "lat2": 35.625974
}, - {
- "station_cd1": 1130202,
- "station_cd2": 1130203,
- "station_name1": "五反田",
- "station_name2": "目黒",
- "lon1": 139.723822,
- "lat1": 35.625974,
- "lon2": 139.715775,
- "lat2": 35.633923
}
]
}