0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

日本の都道府県 API

Last updated at Posted at 2021-01-16

日本に関するデータを取得するためのAPIを作成しました
私は日本の文化と人々が大好きです!
https://japan-api.github.io/docs/

仕組み

  • Python & Flask 上にてビルド
  • Heroku にてホスティング
  • ほとんどのデータはウィキペディアから取得されます

URL

東京

{
  "area": "2,194.07 km2",
  "area_code": "03x042",
  "area_mi": "847.14 sq mi",
  "area_rank": 45,
  "capital": "Shinjuku",
  "capital_kanji": "新宿区",
  "climate": "Humid subtropical",
  "density": "6,349/km2",
  "density_mi": "16,440/sq mi",
  "economy": [
    "Finance",
    "Light industry"
  ],
  "governor": "Yuriko Koike",
  "island": "Honshu",
  "iso_code": 13,
  "local_dishes": [
    "Monja Yaki",
    "Fukagawa Don",
    "Kusaya"
  ],
  "name": "Tōkyō",
  "name_kanji": "東京都",
  "population": "13,929,280",
  "population_rank": 1,
  "region": "Kantō",
  "symbols": [
    "Bird: Black-headed gull",
    "Flower: Yoshino cherry",
    "Tree: Ginkgo"
  ]
}

日本

{
  "area": "377,975 km2",
  "area_mi": "145,937 sq mi",
  "area_rank": "61st",
  "calling_code": "+81",
  "capital": "Tōkyō",
  "capital_kanji": "東京都",
  "climate": "Predominantly temperate",
  "currency": "Japanese yen (¥) (JPY)",
  "density": "334/km2",
  "density_mi": "865.1/sq mi",
  "density_rank": "24th",
  "driving_side": "left",
  "economy": [
    "Industry",
    "Agriculture",
    "Fishery",
    "Services",
    "Tourism",
    "Science and Technology"
  ],
  "emperor": "Naruhito",
  "gdp_nominal": "$4.911 trillion, By head: $39,048",
  "gdp_ppp": "$5.236 trillion, By head: $41,634",
  "gini": "33.9 - medium",
  "hdi": "0.919 - very high",
  "islands_number": "6,852",
  "iso_code": "JP",
  "local_dishes": [
    "Sushi",
    "Sashimi",
    "Ramen",
    "Onogiri",
    "Nabe",
    "Miso",
    "Tempura",
    "Soba",
    "Yakitori",
    "Kaiseki",
    "Udon",
    "Sukiyaki",
    "Tonkatsu",
    "Donburi",
    "Curry"
  ],
  "name": "Nippon",
  "name_kanji": "日本国",
  "national_language": "Japanese",
  "population": "125,710,000",
  "population_rank": "11th",
  "prime_minister": "Yoshihide Suga",
  "time_zone": "UTC+09:00 (JST)"
}

その他

https://japan-api.herokuapp.com/api/v1/all - 日本を含むすべての都道府県
http://japan-api.herokuapp.com/api/v1/population_rank/int:population_rank - 人口ランクで探す(全都道府県中)
https://japan-api.herokuapp.com/api/v1/area_rank/int:area_rank - エリアランクで探す(全都道府県中)
http://japan-api.herokuapp.com/api/v1/iso/int:prefecture_iso - ISOコードで検索

ライセンス

MITライセンス

リンク

GitHub
https://github.com/japan-api
批評してください

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?