一人当たり地方税 new
地域単位、年単位の一人当たり地方税のデータを返します。
GET api/v1/municipality/taxes/perYear
データ提供年
2008-2021年(毎年)
RESAS対象マップ
地方財政マップ > 一人当たり地方税
- ※ リンク先のグラフ表示の際のパラメータは、すべて初期設定の値を使用しています。
parameters
Name | Description | Required |
---|---|---|
prefCode | 都道府県コード | true |
cityCode |
市区町村コード 「すべての市区町村」を選択する場合は「-」を送ります。 |
true |
responses
Name | Description |
---|---|
/result/prefName | 対象の県名 |
/result/prefCode | 対象の県コード |
/result/cityName | 対象の市区町村名 |
/result/cityCode | 対象の市区町村コード |
/result/data/year | 年 |
/result/data/value | 一人あたり地方税(千円) |
sample
GET https://opendata.resas-portal.go.jp/api/v1/municipality/taxes/perYear?cityCode=11362&prefCode=11
{
"message": null,
"result": {
"prefCode": 11,
"prefName": "埼玉県",
"cityCode": "11362",
"cityName": "皆野町",
"data": [{
"year": 2008,
"value": 108
}, {
"year": 2009,
"value": 102
}, {
"year": 2010,
"value": 119
}, {
"year": 2011,
"value": 102
}, {
"year": 2012,
"value": 101
}, {
"year": 2013,
"value": 103
}, {
"year": 2014,
"value": 107
}, {
"year": 2015,
"value": 105
}, {
"year": 2016,
"value": 106
}, {
"year": 2017,
"value": 108
}, {
"year": 2018,
"value": 110
}, {
"year": 2019,
"value": 111
}, {
"year": 2020,
"value": 111
}, {
"year": 2021,
"value": 113
}]
}
}