一人当たり賃金 new
地域単位、年単位の一人当たり賃金のデータを返します。
GET api/v1/municipality/wages/perYear
データ提供年
2010-2022年(毎年)
RESAS対象マップ
雇用/医療・福祉マップ > 一人当たり賃金
- ※ リンク先のグラフ表示の際のパラメータは、すべて初期設定の値を使用しています。
parameters
Name | Description | Required |
---|---|---|
prefCode | 都道府県コード | true |
sicCode | 産業大分類コード | true |
simcCode | 産業中分類コード | true |
wagesAge |
年齢 1:総数 2:~ 19歳 3:20~24歳 4:25~29歳 5:30~34歳 6:35~39歳 7:40~44歳 8:45~49歳 9:50~54歳 10:55~59歳 11:60~64歳 12:65~69歳 13:70歳~ |
true |
responses
Name | Description |
---|---|
/result/prefCode | 対象の県コード |
/result/prefName | 対象の県名 |
/result/sicName | 産業大分類名、取得できない場合は空文字 |
/result/sicCode | 産業大分類コード、取得できない場合は空文字 |
/result/simcName | 産業中分類名、取得できない場合は空文字 |
/result/simcCode | 産業中分類コード、取得できない場合は空文字 |
/result/data/year | 年度 |
/result/data/value | 一人当たり賃金(万円) |
sample
GET https://opendata.resas-portal.go.jp/api/v1/municipality/wages/perYear?prefCode=11&simcCode=-&wagesAge=10&sicCode=-
{
"message": null,
"result": {
"prefCode": 11,
"prefName": "埼玉県",
"sicName": "",
"sicCode": "",
"simcName": "",
"simcCode": "",
"data": [{
"year": 2010,
"value": 493.43
}, {
"year": 2011,
"value": 517.07
}, {
"year": 2012,
"value": 494.42
}, {
"year": 2013,
"value": 505.03
}, {
"year": 2014,
"value": 532.87
}, {
"year": 2015,
"value": 545.98
}, {
"year": 2016,
"value": 524.2
}, {
"year": 2017,
"value": 529.74
}, {
"year": 2018,
"value": 522.77
}, {
"year": 2019,
"value": 524.99
}, {
"year": 2020,
"value": 520.03
}, {
"year": 2021,
"value": 518.9
}, {
"year": 2022,
"value": 518.57
}]
}
}