年間商品販売額 new
地域単位、年単位の年間商品販売額のデータを返します。
GET api/v1/municipality/sales/perYear
データ提供年
1994年,1997年,1999年,2002年,2004年,2007年,2012年,2014年,2016年,2021年
RESAS対象マップ
産業構造マップ > 小売・卸売業(消費) > 年間商品販売額
- ※ リンク先のグラフ表示の際のパラメータは、すべて初期設定の値を使用しています。
parameters
Name | Description | Required |
---|---|---|
prefCode | 都道府県コード | true |
cityCode |
市区町村コード 「すべての市区町村」を選択する場合は「-」を送ります。 |
true |
sicCode | 産業大分類コード | true |
simcCode | 産業中分類コード | true |
dispType |
表示内容 1:販売額で表示します。 2:増減率で表示します。 |
true |
responses
Name | Description |
---|---|
/result/prefName | 対象の県名 |
/result/prefCode | 対象の県コード |
/result/cityName | 対象の市区町村名 |
/result/cityCode | 対象の市区町村コード |
/result/sicCode | 産業大分類コード、取得できない場合は空文字 |
/result/sicName | 産業大分類名、取得できない場合は空文字 |
/result/simcCode | 産業中分類コード、取得できない場合は空文字 |
/result/simcName | 産業中分類名、取得できない場合は空文字 |
/result/data/year | 年 |
/result/data/value | 年間商品販売額(百万円) |
sample
GET https://opendata.resas-portal.go.jp/api/v1/municipality/sales/perYear?cityCode=-&dispType=1&simcCode=-&prefCode=13&sicCode=-
{
"message": null,
"result": {
"prefCode": 13,
"prefName": "東京都",
"cityCode": "",
"cityName": "",
"sicName": "",
"sicCode": "",
"simcName": "",
"simcCode": "",
"data": [{
"year": 1994,
"value": 195342684
}, {
"year": 1997,
"value": 166562237
}, {
"year": 1999,
"value": 203119015
}, {
"year": 2002,
"value": 176704287
}, {
"year": 2004,
"value": 176898500
}, {
"year": 2007,
"value": 182211327
}, {
"year": 2012,
"value": 148346542
}, {
"year": 2014,
"value": 167859560
}, {
"year": 2016,
"value": 186002700
}, {
"year": 2021,
"value": 176190281
}]
}
}