製造品出荷額 new
地域単位、年単位の製造品出荷額のデータを返します。
GET api/v1/municipality/manufacture/perYear
データ提供年
2008-2020年(毎年)
RESAS対象マップ
産業構造マップ > 製造業 > 製造品出荷額等
- ※ リンク先のグラフ表示の際のパラメータは、すべて初期設定の値を使用しています。
parameters
Name | Description | Required |
---|---|---|
prefCode | 都道府県コード | true |
cityCode |
市区町村コード 「すべての市区町村」を選択する場合は「-」を送ります。 |
true |
sicCode | 産業大分類コード | true |
simcCode | 産業中分類コード | true |
responses
Name | Description |
---|---|
/result/prefCode | 対象の県コード |
/result/prefName | 対象の県名 |
/result/cityCode | 対象の市区町村コード |
/result/cityName | 対象の市区町村名 |
/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/manufacture/perYear?cityCode=12217&simcCode=10&prefCode=12&sicCode=E
{
"message": null,
"result": {
"prefCode": 12,
"prefName": "千葉県",
"cityCode": "12217",
"cityName": "柏市",
"sicName": "製造業",
"sicCode": "E",
"simcName": "飲料・たばこ・飼料製造業",
"simcCode": "10",
"data": [{
"year": 2008,
"value": 32184.17
}, {
"year": 2009,
"value": 33346.06
}, {
"year": 2010,
"value": 33609.21
}, {
"year": 2015,
"value": 40596.87
}, {
"year": 2018,
"value": 17641.22
}, {
"year": 2019,
"value": 18550.77
}]
}
}